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 / config.ini
Created June 6, 2024 08:16
amass v3 config.ini
# Copyright © by Jeff Foley 2017-2023. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
# SPDX-License-Identifier: Apache-2.0
# Should results only be collected passively and without DNS resolution? Not recommended.
#mode = passive
# Would you like to use active techniques that communicate directly with the discovered assets,
# such as pulling TLS certificates from discovered IP addresses and attempting DNS zone transfers?
#mode = active
@six2dez
six2dez / Azure_cleaning_commands.md
Created May 23, 2023 09:02
Azure cleaning commands

Public IPs

az resource delete --ids $(az network public-ip list --query '[?ipAddress==`null`].[id]' -o tsv)

Network Security Groups

az resource delete --ids $(az network public-ip list --query '[?ipAddress==`null`].[id]' -o tsv)

Network Interfaces

@six2dez
six2dez / subs_perms.txt
Created February 15, 2023 19:58
Permutations wordlist for bruteforcing EASM workshop
dev
main
prod
test
docs
wiki
info
site
user
eng
@six2dez
six2dez / sub_brute.txt
Created February 15, 2023 19:54
Subdomains wordlist for bruteforcing EASM workshop
www
tiukata
sivupolku
manailla
tevanaketeollisuus
reseptori
hekumallisesti
massaluku
velli
pikkupappila
1
2
3
4
5
6
7
8
9
10
@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
@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 / 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 / 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 / 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