Connecting Raspberry PI to WIFI

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”

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”