Skip to content

Instantly share code, notes, and snippets.

View johnsaigle's full-sized avatar
👹

John Saigle johnsaigle

👹
  • Asymmetric Research
View GitHub Profile
@johnsaigle
johnsaigle / namemash.py
Created December 16, 2021 01:30 — forked from superkojiman/namemash.py
Creating a user name list for brute force attacks.
#!/usr/bin/env python
import sys
import os.path
if __name__ == "__main__":
if len(sys.argv) != 2:
print("usage: {} names.txt".format((sys.argv[0])))
sys.exit(0)
if not os.path.exists(sys.argv[1]):
@johnsaigle
johnsaigle / extract_mapjs.php
Created March 15, 2021 19:39 — forked from Sturtuk/extract_mapjs.php
Extract source code & directories from the javascript .map files
<?php
/**
* Created by PhpStorm.
* User: edwinsturt
* Date: 2020-06-24
* Time: 00:45
*/
$file = 'main.ff0058ad.js.map';