duplicated files

This commit is contained in:
Mo Langning
2024-02-14 12:24:12 +00:00
parent 9c8ce30b42
commit d0b72e7e31
12 changed files with 11585 additions and 0 deletions
+4
View File
@@ -13,3 +13,7 @@ e.g. target dir is `Passwords/Common-Credentials` and suffix is `-without-curse-
`os-names-mutate.py` mutates `Fuzzing/os-names.txt` to include possible mutations of OS names in a url.
By default this script outputs the results in `Fuzzing/os-names-mutated.txt`
- - -
`xml-parser.py` parses xml files given as arguments and extracts hardcoded tags. It's meant to be modified as per file basis as every xml file format is unique.
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/python3
import os
import sys
import xml.etree.ElementTree as ET
if not sys.argv[1]:
exit(0)
files=sys.argv[1].split(" ")
for i in files:
if not os.path.isfile(i):
print("[!] %s does not exist!"%(i))
exit(2)
for i in files:
ET