{"id":431,"date":"2012-06-12T16:59:40","date_gmt":"2012-06-12T16:59:40","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/06\/12\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/"},"modified":"2022-10-14T06:43:13","modified_gmt":"2022-10-14T10:43:13","slug":"wordpress-security-preventing-brute-force-attacks-on-admin-login","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/","title":{"rendered":"WordPress Security &#8211; Preventing Brute Force Attacks on Admin Login"},"content":{"rendered":"<p class=\"alert alert-warning\">There has been an increasing trend of brute force attacks on WordPress websites, and we recommend following the steps in our <a href=\"\/support\/edu\/wordpress\/wp-login-brute-force-attack\/\">WordPress wp-login.php brute force attack<\/a> news update for steps to take to lock down and secure your WordPress installation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why is WordPress targeted?<\/h2>\n\n\n\n<p>WordPress is one of the one most widely used website solutions on the internet today.\u00a0 As a result, it is also very often the target of malicious activity.\u00a0 Recently, there has been a trend in increased brute force attacks aiming to get access to WordPress as administrator-level users.\u00a0 This is in part due to the nature of WordPress and how it evolved into the website solution it is today. WordPress was originally designed to be simple blogging software. However, it is often used for many other purposes such as eCommerce, bulletin boards, personal journals, etc.\u00a0 This makes these websites more valuable as targets.\u00a0 Hackers often want to either disrupt this traffic or to somehow obtain information from these websites.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a Brute Force Attack?<\/h2>\n\n\n\n<p>One of the methods to gain information -primarily LOG-IN information \u2013 is by using a method called<strong> BRUTE FORCE<\/strong> attack.\u00a0 Basically, as the name suggests, they are not hiding the attack, and there\u2019s no efficiency to the attack. You could say it\u2019s like taking the \u201cshotgun approach.\u201d\u00a0 It simply is hitting the server looking for one thing, the correct login information for your WordPress site.\u00a0 Hackers will often infect other computer systems and then set them to attempt logging into the WordPress Administrator.\u00a0 The illustration below shows graphically how the attack traffic can come from many locations and be mixed with normal website traffic.\u00a0 The attack can also come from just one location, but the method of trying to crack the login is the same \u2013 it is simply going through a sequential search for your login.\u00a0 Brute force attacks can also increase resource usage of the website.\u00a0 Therefore, brute force attacks are not only trying to crack through your security, but they are also driving up resource usage when multiple attempts on the WordPress login is occurring.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"800\" height=\"670\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\" class=\"optimized-lcp-image\" alt=\"brutef\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg 800w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef-300x251.jpg 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef-768x643.jpg 768w\"><\/a><\/figure>\n\n\n\n<div style=\"clear: both;\">\u00a0<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Preventing WordPress Brute Force Attacks<\/h2>\n\n\n\n<p>Since users are no longer using WordPress as simply a blogging solution, there isn\u2019t as much emphasis on user management for the owners of the WordPress site.\u00a0 And this may also be a contributing factor to the problem.\u00a0 WordPress Site Administrators should regularly cycle their passwords and review their user lists to make sure that no one has been added that isn\u2019t supposed to be on the list. Especially users added as Administrator-level users.\u00a0 There are also WordPress sites that do not require that people register to post comments or other actions on the website. To prevent unauthorized access we recommend the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Block access to the WP-LOGIN.PHP\u00a0 using the HTACCESS file by requiring an additional password<\/li><li>Block access to the WP-LOGIN.PHP using the HTACCESS file by allowing only a specific IP address or range of IP addresses<\/li><li>Find a plugin that prevents access to the login screen after a particular number of tries.\u00a0 The plugin should then use an interval of inaccessibility before the next attempt to log in would be allowed.<\/li><\/ul>\n\n\n\n<p><strong>The first two methods using .htaccess are recommended as they will help to prevent excessive resource usage. <\/strong> There is no guarantee of this with the plug-in unless the plugin can limit access no matter how many times login attempts are being made.\u00a0 The following information are examples of the code solutions for the .htaccess file as listed above<\/p>\n\n\n\n<p><strong>.HTACCESS method to deny user login using an additional password for wp-login access:<\/strong><\/p>\n\n\n\n<p><em>Note: The code below would be in the .htaccess file located in the .htaccess file located where you have installed WordPress<\/em><\/p>\n\n\n\n<div class=\"code_block\">&lt;FilesMatch \u201c.wp-login.php$\u201d&gt;\n<p>\u00a0<\/p>\n<p>AuthName \u201cWordPress\u201d<\/p>\n<p>AuthType Basic<\/p>\n<p>AuthUserFile \/home\/username\/.htpasswd<\/p>\n<p>Require valid-user<\/p>\n<p>&lt;\/FilesMatch&gt;<\/p>\n<p>\u00a0<\/p>\n<p>\u00a0<\/p>\n<\/div>\n\n\n\n<p><strong>.HTACCESS method to deny user login using a specific IP address or range of IP addresses:<\/strong><\/p>\n\n\n\n<p><em>Note: The below code needs to be in the .htaccess file located in the WP-ADMIN folder. If you don\u2019t see one, then create a blank text file and name it .htaccess saving it in the wp-admin folder<\/em><\/p>\n\n\n\n<div class=\"code_block\">\n<p>AuthUserFile \/dev\/null<\/p>\n<p>AuthGroupFile \/dev\/null<\/p>\n<p>AuthName \u201cAdmin Access Only\u201d<\/p>\n<p>AuthType Basic<\/p>\n<p>&lt;LIMIT GET&gt;<\/p>\n<p>order deny,allow<\/p>\n<p>deny from all<\/p>\n<p># whitelist Admin 1 IP address<\/p>\n<p>allow from xx.xx.xx.xxx<\/p>\n<p># whitelist Admin 2 IP address<\/p>\n<p>allow from xx.xx.xx.xxx<\/p>\n<p>&lt;\/LIMIT&gt;<\/p>\n<p>\u00a0<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>There has been an increasing trend of brute force attacks on WordPress websites, and we recommend following the steps in our WordPress wp-login.php brute force attack news update for steps to take to lock down and secure your WordPress installation. Why is WordPress targeted? WordPress is one of the one most widely used website solutions<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\"> Read More ><\/a><\/p>\n","protected":false},"author":7,"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":[4299,4325,56],"tags":[],"class_list":["post-431","post","type-post","status-publish","format-standard","hentry","category-security","category-wordpress-hosting","category-wordpress"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Wordpress Security - Preventing Brute Force Attacks on Admin Login | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Learn how to avoid brute force attacks targeting WordPress sites\" \/>\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\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wordpress Security - Preventing Brute Force Attacks on Admin Login | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Learn how to avoid brute force attacks targeting WordPress sites\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\" \/>\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=\"2012-06-12T16:59:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-14T10:43:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\" \/>\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\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/8d626175dd3b70ee90a172bdb09a460b\"},\"headline\":\"WordPress Security &#8211; Preventing Brute Force Attacks on Admin Login\",\"datePublished\":\"2012-06-12T16:59:40+00:00\",\"dateModified\":\"2022-10-14T10:43:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\"},\"wordCount\":774,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\",\"articleSection\":[\"Security\",\"WordPress Hosting\",\"WordPress Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\",\"name\":\"Wordpress Security - Preventing Brute Force Attacks on Admin Login | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\",\"datePublished\":\"2012-06-12T16:59:40+00:00\",\"dateModified\":\"2022-10-14T10:43:13+00:00\",\"description\":\"Learn how to avoid brute force attacks targeting WordPress sites\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg\",\"width\":800,\"height\":670,\"caption\":\"brutef\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress Security &#8211; Preventing Brute Force Attacks on Admin Login\"}]},{\"@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\/8d626175dd3b70ee90a172bdb09a460b\",\"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\/arn\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Wordpress Security - Preventing Brute Force Attacks on Admin Login | InMotion Hosting","description":"Learn how to avoid brute force attacks targeting WordPress sites","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\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/","og_locale":"en_US","og_type":"article","og_title":"Wordpress Security - Preventing Brute Force Attacks on Admin Login | InMotion Hosting","og_description":"Learn how to avoid brute force attacks targeting WordPress sites","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-06-12T16:59:40+00:00","article_modified_time":"2022-10-14T10:43:13+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg","type":"","width":"","height":""}],"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\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/8d626175dd3b70ee90a172bdb09a460b"},"headline":"WordPress Security &#8211; Preventing Brute Force Attacks on Admin Login","datePublished":"2012-06-12T16:59:40+00:00","dateModified":"2022-10-14T10:43:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/"},"wordCount":774,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg","articleSection":["Security","WordPress Hosting","WordPress Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/","name":"Wordpress Security - Preventing Brute Force Attacks on Admin Login | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg","datePublished":"2012-06-12T16:59:40+00:00","dateModified":"2022-10-14T10:43:13+00:00","description":"Learn how to avoid brute force attacks targeting WordPress sites","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/WP_brutef.jpg","width":800,"height":670,"caption":"brutef"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-security-preventing-brute-force-attacks-on-admin-login\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"WordPress Security &#8211; Preventing Brute Force Attacks on Admin Login"}]},{"@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\/8d626175dd3b70ee90a172bdb09a460b","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\/arn\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/431","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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=431"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/431\/revisions"}],"predecessor-version":[{"id":100926,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/431\/revisions\/100926"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=431"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=431"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=431"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}