{"id":460,"date":"2008-04-05T03:32:16","date_gmt":"2008-04-05T01:32:16","guid":{"rendered":"http:\/\/www.corelan.be:8800\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/"},"modified":"2008-04-05T03:32:16","modified_gmt":"2008-04-05T01:32:16","slug":"monitor-file-age-with-operations-manager-2007-vbscript-monitor","status":"publish","type":"post","link":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/","title":{"rendered":"Monitor file age with Operations Manager 2007 (vbscript monitor)"},"content":{"rendered":"<div class=\"ExternalClass071DD4344F884F28B350197F1E59953C\">\n<p>In this post, I will explain one of the techniques to monitor the age of a given file, using vbscript and Operations Manager 2007 <\/p>\n<p>This is what the script looks like : <\/p>\n<div>\n<table style=\"border-collapse: collapse\" border=\"0\">\n<colgroup>\n<col style=\"width: 638px\" \/><\/colgroup>\n<tbody valign=\"top\">\n<tr>\n<td style=\"border-right: black 0.5pt solid; padding-right: 7px; border-top: black 0.5pt solid; padding-left: 7px; border-left: black 0.5pt solid; border-bottom: black 0.5pt solid\">\n<p><span style=\"font-family: courier new\"><font size=\"2\">Option Explicit                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">'                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">' Script that returns the difference in number of days between now() and                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">' the last modified timestamp of a file                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">' feed the full path to the file as the first parameter                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">' Written by Peter Van Eeckhoutte                    <br \/><\/font><\/span><font size=\"2\"><span style=\"font-family: courier new\">' Feb 2008                    <br \/><\/span><span style=\"font-family: courier new\">' <\/span><\/font><\/p>\n<p><span style=\"font-family: courier new\"><font size=\"2\">Dim oArgs                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Set oArgs = Wscript.Arguments                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Dim oAPI                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Set oAPI = CreateObject(&quot;MOM.ScriptAPI&quot;)                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">if oArgs.Count &lt; 1 Then                    <br \/>&#160;&#160;&#160; <\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">' If the script is called without the required argument,                    <br \/>&#160;&#160;&#160; <\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">' create an information event and then quit.                    <br \/>&#160;&#160;&#160; <\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Call oAPI.LogScriptEvent(WScript.ScriptName,101,0,WScript.ScriptName+&quot; script was called without any arguments and was not executed. &quot;)                    <br \/><\/font><\/span><font size=\"2\"><span style=\"font-family: courier new\">&#160;&#160;&#160; Wscript.Quit -1                    <br \/><\/span><span style=\"font-family: courier new\">End If <\/span><\/font><\/p>\n<p><span style=\"font-family: courier new\"><font size=\"2\">Dim objFile                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Dim ValueToReturn                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Dim oFso                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Dim oFile                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Dim oBag                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Dim filename                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Set oFso = CreateObject(&quot;Scripting.FileSystemObject&quot;)                    <\/p>\n<p><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">'replace single slashes with double slashes                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">filename = Replace(oArgs(0),&quot;\\&quot;,<\/font><a><font size=\"2\">\\\\<\/font><\/a><font size=\"2\">)                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">'see if file exists                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">if (oFso.FileExists(filename)) Then&#160; <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">&#160;&#160;&#160; set objFile = oFso.GetFile(filename)&#160; <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">&#160;&#160;&#160; ValueToReturn=DateDiff(&quot;d&quot;,objFile.DateLastModified,Now)                    <br \/><\/font><\/span><span style=\"font-family: courier new\"><font size=\"2\">Else&#160; <br \/><\/font><\/span><font size=\"2\"><span style=\"font-family: courier new\">&#160;&#160;&#160; ValueToReturn=9999                    <br \/><\/span><span style=\"font-family: courier new\">End If <\/span><\/font><\/p>\n<p><span style=\"font-family: courier new\"><font size=\"2\">Set oBag = oAPI.CreatePropertyBag()                    <br \/><\/font><\/span><font size=\"2\"><span style=\"font-family: courier new\">Call oBag.AddValue(&quot;DaysAgo&quot;,ValueToReturn)                    <br \/><\/span><span style=\"font-family: courier new\">Call oAPI.LogScriptEvent(WScript.ScriptName,101,0,ValueToReturn) <\/span><span style=\"font-family: courier new\">Call oAPI.Return(oBag)<\/span><\/font><\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table><\/div>\n<p>&#160;<\/p>\n<p>This is how it works <\/p>\n<p>Open the authoring pane in OpsMgr and go to monitors <\/p>\n<p>Find the Windows Computers (or any other scope that contains computer objects). Create a new unit monitor (Script based, two state monitor) and save the monitor in your custom management pack. Specify a good name, make sure to leave the monitor disabled for now (uncheck the &quot;Monitor is enabled&quot; checkbox at the bottom). We only want to run this script on one server, so we will create an override for this server lateron. <\/p>\n<p><em>Quick note before continuing : you'll have to create a monitor for each file that you want to watch. So you can put the name of the server and the name of the file in the monitor name field. <\/em><\/p>\n<p>Configure the schedule (e.g. once per day) <\/p>\n<p>Define the script filename (don't forget the .vbs extension) and set a timeout. This is a just a simple script, so 1 minute will be fine. <\/p>\n<p>Click &quot;Parameters&quot; and enter the absolute path to the file that you want to monitor. (between double quotes) <\/p>\n<p>Paste the entire script from the table above in the Script: field <\/p>\n<p><span style=\"text-decoration: underline\">Expressions :<\/span>       <br \/>Unhealthy :       <br \/>Parameter Name : Property[@Name='DaysAgo']       <br \/>Operator : is greater than       <br \/>Value : &lt;the number of days&gt; <\/p>\n<p>(Note : as you can see in the script, if the file is not found, the script will return 9999&#8230; it's up to you how you want to deal with that. You can write another monitor that checks for the presence of the file and look at the 9999 value&#8230; ) <\/p>\n<p>Healthy :      <br \/>Parameter Name : Property[@Name='DaysAgo']       <br \/>Operator : is less than or equal to       <br \/>Value : &lt;the number of days&gt; <\/p>\n<p>Finish the monitor by allowing the monitor to create an alert. In the alert description field, you can specify some text : <\/p>\n<p>The file is $Data\/Context\/Property[@Name='DaysAgo']$ days old, which is older than &#8230;. days <em>&lt;fill out your own limit&gt;<\/em> <\/p>\n<p>Save the monitor <\/p>\n<p>Edit the monitor again and create an override for the server that contains the file you want to look at. <\/p>\n<p>Enable the monitor for that server, and wait until it kicks it.<\/p>\n<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this post, I will explain one of the techniques to monitor the age of a given file, using vbscript and Operations Manager 2007 This is what the script looks like : Option Explicit ' ' Script that returns the difference in number of days between now() and ' the last modified timestamp of a &hellip; <a href=\"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> \"Monitor file age with Operations Manager 2007 (vbscript monitor)\"<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[634,26],"tags":[3737,633],"class_list":["post-460","post","type-post","status-publish","format-standard","hentry","category-operations-manager","category-windows-server","tag-vbscript","tag-opsmgr"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Monitor file age with Operations Manager 2007 (vbscript monitor) - Corelan | Exploit Development &amp; Vulnerability Research<\/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:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monitor file age with Operations Manager 2007 (vbscript monitor) - Corelan | Exploit Development &amp; Vulnerability Research\" \/>\n<meta property=\"og:description\" content=\"In this post, I will explain one of the techniques to monitor the age of a given file, using vbscript and Operations Manager 2007 This is what the script looks like : Option Explicit &#039; &#039; Script that returns the difference in number of days between now() and &#039; the last modified timestamp of a &hellip; Continue reading &quot;Monitor file age with Operations Manager 2007 (vbscript monitor)&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/\" \/>\n<meta property=\"og:site_name\" content=\"Corelan | Exploit Development &amp; Vulnerability Research\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/corelanconsulting\" \/>\n<meta property=\"article:published_time\" content=\"2008-04-05T01:32:16+00:00\" \/>\n<meta name=\"author\" content=\"corelanc0d3r\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@corelanc0d3r\" \/>\n<meta name=\"twitter:site\" content=\"@corelanc0d3r\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/\"},\"author\":{\"name\":\"corelanc0d3r\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/person\\\/3be5542b9b0a0787893db83a5ad68e8f\"},\"headline\":\"Monitor file age with Operations Manager 2007 (vbscript monitor)\",\"datePublished\":\"2008-04-05T01:32:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/\"},\"wordCount\":578,\"publisher\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#organization\"},\"keywords\":[\"vbscript\",\"opsmgr\"],\"articleSection\":[\"OpsMgr\",\"Windows Server\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/\",\"name\":\"Monitor file age with Operations Manager 2007 (vbscript monitor) - Corelan | Exploit Development &amp; Vulnerability Research\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#website\"},\"datePublished\":\"2008-04-05T01:32:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2008\\\/04\\\/05\\\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.corelan.be\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Monitor file age with Operations Manager 2007 (vbscript monitor)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#website\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/\",\"name\":\"Corelan CyberSecurity Research\",\"description\":\"Corelan publishes in-depth tutorials on exploit development, Windows exploitation, vulnerability research, heap internals, reverse engineering and security tooling used by professionals worldwide.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.corelan.be\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#organization\",\"name\":\"Corelan CyberSecurity Research\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/corelanlogo2_small-20.png\",\"contentUrl\":\"https:\\\/\\\/www.corelan.be\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/corelanlogo2_small-20.png\",\"width\":200,\"height\":200,\"caption\":\"Corelan CyberSecurity Research\"},\"image\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/corelanconsulting\",\"https:\\\/\\\/x.com\\\/corelanc0d3r\",\"https:\\\/\\\/x.com\\\/corelanconsulting\",\"https:\\\/\\\/instagram.com\\\/corelanconsult\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/person\\\/3be5542b9b0a0787893db83a5ad68e8f\",\"name\":\"corelanc0d3r\",\"pronouns\":\"he\\\/him\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x\",\"caption\":\"corelanc0d3r\"},\"description\":\"Peter Van Eeckhoutte is the founder of Corelan and a globally recognized expert in exploit development and vulnerability research. With over two decades in IT security, he built Corelan into a respected platform for deep technical research, hands-on training, and knowledge sharing. Known for his influential exploit development tutorials, tools, and real-world training, Peter combines a strong research mindset with a passion for education\u2014helping security professionals understand not just how exploits work, but why.\",\"sameAs\":[\"https:\\\/\\\/www.corelan-training.com\",\"https:\\\/\\\/instagram.com\\\/corelanc0d3r\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/petervaneeckhoutte\\\/\",\"https:\\\/\\\/x.com\\\/corelanc0d3r\"],\"url\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/author\\\/admin0\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Monitor file age with Operations Manager 2007 (vbscript monitor) - Corelan | Exploit Development &amp; Vulnerability Research","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:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/","og_locale":"en_US","og_type":"article","og_title":"Monitor file age with Operations Manager 2007 (vbscript monitor) - Corelan | Exploit Development &amp; Vulnerability Research","og_description":"In this post, I will explain one of the techniques to monitor the age of a given file, using vbscript and Operations Manager 2007 This is what the script looks like : Option Explicit ' ' Script that returns the difference in number of days between now() and ' the last modified timestamp of a &hellip; Continue reading \"Monitor file age with Operations Manager 2007 (vbscript monitor)\"","og_url":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/","og_site_name":"Corelan | Exploit Development &amp; Vulnerability Research","article_publisher":"https:\/\/www.facebook.com\/corelanconsulting","article_published_time":"2008-04-05T01:32:16+00:00","author":"corelanc0d3r","twitter_card":"summary_large_image","twitter_creator":"@corelanc0d3r","twitter_site":"@corelanc0d3r","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/#article","isPartOf":{"@id":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/"},"author":{"name":"corelanc0d3r","@id":"https:\/\/www.corelan.be\/#\/schema\/person\/3be5542b9b0a0787893db83a5ad68e8f"},"headline":"Monitor file age with Operations Manager 2007 (vbscript monitor)","datePublished":"2008-04-05T01:32:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/"},"wordCount":578,"publisher":{"@id":"https:\/\/www.corelan.be\/#organization"},"keywords":["vbscript","opsmgr"],"articleSection":["OpsMgr","Windows Server"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/","url":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/","name":"Monitor file age with Operations Manager 2007 (vbscript monitor) - Corelan | Exploit Development &amp; Vulnerability Research","isPartOf":{"@id":"https:\/\/www.corelan.be\/#website"},"datePublished":"2008-04-05T01:32:16+00:00","breadcrumb":{"@id":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.corelan.be\/index.php\/2008\/04\/05\/monitor-file-age-with-operations-manager-2007-vbscript-monitor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.corelan.be\/"},{"@type":"ListItem","position":2,"name":"Monitor file age with Operations Manager 2007 (vbscript monitor)"}]},{"@type":"WebSite","@id":"https:\/\/www.corelan.be\/#website","url":"https:\/\/www.corelan.be\/","name":"Corelan CyberSecurity Research","description":"Corelan publishes in-depth tutorials on exploit development, Windows exploitation, vulnerability research, heap internals, reverse engineering and security tooling used by professionals worldwide.","publisher":{"@id":"https:\/\/www.corelan.be\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.corelan.be\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.corelan.be\/#organization","name":"Corelan CyberSecurity Research","url":"https:\/\/www.corelan.be\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.corelan.be\/#\/schema\/logo\/image\/","url":"https:\/\/www.corelan.be\/wp-content\/uploads\/2026\/03\/corelanlogo2_small-20.png","contentUrl":"https:\/\/www.corelan.be\/wp-content\/uploads\/2026\/03\/corelanlogo2_small-20.png","width":200,"height":200,"caption":"Corelan CyberSecurity Research"},"image":{"@id":"https:\/\/www.corelan.be\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/corelanconsulting","https:\/\/x.com\/corelanc0d3r","https:\/\/x.com\/corelanconsulting","https:\/\/instagram.com\/corelanconsult"]},{"@type":"Person","@id":"https:\/\/www.corelan.be\/#\/schema\/person\/3be5542b9b0a0787893db83a5ad68e8f","name":"corelanc0d3r","pronouns":"he\/him","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x","url":"https:\/\/secure.gravatar.com\/avatar\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x","caption":"corelanc0d3r"},"description":"Peter Van Eeckhoutte is the founder of Corelan and a globally recognized expert in exploit development and vulnerability research. With over two decades in IT security, he built Corelan into a respected platform for deep technical research, hands-on training, and knowledge sharing. Known for his influential exploit development tutorials, tools, and real-world training, Peter combines a strong research mindset with a passion for education\u2014helping security professionals understand not just how exploits work, but why.","sameAs":["https:\/\/www.corelan-training.com","https:\/\/instagram.com\/corelanc0d3r","https:\/\/www.linkedin.com\/in\/petervaneeckhoutte\/","https:\/\/x.com\/corelanc0d3r"],"url":"https:\/\/www.corelan.be\/index.php\/author\/admin0\/"}]}},"views":5676,"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/posts\/460","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/comments?post=460"}],"version-history":[{"count":0,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/posts\/460\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/media?parent=460"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/categories?post=460"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/tags?post=460"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}