1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

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

This commit is contained in:
Greatest125
2020-12-24 18:17:35 -05:00
committed by GitHub
parent 04c747d121
commit 7ed722d672

View File

@ -9,16 +9,13 @@ class Sqlmap(HackingTool):
"automates the process of \n" \ "automates the process of \n" \
"detecting and exploiting SQL injection flaws and taking " \ "detecting and exploiting SQL injection flaws and taking " \
"over of database servers \n " \ "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" "More Usage [!] https://github.com/sqlmapproject/sqlmap/wiki/Usage"
INSTALL_COMMANDS = [ INSTALL_COMMANDS = [
"sudo git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev"] "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" PROJECT_URL = "https://github.com/sqlmapproject/sqlmap"
def __init__(self):
super(Sqlmap, self).__init__(runnable = False)
class NoSqlMap(HackingTool): class NoSqlMap(HackingTool):
TITLE = "NoSqlMap" TITLE = "NoSqlMap"
DESCRIPTION = "NoSQLMap is an open source Python tool designed to \n " \ DESCRIPTION = "NoSQLMap is an open source Python tool designed to \n " \