python-sploitkit icon indicating copy to clipboard operation
python-sploitkit copied to clipboard

Devkit for building Metasploit-like consoles

Results 7 python-sploitkit issues
Sort by recently updated
recently updated
newest added

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...

help wanted

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?

enhancement

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?...

enhancement

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...

enhancement

```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+...

help wanted