mirror of
https://github.com/Cronocide/wifipumpkin3.git
synced 2025-01-23 03:39:18 +00:00
added system commands iptables,ls, clear, nano
This commit is contained in:
parent
d44756b997
commit
f38120e737
@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
## [1.0.0] - 2020-04-02
|
## [1.0.0] - 2020-04-02
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- added system commands iptables,ls, clear, nano [mh4x0f]
|
||||||
- added file manifast.in [mh4x0f]
|
- added file manifast.in [mh4x0f]
|
||||||
- added check must be run as root. [mh4x0f]
|
- added check must be run as root. [mh4x0f]
|
||||||
- added initial logo design tool on README.md [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]
|
- Removed all files *.py compiler. [mh4x0f]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- fixed description plugin responder3 [mh4x0f]
|
||||||
- fixed description all plugin and proxy [mh4x0f]
|
- fixed description all plugin and proxy [mh4x0f]
|
||||||
- fixed dependency of wireless-tools for use iwconfig command [mh4x0f]
|
- fixed dependency of wireless-tools for use iwconfig command [mh4x0f]
|
||||||
- fixed beef parameter hook to url_hook [mh4x0f]
|
- fixed beef parameter hook to url_hook [mh4x0f]
|
||||||
|
@ -47,7 +47,7 @@ class Responder3(MitmMode):
|
|||||||
Name = "Responder 3"
|
Name = "Responder 3"
|
||||||
ID = "responder3"
|
ID = "responder3"
|
||||||
Author = "PumpkinDev"
|
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
|
LogFile = C.LOG_RESPONDER3
|
||||||
ConfigMitmPath = None
|
ConfigMitmPath = None
|
||||||
_cmd_array = []
|
_cmd_array = []
|
||||||
|
@ -21,7 +21,16 @@ dir_of_executable = os.path.dirname(__file__)
|
|||||||
dir_path = os.getcwd()
|
dir_path = os.getcwd()
|
||||||
user_config_dir = os.path.expanduser("~")
|
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/"
|
HELPFILESPATH = user_config_dir + "/.config/wifipumpkin3/helps/"
|
||||||
EXCEPTFILESPATH = user_config_dir + "/.config/wifipumpkin3/exceptions/"
|
EXCEPTFILESPATH = user_config_dir + "/.config/wifipumpkin3/exceptions/"
|
||||||
|
Loading…
Reference in New Issue
Block a user