DEFCON 31
See ya at the wall of sheep
How to find a the WiFi password on a Windows laptop that is connected.
Run CMD as administrator
enter this
netsh wlan show profile
this command will show the WiFi user profile and SSID
now enter this
netsh wlan export profile folder=C:\ key=clear
go to the root of C drive and you will find a XML file, open it with notepad
Search for <keyMaterial> and there you will find the password
how you get to the command prompt of a computer with admin privileges is on you
you will need to create an account for red hat and give them your information, nothing is free.
Download the no cost version you would like, if you are installing on a VM or Bare metal make sure to get the DVD ISO.
Reference: https://developers.redhat.com/products/rhel/download
Follow the steps to install and you are done, now register your OS to receive patches, pathing doesn't break things...
Register your OS
subscription-manager register --username <username> --password <password> --auto-attach
reference: https://access.redhat.com/solutions/253273
Steps to install and enable Broadcom WiFi devices in Kali Linux v 2022.2
This process works for the following devices
First
sudo apt update
Second
sudo apt install broadcom-sta-dkms
Third
sudo apt install broadcom-sta-source
Forth
reboot
enjoy your WiFi experience
echo '90oijsdv09uOIDVlkcndvwn' | base64 -d
echo '90oijsdv09uOIDVlkcndvwn' | base64 -d | tr ";" "\n"
NMap command to remember
NMAP -sP 192.168.1.0/24 = to ping all systems in that range
NMAP -sT -p 80,443 192.168.1.0/24 = search all IPs for defined open ports
sudo NMAP -sS -p 80,443 192.168.1.0/24 = stealth search all IPs for defined open ports
sudo NMAP -sS 192.168.1.90 = stealth search for all open ports, best to do this one machine at a time
sudo NMAP -O 192.168.1.90 = OS detection
sudo NMAP -A 192.168.1.90 = OS detection
hide yourself, -D sets the decoy IP address
sudo NMAP -sS -D 192.168.5.5 192.168.1.22
check vulnerabilities in systems
sudo NMAP --script vuln 192.168.1.90