Created
September 12, 2023 05:56
-
-
Save StoneLabs/196e2ebed3d783c1ebaead96d3102db6 to your computer and use it in GitHub Desktop.
Find all accident reports on train accidents in japan
This file contains hidden or 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
with open("wc.lst", "w") as wordlist: | |
for year in range(2003, 2024): | |
for month in range(1,13): | |
for num in range(1, 20): | |
wordlist.write(f"RA{year}-{month}-{num}\n") | |
#gobuster fuzz -w wc.lst -u https://www.mlit.go.jp/jtsb/railway/rep-acci/FUZZ.pdf --excludestatuscodes 404 -o out.lst |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment