social-engineer-toolkit/modules/test_module.readme

19 lines
443 B
Text
Raw Normal View History

2012-12-31 22:11:37 +00:00
# These are required fields
2016-07-22 16:52:36 +00:00
import src.core.setcore as core
# Py2/3 compatibility
# Python3 renamed raw_input to input
try:
input = raw_input
except NameError:
pass
MAIN = " This is a test module"
AUTHOR = " Dave - TrustedSec"
2012-12-31 22:11:37 +00:00
# def main(): header is required
def main():
2016-07-22 16:52:36 +00:00
core.java_applet_attack("https://gmail.com", "443", "reports/")
pause = input(" This module has finished completing. Press <enter> to continue")