added system commands iptables,ls, clear, nano

This commit is contained in:
mh4x0f 2020-04-14 15:52:50 -03:00
parent d44756b997
commit f38120e737
3 changed files with 13 additions and 2 deletions

View File

@ -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]

View File

@ -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 = []

View File

@ -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/"