Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
ChatGPT, AI, and Companies’ 2023 Cybersecurity Challenges and Impact
https://cdn-images-1.medium.com/max/786/1*gxsEfOHbcksXOkbjrMpKGQ.png
Insights on ChatGPT and the Evolving Cybersecurity Threat Landscape and Strategies for Companies in 2023.
Continue reading on Cybersecurity Matrix »
ChatGPT, AI, and Companies’ 2023 Cybersecurity Challenges and Impact
https://cdn-images-1.medium.com/max/786/1*gxsEfOHbcksXOkbjrMpKGQ.png
Insights on ChatGPT and the Evolving Cybersecurity Threat Landscape and Strategies for Companies in 2023.
Continue reading on Cybersecurity Matrix »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to create a RAT payload using msfvenom
https://cdn-images-1.medium.com/max/782/0*E8q4tnNIVLw7X200
This article is written for educational purposes only
Continue reading on System Weakness »
How to create a RAT payload using msfvenom
https://cdn-images-1.medium.com/max/782/0*E8q4tnNIVLw7X200
This article is written for educational purposes only
Continue reading on System Weakness »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hack The Box Templated Challenge Writeup
https://cdn-images-1.medium.com/max/1000/1*GqBQ8UeUBsV9fRnwzBiVHw.png
Açıklama: Selam arkadaşlar, Hack the Box platformunda bulunan ‘Templated’ isimli challenge çözümünü sizinle paylaşıyor olacağım. Burada…
Continue reading on Medium »
Hack The Box Templated Challenge Writeup
https://cdn-images-1.medium.com/max/1000/1*GqBQ8UeUBsV9fRnwzBiVHw.png
Açıklama: Selam arkadaşlar, Hack the Box platformunda bulunan ‘Templated’ isimli challenge çözümünü sizinle paylaşıyor olacağım. Burada…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Machines abroad
Are chinese or russian machines ( webservers vulnerable computers ,routers etc) configured in their respective languages ?
Would you see Cyrillic if you got root privileges on a russian server or chinese characters on one of theirs on the command line?
submitted by /u/Old_Trash_4340
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Machines abroad
Are chinese or russian machines ( webservers vulnerable computers ,routers etc) configured in their respective languages ?
Would you see Cyrillic if you got root privileges on a russian server or chinese characters on one of theirs on the command line?
submitted by /u/Old_Trash_4340
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Festival Wrist band cloning. Possible?
I have 2 wristbands registered and activated and 2 that haven't. (Ultra Music Festival)
Can we clone and use the active ones with a reader/writer?
They don't require you to scan out of an area, only to get in. I would assume it's not as easy as just copying the RFID chip in the band, or is it?
submitted by /u/Sonya7rii
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Festival Wrist band cloning. Possible?
I have 2 wristbands registered and activated and 2 that haven't. (Ultra Music Festival)
Can we clone and use the active ones with a reader/writer?
They don't require you to scan out of an area, only to get in. I would assume it's not as easy as just copying the RFID chip in the band, or is it?
submitted by /u/Sonya7rii
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Wifi_Db - Script To Parse Aircrack-ng Captures To A SQLite Database
http://www.kitploit.com/2023/03/wifidb-script-to-parse-aircrack-ng.html
http://www.kitploit.com/2023/03/wifidb-script-to-parse-aircrack-ng.html
Script to parse Aircrack-ng (https://www.kitploit.com/search/label/Aircrack-ng) captures into a SQLite database and extract useful information like handshakes (in 22000 hashcat format), MGT identities, interesting relations between APs, clients and it's Probes, WPS information and a global view of all the APs seen. _ __ _ _ _
__ __(_) / _|(_) __| || |__
\ \ /\ / /| || |_ | | / _` || '_ \
\ V V / | || _|| | | (_| || |_) |
\_/\_/ |_||_| |_| _____ \__,_||_.__/
|_____|
by r4ulcl
Features Displays if a network is cloaked (hidden) even if you have the ESSID. Shows a detailed table of connected clients and their respective APs. Identifies client probes connected to APs, providing insight into potential security risks usin Rogue APs. Extracts handshakes for use with hashcat, facilitating password cracking. Displays identity information from enterprise networks, including the EAP method used for authentication. Generates a summary of each AP group by ESSID and encryption, giving an overview of the security status of nearby networks. Provides a WPS info table for each AP, detailing information about the Wi-Fi Protected Setup configuration of the network. Logs all instances when a client or AP has been seen with the GPS data and timestamp, enabling location-based analysis. Upload files with capture folder or file. This option supports the use of wildcards (*) to select multiple files or folders. Docker version in Docker Hub to avoid dependencies. Obfuscated mode for demonstrations and conferences. Possibility to add static GPS data. Install From DockerHub (https://hub.docker.com/r/r4ulcl/wifi_db) (RECOMMENDED) docker pull r4ulcl/wifi_db Manual installation Debian based systems (Ubuntu, Kali, Parrot, etc.) Dependencies: python3 python3-pip tshark hcxtools sudo apt install tshark
sudo apt install python3 python3-pip
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
make
sudo make install
cd .. Installation git clone https://github.com/r4ulcl/wifi_db
cd wifi_db
pip3 install -r requirements.txt Arch Dependencies: python3 python3-pip tshark hcxtools sudo pacman -S wireshark-qt
sudo pacman -S python-pip python
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
make
sudo make install
cd .. Installation git clone https://github.com/r4ulcl/wifi_db
cd wifi_db
pip3 install -r requirements.txt Usage Scan with airodump-ng Run airodump-ng (https://www.kitploit.com/search/label/Airodump-ng) saving the output with -w: sudo airodump-ng wlan0mon -w scan --manufacturer --wps --gpsd Create the SQLite database using Docker #Folder with captures
CAPTURESFOLDER=/home/user/wifi
# Output database
touch db.SQLITE
docker run -t -v $PWD/db.SQLITE:/db.SQLITE -v $CAPTURESFOLDER:/captures/ r4ulcl/wifi_db -v $PWD/db.SQLITE:/db.SQLITE: To save de output in current folder db.SQLITE file -v $CAPTURESFOLDER:/captures/: To share the folder with the captures with the docker
__ __(_) / _|(_) __| || |__
\ \ /\ / /| || |_ | | / _` || '_ \
\ V V / | || _|| | | (_| || |_) |
\_/\_/ |_||_| |_| _____ \__,_||_.__/
|_____|
by r4ulcl
Features Displays if a network is cloaked (hidden) even if you have the ESSID. Shows a detailed table of connected clients and their respective APs. Identifies client probes connected to APs, providing insight into potential security risks usin Rogue APs. Extracts handshakes for use with hashcat, facilitating password cracking. Displays identity information from enterprise networks, including the EAP method used for authentication. Generates a summary of each AP group by ESSID and encryption, giving an overview of the security status of nearby networks. Provides a WPS info table for each AP, detailing information about the Wi-Fi Protected Setup configuration of the network. Logs all instances when a client or AP has been seen with the GPS data and timestamp, enabling location-based analysis. Upload files with capture folder or file. This option supports the use of wildcards (*) to select multiple files or folders. Docker version in Docker Hub to avoid dependencies. Obfuscated mode for demonstrations and conferences. Possibility to add static GPS data. Install From DockerHub (https://hub.docker.com/r/r4ulcl/wifi_db) (RECOMMENDED) docker pull r4ulcl/wifi_db Manual installation Debian based systems (Ubuntu, Kali, Parrot, etc.) Dependencies: python3 python3-pip tshark hcxtools sudo apt install tshark
sudo apt install python3 python3-pip
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
make
sudo make install
cd .. Installation git clone https://github.com/r4ulcl/wifi_db
cd wifi_db
pip3 install -r requirements.txt Arch Dependencies: python3 python3-pip tshark hcxtools sudo pacman -S wireshark-qt
sudo pacman -S python-pip python
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
make
sudo make install
cd .. Installation git clone https://github.com/r4ulcl/wifi_db
cd wifi_db
pip3 install -r requirements.txt Usage Scan with airodump-ng Run airodump-ng (https://www.kitploit.com/search/label/Airodump-ng) saving the output with -w: sudo airodump-ng wlan0mon -w scan --manufacturer --wps --gpsd Create the SQLite database using Docker #Folder with captures
CAPTURESFOLDER=/home/user/wifi
# Output database
touch db.SQLITE
docker run -t -v $PWD/db.SQLITE:/db.SQLITE -v $CAPTURESFOLDER:/captures/ r4ulcl/wifi_db -v $PWD/db.SQLITE:/db.SQLITE: To save de output in current folder db.SQLITE file -v $CAPTURESFOLDER:/captures/: To share the folder with the captures with the docker
Create the SQLite database using manual installation Once the capture is created, we can create the database by importing the capture. To do this, put the name of the capture without format. python3 wifi_db.py scan-01 In the event that we have multiple captures we can load the folder in which they are directly. And with -d we can rename the output database. python3 wifi_db.py -d database.sqlite scan-folder
Open database The database can be open with: sqlitebrowser (https://sqlitebrowser.org/)