mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-12-15 00:40:58 +00:00
18 lines
269 B
Python
18 lines
269 B
Python
|
|
#!/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
|