Category: HTML

R-U-Dead-Yet?


I experienced this DoSS attack first hand. R-U-Dead-Yet, or RUDY for short, implements the generic HTTP DoS attack via long form field submissions. RUDY attack targets web applications by starvation of available sessions on the web server. RUDY keeps sessions at halt using never-ending POST transmissions and sending an arbitrarily large content-length header value. I […]

Read More

Easy Website Redirect Android Devices


Best way to redirect android devices is by adding the following in the header of your page. The script is looking for the word “Android” anywhere in the user agent then redirects to the document.location URL <script>// <![CDATA[ if ( (navigator.userAgent.indexOf(‘Android’) != -1) ) { document.location = “http://YourAndroidWebsite.com”; } // ]]></script>

Read More