Last active
September 2, 2021 19:43
-
-
Save foo0x29a/4fb2f369ec6a00e3bae750f31204d8c3 to your computer and use it in GitHub Desktop.
Create links from Sublist3r
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python sublist3r.py -n -d domain.com | tee domain.com \ | |
&& awk '{print "<li><a href=\"https://"$1"\">"$1"</a></li>" }' domain.com > links.html | |
# gitleaks | |
curl https://api.github.com/orgs/line/repos?per_page=100 | jq ".[].html_url" | tr -d \" > repos.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment