Posts

Showing posts with the label iso

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 MAKE A KALI LINUX BOOTABLE.

WHAT IS KALI LINUX? Kali Linux  is a Debian-based Linux distribution aimed at advanced Penetration Testing and Security Auditing. Kali contains several hundred tools aimed at various information security tasks, such as  Penetration Testing, Forensics and Reverse Engineering. Kali Linux is developed, funded and maintained by  Offensive Security , a leading information security training company. Kali Linux is an open source operating system it can be modified by user it is free distribution but we can't use windows for  hacking or penetration testing beacuse windows is an closed operating system. Kali Linux was released on the 13th March, 2013 as a complete, top-to-bottom rebuild of  BackTrack Linux , adhering completely to  Debian  development standards. Know More About Kali Linux Here . As We Know That All LINUX DISTROS  Are mostly uised for hacking and penetration testing and kali linux is the most powerfull of those .. ...