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
import requests
import re
import sys
from multiprocessing.dummy import Pool
def robots(host):
r = requests.get(
'https://web.archive.org/cdx/search/cdx\
?url=%s/robots.txt&output=json&fl=timestamp,original&filter=statuscode:200&collapse=digest' % host)
import requests
import sys
import json
def waybackurls(host, with_subs):
if with_subs:
url = 'http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&fl=original&collapse=urlkey' % host
else:
url = 'http://web.archive.org/cdx/search/cdx?url=%s/*&output=json&fl=original&collapse=urlkey' % host
This file has been truncated, but you can view the full file.
*
/
/*
/$recycle.bin/s-1-5-18/desktop.ini
/$SysReset/AppxLogs/RestoreDownlevelAllUserStore.log
/$SysReset/Logs/diagerr.xml
/$SysReset/Logs/diagwrn.xml
/$SysReset/Logs/SessionID.xml
/$SysReset/Logs/setupact.log
/$SysReset/Logs/setuperr.log
@six2dez
six2dez / github-endpoints.py
Created January 12, 2021 11:36
github-endpoints.py
#!/usr/bin/python3
# I don't believe in license.
# You can do whatever you want with this program.
# Author : Gwendal Le Coguic
# Original file: https://github.com/gwen001/github-search/blob/master/github-endpoints.py
import os
import sys
import re
1
10
11
12
13
14
15
16
17
18
slack:
- id: "slack"
slack_channel: "recon"
slack_username: "test"
slack_format: "{{data}}"
slack_webhook_url: "https://hooks.slack.com/services/XXXXXX"
discord:
- id: "crawl"
discord_channel: "crawl"
@six2dez
six2dez / subdomains.txt
Last active June 17, 2024 07:32
subdomains.txt
This file has been truncated, but you can view the full file.
0
001
002
003
01
02
03
1
2
@six2dez
six2dez / reconftw_redbull.com_webs.txt
Created March 20, 2021 15:14
reconftw_redbull.com_webs.txt
https://360content-akamai.redbull.com
https://addons-3styleruconsumeractivationpage.redbull.com
https://ablink.news.redbull.com
https://actions-service-staging.redbull.com
https://ablink.updates.redbull.com
https://actions-service.redbull.com
https://account.redbull.com
https://addons-fantasyfactions.redbull.com
https://9to5.redbull.com
https://400.redbull.com
@six2dez
six2dez / reconftw_redbull.com_subdomains.txt
Created March 20, 2021 15:15
reconftw_redbull.com_subdomains.txt
rbponboarding-admin.redbull.com
linktracking-d.redbull.com
stage-redportqsrmq.redbull.com
jamf-download.redbull.com
festivalguidelines-sso.redbull.com
metra-trialandawareness.redbull.com
off-premise-handwriting.redbull.com
edge2.redbull.com
mob-ras-gateway-vienna-split.redbull.com
mediaworld.redbull.com
@six2dez
six2dez / vps_installer.sh
Last active March 7, 2023 22:11
vps_installer.sh
#!/bin/bash
# Install with
# bash -c "$(curl -fsSL https://gist.github.com/six2dez/09588ab19ac6b360071fe56dd7a41e11/raw)"
dir=~/Tools
mkdir -p $dir
DEBUG_STD="&>/dev/null"
DEBUG_ERROR="2>/dev/null"
bred='\033[1;31m'