{"id":836,"date":"2026-08-01T15:37:22","date_gmt":"2026-08-01T19:37:22","guid":{"rendered":"https:\/\/snehpatel.com\/?p=836"},"modified":"2026-08-01T15:37:25","modified_gmt":"2026-08-01T19:37:25","slug":"passive-dns-explained","status":"publish","type":"post","link":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/","title":{"rendered":"Passive DNS Explained: A Practical Guide for Threat Hunters"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">If you&#8217;ve ever needed to know where a domain pointed six months ago, or which other domains share infrastructure with an IP you&#8217;re investigating, you&#8217;ve hit the same wall every analyst eventually runs into: DNS only tells you what&#8217;s true right now. Ask a resolver about a domain today and you get today&#8217;s answer \u2014 yesterday&#8217;s is already gone, unless something was logging it as it happened.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s the gap passive DNS closes. I&#8217;ve written before about building an ELK stack for pfSense logs and getting Suricata alerts into Kibana \u2014 passive DNS is a natural next layer on top of that setup, and once it&#8217;s running, it&#8217;s hard to imagine going back to investigating without it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is Passive DNS?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Passive DNS (often shortened to pDNS) is the practice of logging DNS answers as they cross the network, then storing them in a searchable database so you can look up what a domain resolved to at any point in the past \u2014 not just right now.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The idea goes back to 2004, when security researcher Florian Weimer built the first passive DNS replication system and presented it at the FIRST conference in 2005. The pitch was simple: recursive resolvers already see every DNS answer that goes out. Log those answers instead of throwing them away, and you get a historical map of DNS activity almost for free.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s called &#8220;passive&#8221; because nothing is actively queried \u2014 no zone transfers, no scanning. You&#8217;re listening to traffic that&#8217;s already happening and keeping a record of it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Does Passive DNS Matter for Threat Hunting and Incident Response?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Passive DNS earns its keep the moment an investigation needs history instead of a snapshot. A few of the situations where it matters most:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Tracking C2 infrastructure<\/strong> \u2014 malware operators rotate domains constantly. Passive DNS lets you see every IP a suspicious domain has ever pointed to, and every other domain that has shared that IP \u2014 often how you find the rest of an actor&#8217;s infrastructure.<\/li>\n\n\n\n<li><strong>Investigating phishing<\/strong> \u2014 a phishing domain that&#8217;s already been taken down still has a resolution history. Passive DNS can confirm it existed, when it was active, and what it pointed to.<\/li>\n\n\n\n<li><strong>Spotting DGA activity<\/strong> \u2014 malware that generates pseudo-random domains to reach its command-and-control server produces a flood of NXDOMAIN (non-existent domain) responses. A spike in those is one of the more reliable early signs of a domain-generation-algorithm infection.<\/li>\n\n\n\n<li><strong>Attack surface discovery<\/strong> \u2014 passive DNS records can surface subdomains and hosts that active enumeration would miss entirely, including ones that were only briefly active.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How Does Passive DNS Actually Work?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">At a basic level, a passive DNS setup has three parts:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>A sensor<\/strong> \u2014 placed somewhere it can see DNS traffic (usually mirrored or tapped from a resolver or network segment), logging every DNS answer it observes.<\/li>\n\n\n\n<li><strong>A collector\/database<\/strong> \u2014 the logged answers get normalized and stored, keyed by domain name and record type, with a first-seen and last-seen timestamp for each.<\/li>\n\n\n\n<li><strong>A query interface<\/strong> \u2014 something that lets you ask &#8220;what has this domain resolved to?&#8221; or &#8220;what domains have resolved to this IP?&#8221; and get an answer from history, not just the present.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s the whole concept. The complexity is mostly in scale \u2014 the larger providers are logging billions of DNS answers a day.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Passive DNS vs. Active DNS: What&#8217;s the Difference?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Worth being precise about this, since the two get confused. Active DNS techniques query the DNS system directly, right now \u2014 zone walking, brute-force subdomain enumeration, scanning tools. Passive DNS never queries anything; it only observes and records answers that were already produced by real traffic.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That difference matters for two reasons: passive DNS doesn&#8217;t tip anyone off that you&#8217;re looking, since nothing is being actively queried, and it can show you infrastructure that no longer exists \u2014 something active techniques simply can&#8217;t do.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setting Up Your Own Passive DNS Collector<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to try this on your own network instead of relying only on third-party lookups, the tool most practitioners reach for is <a href=\"https:\/\/github.com\/gamelinux\/passivedns\">passivedns<\/a>, by Edward Bjarte Fjellsk\u00e5l (aka gamelinux). It&#8217;s a lightweight network sniffer, originally released back in 2013, purpose-built to log DNS server replies for exactly this use case. It&#8217;s old by software standards, but it&#8217;s still the reference tool people point to when they want to stand up their own passive DNS feed, and it still builds and runs fine on current Linux distros.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Install it (Debian\/Ubuntu):<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install git build-essential libldns-dev libpcap-dev automake autoconf\ngit clone https:\/\/github.com\/gamelinux\/passivedns.git\ncd passivedns\nautoreconf --install\n.\/configure\nmake\nsudo make install<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Run it against a live interface:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo passivedns -i eth0 -l \/var\/log\/passivedns.log<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">That alone gets you a running log of every DNS answer passivedns sees on that interface. A few options worth knowing before you go further:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>.\/configure --enable-json<\/code> turns on JSON logging instead of the default pipe-delimited format \u2014 worth doing if you&#8217;re planning to ship this into Logstash or Filebeat, since JSON drops into an ELK pipeline with a lot less parsing work than pfSense&#8217;s syslog output ever needed.<\/li>\n\n\n\n<li>Adding <code>-L \/var\/log\/passivedns-nx.log<\/code> alongside <code>-l<\/code> splits NXDOMAIN answers into their own file \u2014 the detail to watch if you&#8217;re hunting DGA activity rather than just building a lookup archive.<\/li>\n\n\n\n<li>The <code>tools\/pdns2db.pl<\/code> script that ships with the repo will load your log file straight into MySQL, if you&#8217;d rather query it with SQL than grep through flat files.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re already running Suricata and ELK from the setup in my earlier posts, this slots in as another data source feeding the same stack \u2014 same pattern as the pfSense logs, just a different sensor.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Passive DNS Services Worth Knowing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Running your own collector only shows you your own traffic. For domains you&#8217;ve never seen locally, you&#8217;ll want one of the larger third-party datasets:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/www.circl.lu\/services\/passive-dns\/\">CIRCL Passive DNS<\/a><\/strong> \u2014 access on request for security researchers and CERTs, run by Luxembourg&#8217;s CERT. A solid starting point if you&#8217;re not ready to pay for anything yet.<\/li>\n\n\n\n<li><strong>VirusTotal<\/strong> \u2014 passive DNS lookups built in as a secondary feature alongside its malware analysis tools, free to use at a basic level.<\/li>\n\n\n\n<li><strong>SecurityTrails<\/strong> \u2014 one of the most commonly integrated passive DNS sources in open-source recon tooling, with a usable API.<\/li>\n\n\n\n<li><strong>Farsight DNSDB<\/strong> \u2014 now part of DomainTools following Farsight&#8217;s 2021 acquisition, and still the dataset with the longest continuous sensor history; the one enterprise threat intel teams tend to pay for.<\/li>\n\n\n\n<li><strong>Microsoft Defender Threat Intelligence<\/strong> \u2014 the successor to RiskIQ&#8217;s PassiveTotal after Microsoft&#8217;s acquisition of RiskIQ; if your org is already in the Microsoft security ecosystem, this is where that data lives now.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">None of these replace running your own sensor. They&#8217;re complementary \u2014 your own passive DNS setup tells you about your traffic, these tell you about everyone else&#8217;s.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common Questions<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Is passive DNS logging a privacy concern?<\/strong> Passive DNS systems are generally designed to minimize privacy exposure \u2014 they log server answers rather than communication content, and the common output formats used across the industry were built with that in mind. That said, DNS logging can still be subject to local privacy regulations, so it&#8217;s worth checking your own jurisdiction and org policy before standing up a collector that captures more than your own network&#8217;s traffic.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Do I need special hardware to run my own collector?<\/strong> No. passivedns runs comfortably on a spare VM or alongside an existing Security Onion or ELK box, as long as it can see a mirrored copy of DNS traffic \u2014 a SPAN port or tap is enough.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>How is this different from just checking my firewall&#8217;s DNS logs?<\/strong> Firewall or resolver logs usually cover only your own network and often get rotated out quickly. A dedicated passive DNS setup is built to retain history indefinitely and is indexed specifically for &#8220;what did this resolve to, and when&#8221; \u2014 which a firewall log was never designed for.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Passive DNS is one of those things that feels optional until the first time you actually need it mid-investigation, and then it&#8217;s suddenly indispensable. Once a domain&#8217;s resolution history is in front of you, half the &#8220;who else is behind this&#8221; questions in an investigation start answering themselves. Start small \u2014 a single passivedns sensor and a log file is enough to get a feel for it before committing to a full pipeline.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">References<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Florian Weimer, &#8220;Passive DNS Replication,&#8221; FIRST 2005 \u2014 <a href=\"https:\/\/www.enyo.de\/fw\/software\/dnslogger\/first2005-paper.pdf\">https:\/\/www.enyo.de\/fw\/software\/dnslogger\/first2005-paper.pdf<\/a><\/li>\n\n\n\n<li>passivedns (gamelinux) on GitHub \u2014 <a href=\"https:\/\/github.com\/gamelinux\/passivedns\">https:\/\/github.com\/gamelinux\/passivedns<\/a><\/li>\n\n\n\n<li>CIRCL Passive DNS \u2014 <a href=\"https:\/\/www.circl.lu\/services\/passive-dns\/\">https:\/\/www.circl.lu\/services\/passive-dns\/<\/a><\/li>\n\n\n\n<li>Xavier Mertens, &#8220;Running your Own Passive DNS Service,&#8221; SANS ISC \u2014 <a href=\"https:\/\/isc.sans.edu\/diary\/24784\">https:\/\/isc.sans.edu\/diary\/24784<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is passive DNS and why does it matter for threat hunting? A practical breakdown plus how to set up your own passivedns collector.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[115,59,8,116],"tags":[117,106,49,118],"class_list":["post-836","post","type-post","status-publish","format-standard","hentry","category-dns","category-security","category-siem","category-threat-hunting","tag-dns","tag-security","tag-siem","tag-threat-hunting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Passive DNS Explained: A Practical Guide for Threat Hunters - Sneh Patel<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Passive DNS Explained: A Practical Guide for Threat Hunters - Sneh Patel\" \/>\n<meta property=\"og:description\" content=\"What is passive DNS and why does it matter for threat hunting? A practical breakdown plus how to set up your own passivedns collector.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/\" \/>\n<meta property=\"og:site_name\" content=\"Sneh Patel\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-01T19:37:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-01T19:37:25+00:00\" \/>\n<meta name=\"author\" content=\"Sneh Patel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sneh Patel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/\"},\"author\":{\"name\":\"Sneh Patel\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\"},\"headline\":\"Passive DNS Explained: A Practical Guide for Threat Hunters\",\"datePublished\":\"2026-08-01T19:37:22+00:00\",\"dateModified\":\"2026-08-01T19:37:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/\"},\"wordCount\":1423,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\"},\"keywords\":[\"DNS\",\"Security\",\"SIEM\",\"Threat Hunting\"],\"articleSection\":[\"DNS\",\"Security\",\"SIEM\",\"Threat Hunting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/\",\"url\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/\",\"name\":\"Passive DNS Explained: A Practical Guide for Threat Hunters - Sneh Patel\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#website\"},\"datePublished\":\"2026-08-01T19:37:22+00:00\",\"dateModified\":\"2026-08-01T19:37:25+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2026\\\/08\\\/01\\\/passive-dns-explained\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#website\",\"url\":\"https:\\\/\\\/snehpatel.com\\\/\",\"name\":\"Sneh Patel\",\"description\":\"Cyber Security Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/snehpatel.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\",\"name\":\"Sneh Patel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\",\"width\":672,\"height\":222,\"caption\":\"Sneh Patel\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\"},\"sameAs\":[\"http:\\\/\\\/snehpatel.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Passive DNS Explained: A Practical Guide for Threat Hunters - Sneh Patel","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/","og_locale":"en_US","og_type":"article","og_title":"Passive DNS Explained: A Practical Guide for Threat Hunters - Sneh Patel","og_description":"What is passive DNS and why does it matter for threat hunting? A practical breakdown plus how to set up your own passivedns collector.","og_url":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/","og_site_name":"Sneh Patel","article_published_time":"2026-08-01T19:37:22+00:00","article_modified_time":"2026-08-01T19:37:25+00:00","author":"Sneh Patel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sneh Patel","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/#article","isPartOf":{"@id":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/"},"author":{"name":"Sneh Patel","@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73"},"headline":"Passive DNS Explained: A Practical Guide for Threat Hunters","datePublished":"2026-08-01T19:37:22+00:00","dateModified":"2026-08-01T19:37:25+00:00","mainEntityOfPage":{"@id":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/"},"wordCount":1423,"commentCount":0,"publisher":{"@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73"},"keywords":["DNS","Security","SIEM","Threat Hunting"],"articleSection":["DNS","Security","SIEM","Threat Hunting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/","url":"https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/","name":"Passive DNS Explained: A Practical Guide for Threat Hunters - Sneh Patel","isPartOf":{"@id":"https:\/\/snehpatel.com\/#website"},"datePublished":"2026-08-01T19:37:22+00:00","dateModified":"2026-08-01T19:37:25+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/snehpatel.com\/index.php\/2026\/08\/01\/passive-dns-explained\/"]}]},{"@type":"WebSite","@id":"https:\/\/snehpatel.com\/#website","url":"https:\/\/snehpatel.com\/","name":"Sneh Patel","description":"Cyber Security Blog","publisher":{"@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/snehpatel.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73","name":"Sneh Patel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1","url":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1","contentUrl":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1","width":672,"height":222,"caption":"Sneh Patel"},"logo":{"@id":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1"},"sameAs":["http:\/\/snehpatel.com"]}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts\/836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/comments?post=836"}],"version-history":[{"count":1,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts\/836\/revisions"}],"predecessor-version":[{"id":837,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts\/836\/revisions\/837"}],"wp:attachment":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/media?parent=836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/categories?post=836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/tags?post=836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}