From f38120e7370cee947f4301f4934750cb4156855e Mon Sep 17 00:00:00 2001 From: mh4x0f Date: Tue, 14 Apr 2020 15:52:50 -0300 Subject: [PATCH] added system commands iptables,ls, clear, nano --- CHANGELOG.md | 2 ++ wifipumpkin3/core/servers/mitm/responder3.py | 2 +- wifipumpkin3/core/utility/constants.py | 11 ++++++++++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe43ced..691bf31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. ## [1.0.0] - 2020-04-02 ### Added +- added system commands iptables,ls, clear, nano [mh4x0f] - added file manifast.in [mh4x0f] - added check must be run as root. [mh4x0f] - added initial logo design tool on README.md [mh4x0f] @@ -108,6 +109,7 @@ All notable changes to this project will be documented in this file. - Removed all files *.py compiler. [mh4x0f] ### Fixed +- fixed description plugin responder3 [mh4x0f] - fixed description all plugin and proxy [mh4x0f] - fixed dependency of wireless-tools for use iwconfig command [mh4x0f] - fixed beef parameter hook to url_hook [mh4x0f] diff --git a/wifipumpkin3/core/servers/mitm/responder3.py b/wifipumpkin3/core/servers/mitm/responder3.py index b0ab5c7..0d21f7f 100644 --- a/wifipumpkin3/core/servers/mitm/responder3.py +++ b/wifipumpkin3/core/servers/mitm/responder3.py @@ -47,7 +47,7 @@ class Responder3(MitmMode): Name = "Responder 3" ID = "responder3" Author = "PumpkinDev" - Description = "New and improved Responder for Python3" + Description = "LLMNR, NBT-NS and MDNS poisoner, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server " LogFile = C.LOG_RESPONDER3 ConfigMitmPath = None _cmd_array = [] diff --git a/wifipumpkin3/core/utility/constants.py b/wifipumpkin3/core/utility/constants.py index 00342f7..8b91a36 100644 --- a/wifipumpkin3/core/utility/constants.py +++ b/wifipumpkin3/core/utility/constants.py @@ -21,7 +21,16 @@ dir_of_executable = os.path.dirname(__file__) dir_path = os.getcwd() user_config_dir = os.path.expanduser("~") -SYSTEMCOMMAND = ["ifconfig", "iw", "iwconfig", "route"] +SYSTEMCOMMAND = [ + "ifconfig", + "iw", + "iwconfig", + "route", + "iptables", + "ls", + "clear", + "nano", +] HELPFILESPATH = user_config_dir + "/.config/wifipumpkin3/helps/" EXCEPTFILESPATH = user_config_dir + "/.config/wifipumpkin3/exceptions/"