Skip to main content

Installing Pyrit on Kali linux


       Pyrit is one of the most powerful WPA/WPA2 cracking tools in a hacker's arsenal, with the ability to benchmark a computer's CPU speeds, analyze captures files for crackable handshakes, and even tap to GPU password-cracking power.
            
                    Pyrit allows you to create a massive database of the Pre-computed WPA/WPA2-PSK authentication phase in a space-time tradeoff. Sometimes it gets tough for someone (as for me while I was a beginner it was pretty hard for me to install to know about it). you have to clone the pyrit from https://github.com/JPaulMora/Pyrit.git. let's open the terminal and get started.

        I will always recommend every user to use the terminal on root on installing or downloading. To get into root user just type "Sudo su" on your terminal.

sudo su

apt-get install libpcap-dev

apt-get install python2.7-dev libssl-dev zlib1g-dev libpcap-dev

    now we just have to just the Pyrit. To download visit https://github.com/JPaulMora/Pyrit.git. or just type: 

git clone https://github.com/JPaulMora/Pyrit.git

    Now go to your download location of pyrit. In my case it's in desktop so:

cd Desktop

cd pyrit

    Now it's our turn to install the downloaded pyrit:

python setup.py clean

python setup.py build

python setup.py install



    Done ....!!! Best of luck!



Comments

Popular posts from this blog

Snaps do not appear in the dash/menu on gnome (Kali-Linux)

           while I recently install the new kali Linux 2021.4 everything was going good but unfortunately, while installing the desktop application through snap, it was not showing in the dash/menu on gnome. Well, i tried enough few methods I were familiar to like,:  systemctl enable --now snapd apparmor emulate sh -c 'source /etc/profile'     Well after trying " emulate sh -C'source/etc/profile ' command I had to face a profile on my local device. It doesn't allow my machine to open any applications, I mean I wasn't able to open any of the applications. while I try to open any application it doesn't do anything. I was clueless about what to do next and reinstall my Linux os. But any of the methods doesn't work for me, was so depressed about it and while I mistakenly went to the .local folder and Application folder inside of the shared folder there was nothing ( i mean the blank folder). So I decided to extract the snap install application to...

How to Install Android Studio on Kali Linux - 2021.2

Android studio is the official integrated development environment for Google's Android operating system build through JetBrains' IntelliJ IDEA  Software and designed specified for Android development to accelerate the development and help to build the highest-quality apps for the every Android Devices.                    To use this software you need to know Java and have to installed on your desktop. In my case (Linux), system recommendation is:       GNOME or KDE or Unity desktop 2 GB RAM minimum, 4 GB RAM recommended 400 MB hard disk space plus at least 1 GB  Oracle Java Development Kit (JDK) 7     To install Android studio on Kali Linux or any Ubuntu version or distribution you need to install Snapd or Snap(Snap is a software packaging and deployment system developed by Canonical for Operating System that use the Linux kernal.)                ...