{"id":8690,"date":"2020-06-16T06:00:14","date_gmt":"2020-06-16T10:00:14","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=8690"},"modified":"2021-12-04T08:58:09","modified_gmt":"2021-12-04T08:58:09","slug":"mod_evasive-security-setup","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/","title":{"rendered":"How to Configure mod_evasive With Apache on Debian\/Ubuntu"},"content":{"rendered":"\n

mod_evasive is an Apache web server<\/a> module that secures your website against brute force attacks or Distributed Denial of Service (DDoS\/DoS) attacks.<\/p>\n\n\n\n

This complements mod_security on Apache<\/a> which allows you to secure <\/a>your website from a wide range of attacks. <\/p>\n\n\n\n

This tool can also be used as a network management tool<\/a> and can be configured to talk to ipchains, firewalls, routers, and more as well as report abuse via email and Syslog.<\/p>\n\n\n\n

This guide assumes that you already have your LAMP stack setup and running<\/a>.<\/p>\n\n\n\n

Step 1: Install mod_evasive<\/h2>\n\n\n\n

ModEvasive is available from the official software repositories, therefore it can be installed using apt or yum.<\/p>\n\n\n\n

Ubuntu\/Debian<\/h4>\n\n\n\n
$ sudo apt install libapache2-modsecurity<\/code><\/pre>\n\n\n\n

CentOS\/Fedora<\/h4>\n\n\n\n
$ sudo yum install mod_security<\/code><\/pre>\n\n\n\n

Then check the status of ModEvasive by running the command below:<\/p>\n\n\n\n

$ sudo apachectl -M | grep evasive<\/code><\/pre>\n\n\n\n

You should see the below output if the module is enabled on the server:<\/p>\n\n\n\n

evasive20_module (shared)<\/code><\/pre>\n\n\n\n

Step 2: Configure ModEvasive<\/h2>\n\n\n\n

We need to make a few changes in the configuration file using the following editors:<\/p>\n\n\n\n

Ubuntu\/Debian<\/h4>\n\n\n\n
$ sudo nano \/etc\/apache2\/mods-enabled\/evasive.conf<\/code><\/pre>\n\n\n\n

You will find the directives commented with a pound sign (#<\/strong>). Uncomment all those lines by removing the ‘#’<\/strong> sign and entering the email address where you want to receive email reports when ModEvasive intercepts an attack targeted to your web server.<\/p>\n\n\n\n

Here is a sample of what your file should look like.<\/p>\n\n\n\n

<IfModule mod_evasive20.c>\n    DOSHashTableSize 3097\n    DOSPageCount 2\n    DOSSiteCount 50\n    DOSPageInterval 1\n    DOSSiteInterval 1\n    DOSBlockingPeriod 60\n    DOSEmailNotify <someone@somewhere.com>\n    #DOSSystemCommand    "su - someuser -c '\/sbin\/... %s ...'"\n    DOSLogDir           "\/var\/log\/mod_evasive"\n<\/IfModule><\/code><\/pre>\n\n\n\n

CentOS \/ Fedora<\/h4>\n\n\n\n

Open the following file:<\/p>\n\n\n\n

$ sudo nano \/etc\/httpd\/conf\/httpd.conf<\/code><\/pre>\n\n\n\n

and enter the following line:<\/p>\n\n\n\n

LoadModule evasive20_module \/usr\/lib\/httpd\/modules\/mod_evasive20.so<\/code><\/pre>\n\n\n\n

Below that section, add the mod_evasive configuration: similar to the one above:<\/p>\n\n\n\n

<IfModule mod_evasive20.c>\n    DOSHashTableSize 3097\n    DOSPageCount 2\n    DOSSiteCount 50\n    DOSPageInterval 1\n    DOSSiteInterval 1\n    DOSBlockingPeriod 60\n    DOSEmailNotify <someone@somewhere.com>\n    #DOSSystemCommand    "su - someuser -c '\/sbin\/... %s ...'"\n    DOSLogDir           "\/var\/log\/mod_evasive"\n<\/IfModule><\/code><\/pre>\n\n\n\n

Save and close the file.<\/p>\n\n\n\n

Step 3: Create a ModEvasive Log Directory<\/h2>\n\n\n\n

The default log directory is \/tmp<\/strong> but that is not where we want to save our log files. More on this later. We will have to create a mod_evasive log directory and set the appropriate permissions.<\/p>\n\n\n\n

Create the directory<\/p>\n\n\n\n

$ sudo mkdir \/var\/log\/mod_evasive<\/code><\/pre>\n\n\n\n

Give Apache user ownership of the directory<\/p>\n\n\n\n

$ sudo chown -R www-data:www-data \/var\/log\/mod_evasive<\/code><\/pre>\n\n\n\n

Step 4: Restart Apache<\/h2>\n\n\n\n

Restart Apache web server for the above changes to take effect:<\/p>\n\n\n\n

Debian \/ Ubuntu:<\/h4>\n\n\n\n
$ sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n

CentOS \/ Fedora:<\/h4>\n\n\n\n
$ sudo systemctl restart httpd<\/code><\/pre>\n\n\n\n

mod_evasive Configuration Options Guide<\/h2>\n\n\n\n

DOSHashTableSize<\/h4>\n\n\n\n

The hash table size defines the number of top-level nodes for each child’s hash table. Basically, it is the size of the table that tracks the activities of users based on their past IP addresses visits. Increasing this number will provide faster performance by decreasing the number of iterations required to get to the record. Increase this if you have a busy web server. take note that doing this will increase server memory usage.<\/p>\n\n\n\n

DOSPageCount<\/h4>\n\n\n\n

This is the threshold for the number of requests a user can make for the same page (or URI) per page interval defined by the DOSPageInterval <\/strong>directive. Once the threshold for that interval has been exceeded, the IP address of the client will be added to the blocking list.<\/p>\n\n\n\n

DOSSiteCount<\/h4>\n\n\n\n

This is the threshold for the total number of requests for any object by the same client on the same listener per website interval defined in DOSSiteInterval<\/strong>. Once the threshold for that interval has been exceeded, the IP address of the client will be added to the blocking list.<\/p>\n\n\n\n

DOSPageInterval<\/h4>\n\n\n\n

The interval for the DOSPageCount<\/strong> threshold; defaults to 1-second intervals.<\/p>\n\n\n\n

DOSSiteInterval<\/h4>\n\n\n\n

The interval for the DOSSiteCount<\/strong> threshold; defaults to 1-second intervals.<\/p>\n\n\n\n

DOSBlockingPeriod<\/h4>\n\n\n\n

The blocking period is the amount of time in seconds that a client will be blocked for if they are added to the blocking list. During this time, all subsequent requests from the client will result in a 403 (Forbidden) error and the timer being reset. Since the timer is reset for every subsequent request, it is not necessary to have a long blocking period in the event of a DoS attack as the timer will keep getting reset.<\/p>\n\n\n\n

DOSEmailNotify<\/h4>\n\n\n\n

If this value is set, an email will be sent to the address specified whenever an IP address becomes blacklisted. A locking mechanism using \/tmp prevents continuous emails from being sent.<\/p>\n\n\n\n

For this to work, make sure MAILER is set correctly in mod_evasive.c (or mod_evasive20.c). The default is \u201c\/bin\/mail -t %s\u201d<\/strong> where %s<\/strong> is used to denote the destination email address set in the configuration. If your setup uses an alternate mailer then you need to change it.<\/p>\n\n\n\n

DOSSystemCommand<\/h4>\n\n\n\n

If this value is set, the system command specified will be executed whenever an IP address becomes blacklisted. This is designed to enable system calls to ip filter or other tools. A locking mechanism using \/tmp<\/strong> prevents continuous system calls. Use %s to denote the IP address of the blacklisted IP.<\/p>\n\n\n\n

DOSLogDir<\/h4>\n\n\n\n

This is the directory where attacks will be logged. You will need to set up an alternate directory writable only to the user Apache is running as (usually root or www-data) as by default “\/tmp”<\/strong> will be used for the locking mechanism, which opens some security issues if your system is open to shell users.<\/p>\n\n\n\n

If everything is set up correctly you should have an Apache web server that is protected from DoS\/DDoS attacks using mod_evasive. Check out how to secure your website with mod_security with Apache<\/a>.<\/p>\n\n\n\n

References:<\/p>\n\n\n\n

mod_evasive on GitHub: View<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

mod_evasive is an Apache web server module that secures your website against brute force attacks or Distributed Denial of Service (DDoS\/DoS) attacks. This complements mod_security on Apache which allows you…<\/p>\n","protected":false},"author":1,"featured_media":8691,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16,18],"tags":[58,106,121,164,308,313,320,354,400,424,433,526,543,591,598,635,636],"yoast_head":"\nHow to Protect Your Apache With mod_evasive on Debian\/Ubuntu<\/title>\n<meta name=\"description\" content=\"Here's how you can secure your Apache webserver against brute force and DoS\/DDoS attacks with mod_evasive on Debian\/Ubuntu Linux distros\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Protect Your Apache With mod_evasive on Debian\/Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Here's how you can secure your Apache webserver against brute force and DoS\/DDoS attacks with mod_evasive on Debian\/Ubuntu Linux distros\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-16T10:00:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-04T08:58:09+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Configure mod_evasive With Apache on Debian\/Ubuntu\",\"datePublished\":\"2020-06-16T10:00:14+00:00\",\"dateModified\":\"2021-12-04T08:58:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\"},\"wordCount\":834,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg\",\"keywords\":[\"Apache\",\"Browsers\",\"CentOS\",\"Cross Platform\",\"IIS\",\"InfoSec\",\"Internet\",\"Linux\",\"Nginx\",\"Open Source\",\"Optimization\",\"Security\",\"Software Design\",\"Tools\",\"Ubuntu\",\"Web\",\"Web Applications\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\",\"url\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\",\"name\":\"How to Protect Your Apache With mod_evasive on Debian\/Ubuntu\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg\",\"datePublished\":\"2020-06-16T10:00:14+00:00\",\"dateModified\":\"2021-12-04T08:58:09+00:00\",\"description\":\"Here's how you can secure your Apache webserver against brute force and DoS\/DDoS attacks with mod_evasive on Debian\/Ubuntu Linux distros\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg\",\"width\":1200,\"height\":630,\"caption\":\"mod_evasive With Apache\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Configure mod_evasive With Apache on Debian\/Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Protect Your Apache With mod_evasive on Debian\/Ubuntu","description":"Here's how you can secure your Apache webserver against brute force and DoS\/DDoS attacks with mod_evasive on Debian\/Ubuntu Linux distros","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":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/","og_locale":"en_US","og_type":"article","og_title":"How to Protect Your Apache With mod_evasive on Debian\/Ubuntu","og_description":"Here's how you can secure your Apache webserver against brute force and DoS\/DDoS attacks with mod_evasive on Debian\/Ubuntu Linux distros","og_url":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2020-06-16T10:00:14+00:00","article_modified_time":"2021-12-04T08:58:09+00:00","og_image":[{"width":1200,"height":630,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Configure mod_evasive With Apache on Debian\/Ubuntu","datePublished":"2020-06-16T10:00:14+00:00","dateModified":"2021-12-04T08:58:09+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/"},"wordCount":834,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg","keywords":["Apache","Browsers","CentOS","Cross Platform","IIS","InfoSec","Internet","Linux","Nginx","Open Source","Optimization","Security","Software Design","Tools","Ubuntu","Web","Web Applications"],"articleSection":["Articles","Guides","How To","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/","url":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/","name":"How to Protect Your Apache With mod_evasive on Debian\/Ubuntu","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg","datePublished":"2020-06-16T10:00:14+00:00","dateModified":"2021-12-04T08:58:09+00:00","description":"Here's how you can secure your Apache webserver against brute force and DoS\/DDoS attacks with mod_evasive on Debian\/Ubuntu Linux distros","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/mod_evasive-security-setup\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/06\/mod_evasive-security-setup.jpg","width":1200,"height":630,"caption":"mod_evasive With Apache"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/mod_evasive-security-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Configure mod_evasive With Apache on Debian\/Ubuntu"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/8690"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=8690"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/8690\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/8691"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=8690"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=8690"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=8690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}