python-sploitkit
python-sploitkit copied to clipboard
Devkit for building Metasploit-like consoles
hello when i try to launch dronseploit in my kali linux returning this error dronesploit ``` Traceback (most recent call last): File "/usr/local/bin/dronesploit", line 5, in from dronesploit.__main__ import main...
I tried create an reload command by calling importlib.reload() method but that doesn't work. Does this framework support autoreload after modifying modules? Or we should restart it manully?
How can I save/restore sessions or manipulate with sessions data inside a sessions pool? Is it even possible to change particular session data in pool when session is already saved?...
The current documentation consists of 99% docstrings (No good examples of making modules, commands, etc...). The only good resource for understanding this library is dronesploit, which is hard to understand...
```python #!/usr/bin/python3 # main.py from sploitkit import FrameworkConsole if __name__ == '__main__': FrameworkConsole( "MySploit", # configure your console settings here ).start() ``` **Result**: ``` $ python3 main.py Traceback (most recent...
I am having a hard time tracking down any documents related to the creation and management of modules in the sploitkit framework. Please add more context and details to the...
### Description Sploitkit throws an exception when setting the boolean value `False` or integer `0` for Module Option. When setting `True` it works correctly. Sploitkit version: `sploitkit==0.6.0` Python version: 3.12+...