Skip to content
#

hacking-framework

Here are 20 public repositories matching this topic...

phpsploit
nil0x42
nil0x42 commented Oct 3, 2020

Current implementation of proclist plugin uses win32_ps_list_procs() php function on Windows host.

Therefore, linux implementation is a simple system("ps -a"), which is OPSEC unsafe, an would probably trigger EDR alerts.

A better implementation should avoid relying on system command execution.

to be documented stealth good first issue
Lucifer

A Powerful Penetration Tool For Automating Penetration Tasks Such As Local Privilege Escalation, Enumeration, Exfiltration and More... Use Or Build Automation Modules To Speed Up Your Cyber Security Life

  • Updated Oct 16, 2021
  • Python

Botnet framework with modular and extensible architecture, task scheduler, remote shell live sessions and a retro look-feeling interface which makes it funny to use. By now, it includes keylogger, DDoS and bruteforce attacks. The project is still under development phase, I appreciate any contribution :)

  • Updated Aug 2, 2022
  • Python
codeswhite
codeswhite commented Jan 14, 2021

Instead of letting the user a choice, Create a new file automatically to store future

    def _get_wordlist_path(self):
        if self.current:
            return self.current
        pr('Please choose a wordlist')
        return choose_file(self.workspace)

Make it:

    def _get_wordlist_path(self):
        if self.current:
            return self.current
        pr('Cre
good first issue

Improve this page

Add a description, image, and links to the hacking-framework topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the hacking-framework topic, visit your repo's landing page and select "manage topics."

Learn more