From 7ed722d672e2b12d0e57936613ffc71b46ae618d Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Thu, 24 Dec 2020 18:17:35 -0500 Subject: [PATCH] added run commands sqlmap (sqlmap wizard) and updated for python3 support --- tools/sql_tools.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tools/sql_tools.py b/tools/sql_tools.py index fb13ff4..a466526 100644 --- a/tools/sql_tools.py +++ b/tools/sql_tools.py @@ -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 [] --batch --banner \n " \ + "[!] python3 sqlmap.py -u [] --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 " \