HackingScripts/__init__.py

13 lines
289 B
Python
Raw Permalink Normal View History

import os
import sys
2020-07-12 20:36:14 +02:00
__doc__ = __doc__ or ""
2023-10-05 13:00:16 +02:00
__all__ = [
"util", "fileserver", "xss_handler", "rev_shell",
"xp_cmdshell", "dnsserver", "sqli", "smtpserver",
2023-12-09 15:35:04 +01:00
"upload_file", "pcap_file_extract"
2023-10-05 13:00:16 +02:00
]
inc_dir = os.path.dirname(os.path.realpath(__file__))
sys.path.append(inc_dir)