Sign Up For Your Account

Thank you for exploring the Sucuri dashboard demo.

To gain full access, please sign up or contact us.


Advanced Security Options

Additional Headers

Header Default Protection HSTS HSTS Full
X-XSS-Protection
X-Frame-Options
X-Content-Type-Options
Strict-Transport-Security
includeSubdomains

Allowed HTTP Methods

Allowed HTTP Method
GET (can not be deleted)
POST (can not be deleted)
HEAD (can not be deleted)

Security Level

High mode will enable all our default security checks to prevent SQL injections, Cross site scripting, RFI, LFI, security scanners and a myriad of attacks from ever reaching your site. It will also enable our Virtual patching so if you are ever using an outdated software, it can't be used to hack your site.

Paranoid mode includes all the security options from the "High" mode, but also prevents POST requests, which means users won't be able to comment or send any information to the site, only reading will be allowed.

Preventing Firewall Bypass


Click on a server to see the code and add it to your hosting configuration.

Apache 2.4 Server
<FilesMatch ".*">
    Require ip 127.0.0.1.0/23
    Require ip 127.0.0.1.0/22
    Require ip 127.0.0.1
    Require ip 127.0.0.1/22
</FilesMatch>
Apache 2.2 Server
<FilesMatch ".*">
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1.0/23
    Allow from 127.0.0.1.0/22
    Allow from 127.0.0.1
    Allow from 127.0.0.1/22
</FilesMatch>
Nginx Server
location / {
    allow 127.0.0.1.0/23;
    allow 127.0.0.1.0/22;
    allow 127.0.0.1;
    allow 127.0.0.1/22;
    deny all;
    # Existing NGINX rules
}