Web Application Hacker's Handbook Task checklist as a Github-Flavored Markdown file
This file contains hidden or 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
ab_idproot | |
accept-ch | |
accept-ch-lifetime | |
accept-ranges | |
access-control-allow-credentials | |
access-control-allow-headers | |
access-control-allow-method | |
access-control-allow-methods | |
access-control-allow-origin | |
access-control-expose-headers |
This file contains hidden or 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
export GOPATH=$HOME/go | |
export GOROOT=/usr/local/go | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin |
This file contains hidden or 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
root:!:18816:0:99999:7::: | |
daemon:*:18667:0:99999:7::: | |
bin:*:18667:0:99999:7::: | |
sys:*:18667:0:99999:7::: | |
sync:*:18667:0:99999:7::: | |
games:*:18667:0:99999:7::: | |
man:*:18667:0:99999:7::: | |
lp:*:18667:0:99999:7::: | |
mail:*:18667:0:99999:7::: | |
news:*:18667:0:99999:7::: |
This file contains hidden or 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
share = true | |
#mode = passive | |
mode = active | |
#output_directory = amass | |
scripts_directory = /home/khan/scripts | |
maximum_dns_queries = 10000 | |
[resolvers] |
This file contains hidden or 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
#!/bin/bash | |
#This one is demo you can make your own stracture for yourself just add dir and file.... have fun | |
mkdir ~/work/$1 | |
mkdir ~/work/$1/finaldata | |
mkdir ~/work/$1/finaldata/portscan | |
mkdir ~/work/$1/domains | |
mkdir ~/work/$1/recondata | |
mkdir ~/work/$1/needcheck | |
touch ~/work/$1/finaldata/subdomains.txt |
This file contains hidden or 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
#!/bin/bash | |
echo "[+] Installing XFCE4, this will take a while" | |
sudo apt update | |
sudo apt dist-upgrade -y --force-yes | |
sudo apt --yes --force-yes install kali-desktop-xfce xorg xrdp | |
echo "[+] Configuring XRDP to listen on port 3390 (but not starting the service)..." | |
echo "[+] To start the service run: sudo /etc/init.d/xrdp start" | |
sudo sed -i 's/port=3389/port=3390/g' /etc/xrdp/xrdp.ini | |
sudo echo "alias startx=\"sudo /etc/init.d/xrdp start\"" > ~/.bash_aliases | |
sudo echo "alias stopx=\"sudo /etc/init.d/xrdp stop\"" > ~/.bash_aliases |
This file contains hidden or 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
display: | |
error: false | |
new: true | |
unchanged: false | |
job_defaults: | |
all: {} | |
browser: {} | |
shell: {} | |
url: {} | |
report: |
This file contains hidden or 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
#!/bin/sh | |
set -e | |
# | |
# This script is meant for quick & easy install via: | |
# 'curl -sSL https://raw.githubusercontent.com/ysrc/xunfeng/master/install/install.sh | sh' | |
# or: | |
# 'wget -qO- https://raw.githubusercontent.com/ysrc/xunfeng/master/install/install.sh | sh' | |
# | |
export MONGODB_URL="http://downloads.mongodb.org/linux/mongodb-linux-x86_64-3.4.0.tgz" | |
export XUNFENG_REPO="https://github.com/ysrc/xunfeng.git" |
This file contains hidden or 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
apt install git gcc make libpcap-dev python-argparse massdns golang python python3 | |
pip install py-altdns | |
go get -v github.com/projectdiscovery/subfinder/cmd/subfinder | |
go get github.com/haccer/subjack | |
go get -u github.com/rverton/webanalyze/... | |
go get github.com/tomnomnom/httprobe | |
go get github.com/tomnomnom/waybackurls |
NewerOlder