Unverified Commit 7ed722d6 authored by Greatest125's avatar Greatest125 Committed by GitHub
Browse files

added run commands sqlmap (sqlmap wizard) and updated for python3 support

parent 04c747d1
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -9,16 +9,13 @@ class Sqlmap(HackingTool):
                  "automates the process of \n" \
                  "detecting and exploiting SQL injection flaws and taking " \
                  "over of database servers \n " \
                  "[!] python sqlmap.py -u [<http://example.com>] --batch --banner \n " \
                  "[!] python3 sqlmap.py -u [<http://example.com>] --batch --banner \n " \
                  "More Usage [!] https://github.com/sqlmapproject/sqlmap/wiki/Usage"
    INSTALL_COMMANDS = [
        "sudo git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev"]
    RUN_COMMANDS = ["python3 sqlmap.py --wizard"]
    PROJECT_URL = "https://github.com/sqlmapproject/sqlmap"

    def __init__(self):
        super(Sqlmap, self).__init__(runnable = False)


class NoSqlMap(HackingTool):
    TITLE = "NoSqlMap"
    DESCRIPTION = "NoSQLMap is an open source Python tool designed to \n " \