Posts

Showing posts with the label password cracking

HOW TO CRACK A PASSWORD PROTECTED ZIP FILE USING KALI LINUX .

Image
Kali linux is one of the biggest distros powered by linux company with around 600 penetration and testing tools know how to make a kali linux iso live bootable click here . HOW TO CRACK A PASSWORD PROTECTED ZIP FILE . fcrackzip is the software preinstalled in kali linuix and backtracks which is used for cracking password by bruteforce attack .  I have created a test zip file name 100.zip with a password of admin for this demonstration purpose . Go switch to your linux terminal with your zip file and type in the command fcrackzip -b -c a -l <min>-<max> -u <location of zip file > -b : For bruteforce attack -c : use charset -l : specify length <min>-<max>:   minimum to maximum characters you guess the password has <location > : location of the .zip file . The example command look like : fcrackzip -b -c a -l 5-5 -u /root/Desktop/100.zip  hit enter Allow it some time to make the brute force attack . you can see the ...

HOW TO CRACK MAIL PASSWORDS USING HYDRA ON KALI LINUX .( GMAIL , YAHOO , LIVE) /bruteforce method .

Image
KALI LINUX is one of the most powerful linux destros of linux company . it has move 600 penetration and testing tools including all online / ofline attacks and also password attacks . to do this trick u need to have a live bootable kali linux . know how to boot a kali linux   click here . Hydra is a  online password cracking tool in kali - linux and also balcktracks . it bruteforces password for smtp servers , ftp servers and also http servers . HOW TO CRACK AN ONLINE PASSWORD  Open the terminal and type hydra and hit enter . type in the command to start bruteforce . hydra -l <mail address> -P <file > -s <port > -S -v -V -t 1 <mailer server > smtp  <mail address>  = mail address of the person example@mailer.com <file>  = path of the dictionary file OR a word list .\ create your own word list  Click here  <port> = port address of the mailer <mailer server>...