HackingScripts/__init__.py
2023-12-09 09:37:28 -05:00

13 lines
289 B
Python

import os
import sys
__doc__ = __doc__ or ""
__all__ = [
"util", "fileserver", "xss_handler", "rev_shell",
"xp_cmdshell", "dnsserver", "sqli", "smtpserver",
"upload_file", "pcap_file_extract"
]
inc_dir = os.path.dirname(os.path.realpath(__file__))
sys.path.append(inc_dir)