#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from core.compatible import check_dependencies
"""
entry point of OWASP Nettacker framework
"""

# __check_external_modules created to check requirements before load the engine
if __name__ == "__main__":
    check_dependencies()  # check for dependencies

    # if dependencies and OS requirements are match then load the program
    from core.parse import load

    load()  # load and parse the ARGV
    # sys.exit(main())
Beispiel #2
0
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from core.load_modules import __check_external_modules
from core.parse import load

if __name__ == "__main__" and __check_external_modules():
    load()