Here we are to present the new version of Gerix Wifi Cracker NG (New Generation), a really complete GUI for Aircrack-NG which includes useful extras.
Completely re-written in Python + QT, automates all the different techniques to attack Access Points and Wireless Routers (but not only ..)
Currently Gerix Wifi Cracker NG is available and supported natively by BackTrack (pre-installed on the BT4 Final version) and available on all the different Debian Based distributions (Ubuntu, ecc..).
The software requires: aircrack-ng, xterm, machchanger, zenity and obviously python-qt3. The version 1.0 is publicly released for the last tests and to collect opinions from users.
To install, open terminal and type
wget http://www.clshack.it/nopaste/gerix-wifi-cracker-ng-2.0-bt7.deb
sudo dpkg -i gerix-wifi-cracker-ng-2.0-bt7.deb
If cannot install then creates the directory
mkdir / pentest / wireless / wifi-gerix-cracker-ng
Well, once installed, can open it from here:
sudo python /usr/share/gerix-wifi-cracker-ng/gerix.py
or
sudo python /pentest/wireless/gerix-wifi-cracker-ng/gerix.py
Is there package for 64bit systems?
ReplyDeleteWifi Şifre Kırma Full Anlatım 1 saat yeterli Tıklayın
DeleteI don't have it at this moment.. sorry
ReplyDeleteI would love to have a 64bit version :(
ReplyDeletei got this error when i run sudo dpkg -i gerix-wifi-cracker-ng-2.0-bt7.deb .help please..
ReplyDeletedpkg: error processing gerix-wifi-cracker-ng-2.0-bt7.deb (--install):
unable to open file '/var/lib/dpkg/tmp.ci//.svn': Is a directory
Errors were encountered while processing:
gerix-wifi-cracker-ng-2.0-bt7.deb
The same
ReplyDeletesame I'm running ubuntu 10 something and I get the same error...
ReplyDeletesame here:(
ReplyDeletei have the same message
ReplyDeleteGet Gerix from TigerSecurity, if you're lazy to make a few dirs. You can just extract and go.
ReplyDeleteMake sure you get qt3 etc... Have funzorz.
dpkg: error processing gerix-wifi-cracker-ng-2.0-bt7.deb (--install):
ReplyDeletesubprocess dpkg-deb --control returned error exit status 2
Errors were encountered while processing:
gerix-wifi-cracker-ng-2.0-bt7.deb
???
(running natty)
i have the same probleme plese help me fredduguay@live.fr
ReplyDeletei try 4 time and seme thing ,rdd2
Want some information about security tools and hacking video ? then Visit On
ReplyDeletewww.securitytube-tools.net & www.securitytube.net 600+ Tools And 2500+ Security & hacking Video Available
AND THIS IS NOT SPAM IF YOU THINK THIS IS SPAM THEN GOOGLE IT :D :D
i have succesfully installed gerix on my ubuntu11 distro. "Information Gathering" is now labeled "Configuration" (a side note). When i get into configuration the app does not see my atheros chipset so I can not set it to monitor mode (mon0) any idea on how to fix this
ReplyDeleteI have successfully installed Gerix on my Ubuntu 11 distro. I have the correct Atheros ath9k chip set. By the way "Information Gathering " is now "Configuration" in the latest release. My problem is that the app does not see the card. so I can not set it to monitor status. Also the program says it should be run in root. great but I can not get into my root folder even though I am the system owner and have the correct password
ReplyDeletei have succesfully installed gerix on my ubuntu11 distro. "Information Gathering" is now labeled "Configuration" (a side note). When i get into configuration the app does not see my atheros chipset so I can not set it to monitor mode (mon0) any idea on how to fix this
ReplyDeleterun
ReplyDeleteifconfig wlan0 down
iwconfig wlan0 mode monitor
ifconfig wlan0 up
your card will be pit in monitor mode,check it with
run
iwconfig
SecurityTube now has a certification based on their wireless videos: http://securitytube-training.com/certifications/securitytube-wi-fi-security-expert/ Testimonials look good.
ReplyDeletedpkg: error processing gerix-wifi-cracker-ng-2.0-bt7.deb (--install):
ReplyDeleteunable to open file '/var/lib/dpkg/tmp.ci//.svn': Is a directory
Errors were encountered while processing:
gerix-wifi-cracker-ng-2.0-bt7.deb
how can i fix this error???
AnonymousJune June 16, 2012
ReplyDeleteYou need the modules:
qt (v.3)
refer: https://github.com/TigerSecurity/gerix-wifi-cracker
don't understand nothing.as i'm newby...
Deletedon't understand nothing.as i'm newbee
Deletetake u time to understanding.....
DeleteYou need the modules:
ReplyDeleteqt (v.3)
refer: https://github.com/TigerSecurity/gerix-wifi-cracker
i'm sure to understand if they'r give instruction.but that only file.what's u mean for "You need the modules:qt (v.3)"
btw thank for your reply..
python-qt3
ReplyDeletethx TheRev, u made my by only answering their questions, I thank you in the name of them.
ReplyDeletethanks TheRev, i thank you in the name of those who didn't do it. You helped me a lot by only answering their questions
ReplyDeletealready out !!!!!!!!!!!!!!!!!!!!!!!!111111
ReplyDeletesame problem encountered as i tried to install from terminal
ReplyDeleteThis is actually caused by poor packaging, where the package was generated by or from code using an SVN source tree.
ReplyDeleteTo fix it, all .svn directories in the package must be removed.
Follow these instructions carefully and exactly as written and it should fix the problem. Log in as root if you can - otherwise you will typing lots of "sudo ......." stuff!!!
So, here is the fix process.... with acknowledgements to MiJyn
Run this code in a terminal (replacing debfile_REPLACE_ME by the name of the broken .deb file, and /path/to/bad/ by the actual path to the broken .deb file.
Firstly, you will need to install the dpkg development tools to allow the re-building the .deb package. Do this by typing...
sudo apt-get install dpkg-dev # Install tools to rebuild the debian package
Next, create a temporary working directory by typing exactly as follows - Linux will replace the $$ with a 4-digit random number....
mkdir /tmp/deb$$
cp path/to/bad/debfile_REPLACE_ME.deb /tmp/deb$$ # Copies broken file to temporary directory
dpkg-deb -x debfile_REPLACE_ME.deb deb # Extracts filesystem data
cd deb
dpkg-deb -e ../debfile_REPLACE_ME.deb # Extracts metadata
Now, for the slightly tricky bit - creating a shell file containing the following code which will remove references to .svn directories. Cut and paste the following text to a new text file.
#!/bin/bash
# SVN Emergency Fix
function rdirls() {
for i in $1/*
do
if [ -d "$i" ]
then
echo $i
rm -rf $i/.svn
rdirls $i
else
echo "NOT " > /dev/null 2>&1
fi
done
}
if [ -d "$1" ]
then
echo $1
rm -rf ./.svn
rdirls $1
fi
If by chance this code gets mangled by a CVS or filtering - this code can also be found at http://pastebin.com/AvtFVRuK. Copy the section labeled “Raw Paste Data” to a text file, then move the file to /tmp/debXXXX (where X are random numbers, probably 4 of them - remember the mkdir step?). Call the file ‘svn.sh’ (without the quotes).
Now type the following steps in the same terminal as before:
chmod +x ../svn.sh
../svn.sh .
cd ..
Finally - re-build the package by typing
sudo dpkg-deb -b deb
You can now install it using:
sudo dpkg -i deb.deb
Good Luck
installed bt5 in virtualbox (using bridged adopter), while using Gerx i get "monitor interface is not set" error message.
ReplyDeleteNot going to run around trying to understand this I doubt any newbie like me will do this right. Replace me what? I think the help is great but, it's assuming we are not linux illiterate. I can't afford to jack this up with maybe or like this's I don't understand. What are all these XXX's and REPLACE_ME? I see the same issue over and over again and it just so happens it's my issue also.
ReplyDeletedpkg: error processing gerix-wifi-cracker-ng-2.0-bt7.deb (--install):
unable to open file '/var/lib/dpkg/tmp.ci//.svn': Is a directory
Errors were encountered while processing:
I am sorry if I'm stupid about this but I don't think others understood either.
maybe I should just forget this until it actually does what it's supposed to. or what's the other thing do?
Oh and how about posting the long sudo one? maybe I can do that?