Skip to content

Instantly share code, notes, and snippets.

@StoneLabs
Created September 12, 2023 05:56
Show Gist options
  • Save StoneLabs/196e2ebed3d783c1ebaead96d3102db6 to your computer and use it in GitHub Desktop.
Save StoneLabs/196e2ebed3d783c1ebaead96d3102db6 to your computer and use it in GitHub Desktop.
Find all accident reports on train accidents in japan
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