You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# use the network tab in chrome devtools, clear it before loading the game, and when all assets have finished being requested, press the Export HAR button (looks like download)
# then, use this script like so (this is an example): python3 dehar.py example.com.har outputdirectory/
import os, sys, subprocess
banned = [] #[".php", ".asp"]
infile = sys.argv[1]
outdir = sys.argv[2]
input = open(infile, "r").read().splitlines()
lis2 = []
for x in input:
if ('"url"' in x) and not(any(i in x for i in banned)):