Skip to content

Instantly share code, notes, and snippets.

View AliyahMillan's full-sized avatar
🎯
Focusing on becoming a pentester. Tips appreciated.

Aliyah Millán AliyahMillan

🎯
Focusing on becoming a pentester. Tips appreciated.
View GitHub Profile
@sundowndev
sundowndev / GoogleDorking.md
Last active April 23, 2024 16:59
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@cuuupid
cuuupid / a_million_commits.sh
Last active November 19, 2021 21:42
Gitsploit
# a million commits
for Y in {1999..2018}
do
mkdir $Y
cd $Y
for M in {01..12}
do
mkdir $M
cd $M
for D in {01..31}
@willurd
willurd / web-servers.md
Last active April 23, 2024 04:35
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000