{"id":813,"date":"2013-01-22T16:48:15","date_gmt":"2013-01-22T21:48:15","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/22\/find-spam-script-location-with-exim\/"},"modified":"2021-11-23T09:52:07","modified_gmt":"2021-11-23T14:52:07","slug":"find-spam-script-location-with-exim","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/","title":{"rendered":"How to Find a spam script location with Exim"},"content":{"rendered":"\n<p>In this guide I\u2019ll teach you how to use the <strong>Exim mail log<\/strong> on your VPS or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay <strong>spam <\/strong>from your server.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#how-spam\">How does spam get sent from my server?<\/a><\/li><li><a href=\"#how-stop\">How do I stop spam coming from my server?<\/a><\/li><li><a href=\"#top-scripts\">Locate top scripts sending into Exim<\/a><ul><li><a href=\"#breakdown\">Code Breakdown<\/a><\/li><\/ul><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-spam\">How does spam get sent from my server?<\/h2>\n\n\n\n<p>You might have a \u201ctell a friend\u201d feature on your website, or another email alerting system on your site. If you\u2019re not careful these can sometimes be exploited by bots for spamming purposes. This can damage the sending reputation of your mail IP address, and lead to issues such as making you end up on a <a href=\"https:\/\/www.inmotionhosting.com\/support\/email\/why-do-mail-servers-get-blacklisted\/\">blacklist<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-stop\">How do I stop spam coming from my server?<\/h2>\n\n\n\n<p>Exim, or the MTA (Mail Transfer Agent) on your server handles email deliveries. All email activity is logged including mail sent from scripts. It does this by logging the current working directory from where the script was executed.<\/p>\n\n\n\n<p>Using this knowledge you can easily track down a script of your own that is being exploited to send out spam, or locate possibly malicious scripts that a spammer has placed onto your server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"top-scripts\">Locate top scripts sending into Exim<\/h2>\n\n\n\n<p>In the steps below I\u2019ll show how to locate the top scripts on your server sending mail. If any scripts look suspicious, you can check the Apache access logs to find how a spammer might be using your scripts send spam.<\/p>\n\n\n\n<p class=\"alert alert-info\">To follow the steps below you\u2019ll need root access to your server, so you have access to the Exim mail log.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">Login to your server via SSH<\/a> as the root user.<\/li><li>Run the following command to pull the most used mailing script\u2019s location from the Exim mail log: <br><code>grep cwd \/var\/log\/exim_mainlog | grep -v \/var\/spool | awk -F\"cwd=\" '{print $2}' | awk '{print $1}' | sort | uniq -c | sort -n<\/code><br><br>(See <a href=\"#breakdown\">the table below<\/a> for a detailed breakdown of this code.)<br><br>You should get back something like this:<br><code>15 \/home\/userna5\/public_html\/about-us<\/code><br><code>25 \/home\/userna5\/public_html<\/code><br><code>7866 \/home\/userna5\/public_html\/data<\/code><br><br>We can see <code>\/home\/userna5\/public_html\/data<\/code> by far has more deliveries coming in than any others.<\/li><li>Now we can run the following command to see what scripts are located in that directory:<br><code>ls -lahtr \/userna5\/public_html\/data<\/code><br><br>In this case we got back:<br><code>drwxr-xr-x 17 userna5 userna5 4.0K Jan 20 10:25 ..\/<\/code><br><code>-rw-r\u2013r\u2013 1 userna5 userna5 5.6K Jan 20 11:27 mailer.php<\/code><br><code>drwxr-xr-x 2 userna5 userna5 4.0K Jan 20 11:27 .\/<\/code><br><br>So we can see there is a script called <strong>mailer.php<\/strong> in this directory.<br><br>Knowing the <strong>mailer.php<\/strong> script was sending mail into Exim, we can now take a look at our Apache access log to see what IP addresses are accessing this script using the following command:<br><code>grep \"mailer.php\" \/home\/userna5\/access-logs\/example.com | awk '{print $1}' | sort -n | uniq -c | sort -n<\/code><\/li><li>You should get back something similar to this:<br><code>2 123.123.123.126<\/code><br><code>2 123.123.123.125<\/code><br><code>2 123.123.123.124<\/code><br><code>7860 123.123.123.123<\/code><br><br>We can see the IP address <strong>123.123.123.123<\/strong> was using our mailer script in a malicious nature.<\/li><li>If you find a malicious IP address sending a large volume of mail from a script, you\u2019ll probably want to go ahead and block them at your server\u2019s firewall so that they can\u2019t try to connect again.<br><br>This can be accomplished with the following command:<br><code>apf -d 123.123.123.123 \"Spamming from script in \/home\/userna5\/public_html\/data\"<\/code><\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"breakdown\">Code Breakdown<\/h3>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\">\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th><strong>Code<\/strong><\/th><th><strong>Meaning<\/strong><\/th><\/tr><\/thead><tbody><tr><td><code>grep cwd \/var\/log\/exim_mainlog<\/code><\/td><td>Use the <code>grep<\/code> command to locate mentions of <code>cwd<\/code> from the Exim mail log. This stands for <strong>current working directory<\/strong>.<\/td><\/tr><tr><td><code>grep -v \/var\/spool<\/code><\/td><td>Use the <code>grep<\/code> with the <code>-v<\/code> flag which is an invert match, so we don\u2019t show any lines that start with <code>\/var\/spool<\/code> as these are normal Exim deliveries not sent in from a script.<\/td><\/tr><tr><td><code>awk -F\"cwd=\" '{print $2}' | awk '{print $1}'<\/code><\/td><td>Use the <code>awk<\/code> command with the <code>-F<\/code> Field separator set to <code>cwd=<\/code>, then just print out the <code>$2<\/code> second set of data, finally pipe that to the <code>awk<\/code> command again only printing out the <code>$1<\/code> first column so that we only get back the script path.<\/td><\/tr><tr><td><code>sort | uniq -c | sort -n<\/code><\/td><td>Sort the script paths by their name, uniquely count them, then sort them again numerically from lowest to highest.<\/td><\/tr><\/tbody><\/table><\/figure>\n<\/div>\n<\/div>\n\n\n\n<p><\/p>\n<\/div><\/div>\n\n\n\n<p>Hopefully you\u2019ve learned how to use your Exim mail log to see what scripts on your server are causing the most email activity. Also how to investigate if malicious activity is going on, and how to block it.<\/p>\n\n\n<div class=\"jumbotron\" style=\"text-align:center;\">\r\n<p style=\"font-size: 20px;\"><strong>Dedicated Servers with Premier Care Support<\/strong><\/p>\r\n<p>Serious infrastructure needs comprehensive support. Premier Care provides the security tools, backup protection, and expert assistance your business requires.<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>Professional Setup &nbsp;&nbsp;&nbsp; <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>Fully-Managed &nbsp;&nbsp;&nbsp; <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>24\/7 Expert Human Support<\/p>\r\n<p><a class=\"btn btn-primary btn-lg\" href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers?mktgp=t&irgwc=1&affiliates=5001860&utm_campaign=Jumbotron&utm_source=supportcenter&utm_medium=cta&utm_term=managed-dedi-cta1\">Dedicated Server Hosting<\/a><\/p>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this guide I\u2019ll teach you how to use the Exim mail log on your VPS or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server. How does spam get sent from my server? How do I stop spam coming from<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-813","post","type-post","status-publish","format-standard","hentry","category-email"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Find a spam script location with Exim | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;ll be teaching you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server.\" \/>\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.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Find a spam script location with Exim | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;ll be teaching you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-01-22T21:48:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-23T14:52:07+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\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:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Find a spam script location with Exim\",\"datePublished\":\"2013-01-22T21:48:15+00:00\",\"dateModified\":\"2021-11-23T14:52:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\"},\"wordCount\":648,\"commentCount\":92,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Email\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\",\"name\":\"How to Find a spam script location with Exim | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-22T21:48:15+00:00\",\"dateModified\":\"2021-11-23T14:52:07+00:00\",\"description\":\"In this article I'll be teaching you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Find a spam script location with Exim\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Find a spam script location with Exim | InMotion Hosting","description":"In this article I'll be teaching you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server.","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.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/","og_locale":"en_US","og_type":"article","og_title":"How to Find a spam script location with Exim | InMotion Hosting","og_description":"In this article I'll be teaching you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-22T21:48:15+00:00","article_modified_time":"2021-11-23T14:52:07+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Find a spam script location with Exim","datePublished":"2013-01-22T21:48:15+00:00","dateModified":"2021-11-23T14:52:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/"},"wordCount":648,"commentCount":92,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Email"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/","name":"How to Find a spam script location with Exim | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-22T21:48:15+00:00","dateModified":"2021-11-23T14:52:07+00:00","description":"In this article I'll be teaching you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to find possible attempts from spammers to use your scripts, or their own in order to relay spam from your server.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-spam-script-location-with-exim\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Find a spam script location with Exim"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/813","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=813"}],"version-history":[{"count":16,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/813\/revisions"}],"predecessor-version":[{"id":92423,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/813\/revisions\/92423"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=813"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=813"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=813"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}