Browsing "Older Posts"


In this post I will show you how to unlock a .zip file without password, for this you need a linux based system. For Windows user you can use VirtualBox to run a virtual version of  a linux OS.

You can view the following post to see how to run Kali Linux in VirtualBox for Windows and Mac users :

Installing Kali Linux using VirtualBox

When you are done installing a Virtual machine the next step is cracking the password of the .zip file 
The video tutorial of cracking a .ZIP file is  here :



 

The cracking involves installing fcrackzip to your system and finding password for your zip file.

The command for installing and cracking .ZIP  are :


sudo bash
to get root privileges

apt-get update
to download and update the repositories

apt search fcrackzip
to search 'fcackzip' in the repository

apt-get install fcrackzip
to install the fcrackzip tool

fcrackzip -v -u -b _______
command to crack the password -v is verbose -u is use-unzip and -b is brute-force attack, the ______ must be filled with the path of the  .ZIP file

there are a load of option in fcrackzip like
 -d can be used for dictionary attack
 -c can be used to set character-set of the password attack (eg fcrackzip -v -u -b -c a ,fcrackzip -v -u -b -c A)
 -l is used to set length of the password attack to instantiate (eg fcrackzip -v -u -b -l 4 )

Here are the option for the attacks performed using fcrackzip


fcrackzip  [-bDBchVvplum2] [--brute-force] [--dictionary] [--benchmark]
       [--charset    characterset]    [--help]    [--validate]     [--verbose]
       [--init-password    string/path]   [--length   min-max]   [--use-unzip]
       [--method name] [--modulo r/m] file...


OPTIONS
       -h, --help
              Prints the version number and (hopefully) some helpful insights.

       -v, --verbose
              Each -v makes the program more verbose.

       -b, --brute-force
              Select brute force mode. This tries all possible combinations of
              the letters you specify.

       -D, --dictionary
              Select  dictionary  mode.  In  this  mode,  fcrackzip  will read
              passwords from a file, which must contain one password per  line
              and should be alphabetically sorted (e.g. using sort(1)).

       -c, --charset characterset-specification
              Select  the  characters  to use in brute-force cracking. Must be
              one of

                a   include all lowercase characters [a-z]
                A   include all uppercase characters [A-Z]
                1   include the digits [0-9]
                !   include [!:$%&/()=?{[]}+*~#]
                :   the following characters upto the end of the spe-
                    cification string are included in the character set.
                    This way you can include any character except binary
                    null (at least under unix).

              For example, a1:$% selects lowercase characters, digits and  the
              dollar and percent signs.

       -p, --init-password string
              Set  initial  (starting)  password  for brute-force searching to
              string, or use the file with the name string to supply passwords
              for dictionary searching.

       -l, --length min[-max]
              Use  an  initial password of length min, and check all passwords
              upto passwords of length max (including). You can omit  the  max
              parameter.

       -u, --use-unzip
              Try  to  decompress  the  first  file  by calling unzip with the
              guessed password. This weeds out false positives when not enough
              files have been given.

       -m, --method name
              Use method number "name" instead of the default cracking method.
              The switch --help will print a list of  available  methods.  Use
              --benchmark  to  see  which  method  does  perform  best on your
              machine. The name can also be the number of the method to use.

       -2, --modulo r/m
              Calculate only r/m of the password. Not yet supported.

       -B, --benchmark
              Make a small benchmark, the output is nearly meaningless.

       -V, --validate
              Make some basic checks wether the cracker works.

You can subscribe to our youtube channel here : https://www.youtube.com/meandmedia

You can subscribe to our facebook page here : https://www.facebook.com/meandmedia

Unlock a ZIP file without password

By Me And Media → Sunday 16 October 2016

For developers and students who have to work on multiple platform it is really important to have multiple operating system running on a single system. Developers need to test their product around multiple platforms and students might need their foot wet on different OS. And it is frustrating to run multiple OS in a single system by dual booting. 


It will really be handy to have multiple OS running in your PC, but if you dont have the hard disk space or Enough primary drive to boot multiple drive, the concept of virtualization is what you are looking for. 

Using virtualization you can have multiple virtual OS running your PC at low cost. "virtualization refers to the act of creating a virtual (rather than actual) version of something, including virtual computer hardware platforms, operating systems, storage devices, and computer network resources" this is the definition given by Wikipedia for virtualization. 

INSTALLING KALI LINUX AS VIRTUAL MACHINE IN VirtualBox


Lets see how to create virtual version of all the above, but for this you need a software tool called hyper-visor. A hyper-visor allows to create virtual machine on a system or technically speaking host hardware. VirtualBox is a well know hyper-visor used by thousands of people for virtualization purpose.

Today lets see how to install Kali Linux in a VirtualBox to run as virtual machine, but before that if you are not aware of Kali Linux here is an introduction about it. Kali Linux is operating system based on Debian derived Linux, it is highly used in fields like penetration testing and digital forensics.

You need to download VirtualBox and Kali Linux for this purpose here are the links for them :

VirtualBox :  Go Download

Kali LInux :  Go Download

Since it is a lengthy process, here is the video tutorial of how to install it ,



You can follow the above method to install VirtualBox in other OS like Mac OS, Linux, Solaris and run other virtual environments.

Install virtual machine using VirtualBox

By Me And Media → Friday 30 September 2016