{"id":265,"date":"2023-08-22T22:51:10","date_gmt":"2023-08-22T22:51:10","guid":{"rendered":"https:\/\/www.anti-forensics.com\/blog\/?p=239"},"modified":"2024-04-15T05:05:16","modified_gmt":"2024-04-15T05:05:16","slug":"c-kill-process-ftk-imager","status":"publish","type":"post","link":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/","title":{"rendered":"C# &#8211; Kill Process (FTK Imager)"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>using System.Diagnostics;\nusing System.Runtime.InteropServices;\n\nnamespace KillProcess\n{\n    internal class Program\n    {\n        static void Main(string&#91;] args)\n        {\n            HideApplication();\n            KillProcess();\n        }\n\n        static void KillProcess()\n        {\n            while (true)\n            {\n                Process.GetProcesses().ToList().ForEach(process =&gt;\n                {\n                    if (process.ProcessName.Equals(\"FTK Imager\"))\n                    {\n                        process.Kill();\n                    }\n                });\n            }\n        }\n        static void HideApplication()\n        {\n            &#91;DllImport(\"user32.dll\")]\n            static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);\n            IntPtr handle = Process.GetCurrentProcess().MainWindowHandle;\n            ShowWindow(handle, 0);\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Functionality<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The code in <strong>C# kill process<\/strong> is designed to do the following:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Hide Itself:<\/strong>\n<ul class=\"wp-block-list\">\n<li>It hides its own console window to run invisibly in the background. This is achieved using the <code>ShowWindow<\/code> function from the Windows API (<code>user32.dll<\/code>).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Terminate a Specific Process:<\/strong>\n<ul class=\"wp-block-list\">\n<li>The code persistently searches for any running process named &#8220;FTK Imager&#8221; and forcefully terminates it using the <code>process.Kill()<\/code> method. Note that &#8220;FTK Imager&#8221; is a forensic imaging tool.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Breakdown of Code<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Namespaces:<\/strong>\n<ul class=\"wp-block-list\">\n<li><code>System.Diagnostics<\/code>: Provides tools to interact with processes on the system.<\/li>\n\n\n\n<li><code>System.Runtime.InteropServices<\/code>: Allows interaction with native Windows API functions.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong><code>Main<\/code> Method:<\/strong>\n<ul class=\"wp-block-list\">\n<li>The entry point of the application.<\/li>\n\n\n\n<li>Calls <code>HideApplication()<\/code> to hide the console window.<\/li>\n\n\n\n<li>Calls <code>KillProcess()<\/code> to start the process termination loop.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong><code>KillProcess<\/code> Method:<\/strong>\n<ul class=\"wp-block-list\">\n<li><code>while (true)<\/code>: Creates an infinite loop to repeatedly check for processes.<\/li>\n\n\n\n<li><code>Process.GetProcesses().ToList().ForEach(process =&gt; ...)<\/code>:\n<ul class=\"wp-block-list\">\n<li>Gets a list of all running processes.<\/li>\n\n\n\n<li>Iterates over each process in the list.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code>if (process.ProcessName.Equals(\"FTK Imager\")) { process.Kill(); }<\/code>:\n<ul class=\"wp-block-list\">\n<li>Checks if a process is named &#8220;FTK Imager.&#8221;<\/li>\n\n\n\n<li>If found, the process is immediately terminated.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong><code>HideApplication<\/code> Method:<\/strong>\n<ul class=\"wp-block-list\">\n<li><code>[DllImport(\"user32.dll\")] static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);<\/code>: Declares the external <code>ShowWindow<\/code> function from the Windows API.<\/li>\n\n\n\n<li><code>IntPtr handle = Process.GetCurrentProcess().MainWindowHandle;<\/code>: Retrieves a handle to the main window of the current application (the console window).<\/li>\n\n\n\n<li><code>ShowWindow(handle, 0);<\/code>: Calls the <code>ShowWindow<\/code> function, passing the window handle and the command <code>0<\/code> to hide the window.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Important Considerations and Concerns<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Purpose:<\/strong> The reason behind creating this code<strong> <\/strong><em>C# kill process<\/em> is unclear. While there might be legitimate use cases (e.g., preventing software conflicts for testing), the act of hiding and forcefully terminating a process could be used maliciously.<\/li>\n\n\n\n<li><strong>Security Implications:<\/strong> Unintentional or malicious use of this code could interfere with important forensic investigations if FTK Imager is in use.<\/li>\n\n\n\n<li><strong>Ethics:<\/strong> Modifying the behavior of other software without the user&#8217;s explicit knowledge and consent raises ethical concerns.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process<\/p>\n","protected":false},"author":1,"featured_media":295,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[4,34,37],"class_list":["post-265","post","type-post","status-publish","format-standard","has-post-thumbnail","category-software-code","tag-c","tag-ftk-imager","tag-kill-process"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C# - Kill Process (FTK Imager) - Anti-Forensics.com<\/title>\n<meta name=\"description\" content=\"Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# - Kill Process (FTK Imager) - Anti-Forensics.com\" \/>\n<meta property=\"og:description\" content=\"Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process\" \/>\n<meta property=\"og:url\" content=\"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/\" \/>\n<meta property=\"og:site_name\" content=\"Anti-Forensics.com\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/stercutis\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-22T22:51:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-15T05:05:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2023\/08\/anti-forensics.com-kill-ftk-process.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"970\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Max\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Max\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/\"},\"author\":{\"name\":\"Max\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#\\\/schema\\\/person\\\/ac3dd160cb42b1409a2a55dea58beec2\"},\"headline\":\"C# &#8211; Kill Process (FTK Imager)\",\"datePublished\":\"2023-08-22T22:51:10+00:00\",\"dateModified\":\"2024-04-15T05:05:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/\"},\"wordCount\":272,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/anti-forensics.com-kill-ftk-process.jpg\",\"keywords\":[\"c#\",\"ftk imager\",\"kill process\"],\"articleSection\":[\"Software\\\/Code\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/\",\"url\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/\",\"name\":\"C# - Kill Process (FTK Imager) - Anti-Forensics.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/anti-forensics.com-kill-ftk-process.jpg\",\"datePublished\":\"2023-08-22T22:51:10+00:00\",\"dateModified\":\"2024-04-15T05:05:16+00:00\",\"description\":\"Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#primaryimage\",\"url\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/anti-forensics.com-kill-ftk-process.jpg\",\"contentUrl\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/anti-forensics.com-kill-ftk-process.jpg\",\"width\":1024,\"height\":970},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/c-kill-process-ftk-imager\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# &#8211; Kill Process (FTK Imager)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/\",\"name\":\"Anti-Forensics.com\",\"description\":\"Rendering Digital Investigations Irrelevant\",\"publisher\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#organization\",\"name\":\"Anti-Forensics.com\",\"url\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/cropped-anti-forensics.com_.jpg\",\"contentUrl\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/cropped-anti-forensics.com_.jpg\",\"width\":512,\"height\":512,\"caption\":\"Anti-Forensics.com\"},\"image\":{\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/groups\\\/14345620\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/#\\\/schema\\\/person\\\/ac3dd160cb42b1409a2a55dea58beec2\",\"name\":\"Max\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7ca31cae39a49ab947496651bc5c75ee545a72f31c02db1a5c31f80b28714601?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7ca31cae39a49ab947496651bc5c75ee545a72f31c02db1a5c31f80b28714601?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7ca31cae39a49ab947496651bc5c75ee545a72f31c02db1a5c31f80b28714601?s=96&d=mm&r=g\",\"caption\":\"Max\"},\"description\":\"Anti-forensics involves attempts to hide data, damage the confidentiality, integrity, and availability of data in an effort to make analysis and examination of this data (evidence) difficult or impossible.\",\"sameAs\":[\"https:\\\/\\\/anti-forensics.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/stercutis\",\"https:\\\/\\\/linkedin.com\\\/in\\\/jesse-shelley\"],\"url\":\"https:\\\/\\\/anti-forensics.com\\\/blog\\\/author\\\/realjesseshelley_hkwwlra2\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C# - Kill Process (FTK Imager) - Anti-Forensics.com","description":"Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process","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:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/","og_locale":"en_US","og_type":"article","og_title":"C# - Kill Process (FTK Imager) - Anti-Forensics.com","og_description":"Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process","og_url":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/","og_site_name":"Anti-Forensics.com","article_author":"https:\/\/facebook.com\/stercutis","article_published_time":"2023-08-22T22:51:10+00:00","article_modified_time":"2024-04-15T05:05:16+00:00","og_image":[{"width":1024,"height":970,"url":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2023\/08\/anti-forensics.com-kill-ftk-process.jpg","type":"image\/jpeg"}],"author":"Max","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Max","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#article","isPartOf":{"@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/"},"author":{"name":"Max","@id":"https:\/\/anti-forensics.com\/blog\/#\/schema\/person\/ac3dd160cb42b1409a2a55dea58beec2"},"headline":"C# &#8211; Kill Process (FTK Imager)","datePublished":"2023-08-22T22:51:10+00:00","dateModified":"2024-04-15T05:05:16+00:00","mainEntityOfPage":{"@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/"},"wordCount":272,"commentCount":0,"publisher":{"@id":"https:\/\/anti-forensics.com\/blog\/#organization"},"image":{"@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#primaryimage"},"thumbnailUrl":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2023\/08\/anti-forensics.com-kill-ftk-process.jpg","keywords":["c#","ftk imager","kill process"],"articleSection":["Software\/Code"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/","url":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/","name":"C# - Kill Process (FTK Imager) - Anti-Forensics.com","isPartOf":{"@id":"https:\/\/anti-forensics.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#primaryimage"},"image":{"@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#primaryimage"},"thumbnailUrl":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2023\/08\/anti-forensics.com-kill-ftk-process.jpg","datePublished":"2023-08-22T22:51:10+00:00","dateModified":"2024-04-15T05:05:16+00:00","description":"Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process","breadcrumb":{"@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#primaryimage","url":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2023\/08\/anti-forensics.com-kill-ftk-process.jpg","contentUrl":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2023\/08\/anti-forensics.com-kill-ftk-process.jpg","width":1024,"height":970},{"@type":"BreadcrumbList","@id":"https:\/\/anti-forensics.com\/blog\/c-kill-process-ftk-imager\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/anti-forensics.com\/blog\/"},{"@type":"ListItem","position":2,"name":"C# &#8211; Kill Process (FTK Imager)"}]},{"@type":"WebSite","@id":"https:\/\/anti-forensics.com\/blog\/#website","url":"https:\/\/anti-forensics.com\/blog\/","name":"Anti-Forensics.com","description":"Rendering Digital Investigations Irrelevant","publisher":{"@id":"https:\/\/anti-forensics.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/anti-forensics.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/anti-forensics.com\/blog\/#organization","name":"Anti-Forensics.com","url":"https:\/\/anti-forensics.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/anti-forensics.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2024\/01\/cropped-anti-forensics.com_.jpg","contentUrl":"https:\/\/anti-forensics.com\/blog\/wp-content\/uploads\/2024\/01\/cropped-anti-forensics.com_.jpg","width":512,"height":512,"caption":"Anti-Forensics.com"},"image":{"@id":"https:\/\/anti-forensics.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/groups\/14345620\/"]},{"@type":"Person","@id":"https:\/\/anti-forensics.com\/blog\/#\/schema\/person\/ac3dd160cb42b1409a2a55dea58beec2","name":"Max","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7ca31cae39a49ab947496651bc5c75ee545a72f31c02db1a5c31f80b28714601?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7ca31cae39a49ab947496651bc5c75ee545a72f31c02db1a5c31f80b28714601?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7ca31cae39a49ab947496651bc5c75ee545a72f31c02db1a5c31f80b28714601?s=96&d=mm&r=g","caption":"Max"},"description":"Anti-forensics involves attempts to hide data, damage the confidentiality, integrity, and availability of data in an effort to make analysis and examination of this data (evidence) difficult or impossible.","sameAs":["https:\/\/anti-forensics.com\/blog","https:\/\/facebook.com\/stercutis","https:\/\/linkedin.com\/in\/jesse-shelley"],"url":"https:\/\/anti-forensics.com\/blog\/author\/realjesseshelley_hkwwlra2\/"}]}},"_links":{"self":[{"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/posts\/265","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/comments?post=265"}],"version-history":[{"count":4,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/posts\/265\/revisions"}],"predecessor-version":[{"id":524,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/posts\/265\/revisions\/524"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/media\/295"}],"wp:attachment":[{"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/media?parent=265"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/categories?post=265"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/anti-forensics.com\/blog\/wp-json\/wp\/v2\/tags?post=265"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}