Category: Web Security

  • Force HTTPS on WordPress

    Force HTTPS on WordPress

    How to implement?

    Code:

    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]

  • Start Burpsuite using command line

    If you don't want to start your burpsuite, which consumes all your available resources (RAM), then I think the following way will safe you. By the way, I have only 8GB RAM and my Kali Machine consumes 3GB, therefore, I need to be very careful when it comes to resource management, to enjoy a stable performance :-) 
    
    java -jar -Xmx2G burpsuite_community_v1.7.36.jar & 
    
    Want to know more? Read here.