{"id":3787,"date":"2024-03-10T17:32:33","date_gmt":"2024-03-10T17:32:33","guid":{"rendered":"https:\/\/code2deploy.com\/blog\/?p=3787"},"modified":"2024-03-10T17:32:33","modified_gmt":"2024-03-10T17:32:33","slug":"strengthening-your-security-how-to-protect-ssh-with-fail2ban","status":"publish","type":"post","link":"https:\/\/code2deploy.com\/blog\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/","title":{"rendered":"Strengthening Your Security: How To Protect SSH with Fail2Ban"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In today&#8217;s digital landscape, security is paramount. Whether you&#8217;re an individual user or managing a server, safeguarding your systems against unauthorized access is essential. One critical area to focus on is securing SSH (Secure Shell) access, which is commonly targeted by malicious actors due to its role in providing remote access to servers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To bolster your SSH security, one effective tool you can implement is <strong>Fail2Ban<\/strong>. Fail2Ban is an open-source intrusion prevention framework that works by monitoring log files for <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\"><strong>suspicious activity and automatically banning IP addresses that exhibit malicious behavior<\/strong>.<\/mark> By integrating <strong>Fail2Ban<\/strong> into your system, you can add an extra layer of defense against<strong> brute-force attacks<\/strong> and other unauthorized login attempts.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Here&#8217;s a simplified diagram illustrating how Fail2Ban works to protect SSH:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"594\" height=\"297\" sizes=\"auto, (max-width: 594px) 100vw, 594px\" src=\"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-workprocess-code2deploy.png\" alt=\"\" class=\"wp-image-3788\" srcset=\"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-workprocess-code2deploy.png 594w, https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-workprocess-code2deploy-300x150.png 300w\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>SSH Authentication Logs:<\/strong> Fail2Ban monitors SSH authentication logs, which record login attempts, successful or failed, made to the SSH server.<\/li>\n\n\n\n<li><strong>Analyzing Logs for Failed Attempts: <\/strong>Fail2Ban scans the SSH authentication logs for patterns indicating failed login attempts.<\/li>\n\n\n\n<li><strong>Failed Login Attempts Detected<\/strong>: When Fail2Ban detects a certain number of failed login attempts from a specific IP address within a defined timeframe (as specified by the maxretry parameter), it takes action.<\/li>\n\n\n\n<li><strong>IP Address Banned:<\/strong> Fail2Ban automatically adds the IP address that exceeded the threshold to the firewall&#8217;s blacklist, effectively banning it from accessing the SSH server.<\/li>\n\n\n\n<li><strong>Enhanced Security:<\/strong> Banning the IP address helps prevent further malicious login attempts from that particular source, enhancing the overall security of the SSH server.<\/li>\n\n\n\n<li><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This diagram simplifies the process of how Fail2Ban operates to protect SSH, showing how it analyzes authentication logs, detects suspicious activity, and takes proactive measures to block potential threats.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Here&#8217;s a step-by-step guide on how to protect SSH with Fail2Ban:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Installation: Begin by installing Fail2Ban on your server. Depending on your operating system, the installation process may vary. For Debian\/Ubuntu systems, you can use the following command:<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>sudo apt-get install fail2ban<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Configuration: Once installed, the next step is to configure Fail2Ban to monitor SSH authentication logs. The configuration file for Fail2Ban is typically located at <strong>\/etc\/fail2ban\/jail.conf <\/strong>or <strong>\/etc\/fail2ban\/jail.local<\/strong>. Open this file in a text editor.<\/li>\n\n\n\n<li>SSH Jail Configuration: Locate the SSH jail configuration section within the Fail2Ban configuration file. By default, Fail2Ban should come with a pre-configured SSH jail. If not, you can add the following lines:<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>[ssh]<br>enabled = true<br>port = ssh<br>filter = sshd<br>logpath = \/var\/log\/auth.log<br>maxretry = 3<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>enabled: <\/strong>Set to true to enable the SSH jail.<\/li>\n\n\n\n<li><strong>port: <\/strong>Specify the port where SSH is running. The default is ssh (port 22).<\/li>\n\n\n\n<li>f<strong>ilter:<\/strong> Indicates the name of the filter to be used. In this case, sshd.<\/li>\n\n\n\n<li><strong>logpath:<\/strong> Path to the SSH authentication log file.<\/li>\n\n\n\n<li><strong>maxretry:<\/strong> Maximum number of authentication failures before banning an IP address.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Restart Fail2Ban: <\/strong>After making changes to the configuration file, restart Fail2Ban to apply the new settings:<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>sudo systemctl restart fail2ban<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Monitoring:<\/strong> With Fail2Ban configured, it will now monitor the SSH authentication logs for failed login attempts. If it detects multiple failed attempts from the same IP address within a specified time frame (maxretry), it will automatically ban that IP address by adding a rule to the firewall.<\/li>\n\n\n\n<li><strong>Customization:<\/strong> You can further customize Fail2Ban to suit your specific security needs. This includes adjusting the maxretry value, setting ban durations, and configuring email notifications for bans.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">By following these steps, you can significantly enhance the security of your SSH server by implementing Fail2Ban. However, it&#8217;s important to note that while Fail2Ban provides valuable protection, it should be used in conjunction with other security measures such as strong passwords, SSH key authentication, and regular software updates to ensure comprehensive protection against potential threats.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In conclusion, safeguarding your SSH access is crucial for maintaining the integrity and security of your systems. With Fail2Ban, you can proactively defend against unauthorized access attempts and mitigate the risk of security breaches. By taking proactive steps to fortify your defenses, you can better protect your valuable data and infrastructure in an increasingly hostile digital environment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s digital landscape, security is paramount. Whether you&#8217;re an individual user or managing a server, safeguarding your systems against unauthorized access is essential. One critical area to focus on is securing SSH (Secure Shell) access, which is commonly targeted by malicious actors due to its role in providing remote access to servers. To bolster [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3789,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[131,20],"tags":[244,246,242,245,79,243,241,247],"class_list":["post-3787","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-infra-security","category-cyber-security","tag-banning-ip","tag-brute-force-attacks","tag-fail2ban","tag-ip-blocking","tag-server-administration","tag-server-auth-logs","tag-ssh-security","tag-unauthorized-login-attempts"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Strengthening Your Security: How To Protect SSH with Fail2Ban - code2deploy.com<\/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:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Strengthening Your Security: How To Protect SSH with Fail2Ban - code2deploy.com\" \/>\n<meta property=\"og:description\" content=\"In today&#8217;s digital landscape, security is paramount. Whether you&#8217;re an individual user or managing a server, safeguarding your systems against unauthorized access is essential. One critical area to focus on is securing SSH (Secure Shell) access, which is commonly targeted by malicious actors due to its role in providing remote access to servers. To bolster [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/\" \/>\n<meta property=\"og:site_name\" content=\"code2deploy.com\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-10T17:32:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.code2deploy.com\/wp-content\/uploads\/2024\/03\/fail2ban-blog-image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"736\" \/>\n\t<meta property=\"og:image:height\" content=\"387\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"enam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"enam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/\"},\"author\":{\"name\":\"enam\",\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\"},\"headline\":\"Strengthening Your Security: How To Protect SSH with Fail2Ban\",\"datePublished\":\"2024-03-10T17:32:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/\"},\"wordCount\":693,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/fail2ban-blog-image.png\",\"keywords\":[\"Banning IP\",\"brute-force attacks\",\"fail2ban\",\"IP Blocking\",\"Server Administration\",\"Server Auth Logs\",\"ssh security\",\"unauthorized login attempts\"],\"articleSection\":[\"Infra Security\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/\",\"url\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/\",\"name\":\"Strengthening Your Security: How To Protect SSH with Fail2Ban - code2deploy.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/fail2ban-blog-image.png\",\"datePublished\":\"2024-03-10T17:32:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#primaryimage\",\"url\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/fail2ban-blog-image.png\",\"contentUrl\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/fail2ban-blog-image.png\",\"width\":736,\"height\":387,\"caption\":\"ssh protect with fail2ban\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Strengthening Your Security: How To Protect SSH with Fail2Ban\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/\",\"name\":\"code2deploy.com\\\/blog\",\"description\":\"TechOps\",\"publisher\":{\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\",\"name\":\"enam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\",\"caption\":\"enam\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\"},\"sameAs\":[\"https:\\\/\\\/code2deploy.com\\\/blog\"],\"url\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/author\\\/enam\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Strengthening Your Security: How To Protect SSH with Fail2Ban - code2deploy.com","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:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/","og_locale":"en_US","og_type":"article","og_title":"Strengthening Your Security: How To Protect SSH with Fail2Ban - code2deploy.com","og_description":"In today&#8217;s digital landscape, security is paramount. Whether you&#8217;re an individual user or managing a server, safeguarding your systems against unauthorized access is essential. One critical area to focus on is securing SSH (Secure Shell) access, which is commonly targeted by malicious actors due to its role in providing remote access to servers. To bolster [&hellip;]","og_url":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/","og_site_name":"code2deploy.com","article_published_time":"2024-03-10T17:32:33+00:00","og_image":[{"width":736,"height":387,"url":"https:\/\/blog.code2deploy.com\/wp-content\/uploads\/2024\/03\/fail2ban-blog-image.png","type":"image\/png"}],"author":"enam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"enam","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#article","isPartOf":{"@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/"},"author":{"name":"enam","@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b"},"headline":"Strengthening Your Security: How To Protect SSH with Fail2Ban","datePublished":"2024-03-10T17:32:33+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/"},"wordCount":693,"commentCount":1,"publisher":{"@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b"},"image":{"@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#primaryimage"},"thumbnailUrl":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-blog-image.png","keywords":["Banning IP","brute-force attacks","fail2ban","IP Blocking","Server Administration","Server Auth Logs","ssh security","unauthorized login attempts"],"articleSection":["Infra Security","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/","url":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/","name":"Strengthening Your Security: How To Protect SSH with Fail2Ban - code2deploy.com","isPartOf":{"@id":"https:\/\/code2deploy.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#primaryimage"},"image":{"@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#primaryimage"},"thumbnailUrl":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-blog-image.png","datePublished":"2024-03-10T17:32:33+00:00","breadcrumb":{"@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#primaryimage","url":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-blog-image.png","contentUrl":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/03\/fail2ban-blog-image.png","width":736,"height":387,"caption":"ssh protect with fail2ban"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.code2deploy.com\/strengthening-your-security-how-to-protect-ssh-with-fail2ban\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/code2deploy.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Strengthening Your Security: How To Protect SSH with Fail2Ban"}]},{"@type":"WebSite","@id":"https:\/\/code2deploy.com\/blog\/#website","url":"https:\/\/code2deploy.com\/blog\/","name":"code2deploy.com\/blog","description":"TechOps","publisher":{"@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/code2deploy.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b","name":"enam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g","caption":"enam"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g"},"sameAs":["https:\/\/code2deploy.com\/blog"],"url":"https:\/\/code2deploy.com\/blog\/author\/enam\/"}]}},"_links":{"self":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts\/3787","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/comments?post=3787"}],"version-history":[{"count":1,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts\/3787\/revisions"}],"predecessor-version":[{"id":3790,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts\/3787\/revisions\/3790"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/media\/3789"}],"wp:attachment":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/media?parent=3787"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/categories?post=3787"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/tags?post=3787"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}