Category IT Security

Slowloris Attack

The Slowloris script opens two connections to the server, each without the final CRLF. After 10 seconds, second connection sends additional header. Both connections then wait for server timeout. If second connection gets a timeout 10 or more seconds after…

IPv4

This post explains briefly the network protocol IPv4 and summarizes the main aspects of it. IPv4 Address An IPv4 address represents a single device on an IP network. An IPv4 address consist of 32 bits. Example: 11000110001100110110010000000000 These 32 bits…

sqlmap

sqlmap is a command line tool to automatize SQL injections. Examples Retrieve tables on DB (–tables;)] specify database with -D: sqlmap -u “” –cookie=<“cookie value which you have copied in step #5”> -D moviescope –tables Retrieve columns from a table…