Lab2 Aircrack-ng
Open Software of Choice: Aircrack-ng
Downloaded Directly from their Github
As Listed in the Steps to install, I needed to download and install required dependencies
Heres the list:
build-essential
autoconf
automake
libtool
pkg-config
libnl-3-dev
libnl-genl-3-dev
libssl-dev
ethtool
shtool
rfkill
zlib1g-dev
libpcap-dev
libsqlite3-dev
libpcre3-dev
libhwloc-dev
libcmocka-dev
Done in one easy command:
sudo apt-get install build-essential autoconf automake libtool pkg-config libnl-3-dev libnl-genl-3-dev libssl-dev ethtool shtool rfkill zlib1g-dev libpcap-dev libsqlite3-dev libpcre3-dev libhwloc-dev libcmocka-dev
It then proceeded to install all the Dependencies.
The Autotools build system is utilized. Autotools replaces older methods of building
However, I cant just ./configure, Due to the version I have to run a preconfigure script:
autoreconf -i
Then ./configure will work to build
TESTING BEFORE INSTALLING
Performing a Make Check
1 Error Found 0.o.
Im unsure why im getting this error so im going to download it a different way and try again,
Lets do a Wget to a desktop folder
After extracting I had to run the config script again, I got a better result this time
CHECK TIME
Time for the moment of Truth again, the make check before the install!
PERFECTION!
INSTALLATION:
In order to test this package I'll need a usb wifi adapter, which I have. Setting it up with the Vm was easy, same as connecting a usb expect had to disable my own wifi card
Next is getting it into Monitor mode!
iwconfig shows our device as wlxd8fee300b8c1, oddly long but shouldn't be an issue
Before we get into monitor mode, lets use a command from the aircrack suite that we installed to check if there are any programs that will interfere with what were doing
then into Monitor mode we go
Then final check, packet capture!
Congratulations, Setup and Testing was done successfully
Comments
Post a Comment