sometimes a cigar is just a cigar
Header image

http://orlingrabbe.com/des.htm How DES Works in Detail DES is a block cipher–meaning it operates on plaintext blocks of a given size (64-bits) and returns ciphertext blocks of the same size. Thus DES results in a permutation among the 2^64 (read this as: “2 to the 64th power”) possible arrangements of 64 bits, each of which may … Read more

Kismet Configuration on Ubuntu

Kisme is a wireless network detector tool.  You can install kismet via console with typing sudo apt-get install kismet To run kismet type sudo kismet However i took an error like Please configure at least one packet source To do that you have to edit kismet.conf file but first you have to find your wireless … Read more

With this security vulnerability, your admin password can be reset if your wordpress version <=2.8.3.  For more information about exploit visit: http://www.milw0rm.com/exploits/9410 Solution: open wp-login.php Find this line if ( empty( $key ) ) and change with this: if ( empty( $key ) || is_array( $key ) ) or patch: http://wordpress.org/development/2009/08/2-8-4-security-release/

It is very important to check your data that you take with $_GET before use. You can use $_Get in some cases , in each case there are some different measures to be taken. For example if you use sth like that if(isset($_GET[ex])) include($_GET[ex]); If you use this codes, bad users can include any page … Read more