Login to the Raspberry Pi.The default Raspberry Pi credentials: Username: pi Password: raspberry ================================================================================== If you need to find the network name of your local network you can run the following command in the Raspberry terminal:> sudo iwlist wlan0 scan This will list all the networks in your vicinity along with some useful information forContinue reading “Connecting Raspberry PI to WIFI”
Author Archives: hamesdhacker
Cracking WEP Wifi Passwords
# airodump-ng (Network Card Name Wlan) – get the bssid and the channel that the WIFI is running on# besside-ng (Network Card Name Wlan) -c (channel Number) -b (bssid of the WIFI) – you will receive the password in HEX, to crack the HEX continue:# aircrack-ng ./wep.cap choose the network you’re trying to crack andContinue reading “Cracking WEP Wifi Passwords”
Starting Metasploit For The First Time on Kali Linux
1) Start postgresql> /etc/init.d/postgresql status > /etc/init.d/postgresql start 2) Start Metasploit Framework’s Database.> sudo msfdb init 3) Run a bundle install> gem install bundler 4) Start Metasploit> msfconsole Confirm postgreql is connected> db_status
Mounting a USB on Linux machine
find the name of the disk or the flash drive sudo fdisk -l create a folder that the usb will get mounted on mkdir /media/usb-drive mount the usb mount /dev/sdc1 /media/usb-drive/ to check the USB drive got mounted on correctly mount | grep sdc1 Unmounting the usb umount /media/usb-drive Permanent Mount >>>> add this lineContinue reading “Mounting a USB on Linux machine”
Hosting a Local HTML Website with Apache 2
Need root access sudo nano /etc/hosts ADD 0.0.0.0 domain.com0.0.0.0 http://www.domain.com SAVE sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/domain.com.confsudo nano /etc/apache2/sites-available/humblehackers.com.conf UNCOMMENT AND COMMEONServerName http://www.domain.comServerName domain.com ServerAdmin root@domain.comDocumentRoot /var/www/humblehackers/public_html sudo a2ensite domain.com.conf create .html file in the directory above ^^ sudo service apache2 restart ====THE WEBSITE IS BEING HOSTED LOCALLY==== Push the website on port 80 sudo iptables -vLContinue reading “Hosting a Local HTML Website with Apache 2”
Photon – Website Recon Tool
https://github.com/s0md3v/Photon installation git clone https://github.com/s0md3v/Photon.git #usage python3 photon.py -u [website] options usage: photon.py [-h] [-u ROOT] [-c COOK] [-r REGEX] [-e {csv,json}][-o OUTPUT] [-l LEVEL] [-t THREADS] [-d DELAY] [-v][-s SEEDS [SEEDS …]] [–stdout STD][–user-agent USER_AGENT] [–exclude EXCLUDE][–timeout TIMEOUT] [-p PROXIES] [–clone] [–headers][–dns] [–keys] [–update] [–only-urls] [–wayback] optional arguments:-h, –help show this help message andContinue reading “Photon – Website Recon Tool”
Raccoon – Website Recon Tool
https://github.com/evyatarmeged/Raccoon Installation pip3 install raccoon-scanner – to run: raccoon [options] [Target] Options:–version Show the version and exit.-d, –dns-records TEXT Comma separated DNS records to query.Defaults to: A,MX,NS,CNAME,SOA,TXT–tor-routing Route HTTP traffic through Tor (uses port9050). Slows total runtime significantly–proxy-list TEXT Path to proxy list file that would be usedfor routing HTTP traffic. A proxy from thelistContinue reading “Raccoon – Website Recon Tool”