Skip to content
python module for hackers
Python
Branch: master
Clone or download

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
bomber
network
rat
web
LICENSE
MANIFEST.in
README.md
__init__.py
hackerman.py
requirements.txt
setup.py

README.md

Hackerman ..

use it for make python hacking scripts .. its so easy

OS Python2.7

The Modules :

Name Description
portscanner Make Portscanner script
whoup Show whoup in Network
xss Xss Reflacted Scanner
sqli SQL INJECTION Scanner
ssti SSTI Scanner
headers Get HTTP Headers
make_payload Make Rat Payload
make_connection Make Connection With Rat Victim
restart restart your script
slow_print print the words in slow mode
dos_attack Make Dos Attack Script
scapy_dos_attack Make Dos Attack Script with scapy

> Rat Features

  • Upload And Download Files

  • Execute os Command

  • Get Victim Address

  • openfile in victim device

  • open url in Victim Browser

  • print message in Victim terminal

  • see who is up on the victim network

  • Take screenshot from victim device

Examples :

  • xss Scanner Script
from hackerman import xss
import sys
def logo():
        print ('''
__  __       _____          ___
\ \/ /___ __|_   _|__   ___ | |
 \  // __/ __|| |/ _ \ / _ \| |
 /  \\__ \__ \| | (_) | (_) | |
/_/\_\___/___/|_|\___/ \___/|_|

[ Coded By : hacker ]
[ version  : 0.1    ]
''')

def getarg():
        global target
        target=sys.argv[1]

logo()
getarg()
xss(target)
  • Run it

    python2 main.py 'http://leettime.net/xsslab1/chalg1.php?name=5*&submit=Search'

  • The Result

    XSS Tool

    Note : Add * in param

    For More scan

    from hackerman import sqli , ssti
    sqli(target) , ssti(target)```
  • Port Scanner Script

from hackerman import portscanner
import sys
def logo():
        print ('''

 _ __  ___  ___ __ _ _ __  
| '_ \/ __|/ __/ _` | '_ \ 
| |_) \__ \ (_| (_| | | | |
| .__/|___/\___\__,_|_| |_|
|_|

[ Coded By : Hacker ]
[ Version  : 0.1    ]

''')

def getarg():
        global ip,port1,port2
        ip=sys.argv[1]
        port1=sys.argv[2]
        port2=sys.argv[3]

logo()
getarg()
portscanner(ip,port1,port2)
  • Run it

    python2 pscan.py 127.0.0.1 80 3306

  • The Result

    Port Scanner Tool

More Examples :

Installation :

Linux alt tag

  • open your terminal

  • enter this command

$ apt install git python2 python2-pip && git clone https://github.com/knassar702/hackerman && cd hackerman && pip2 install -r requirements.txt && python2 setup.py install && echo "from hackerman import slow_print;slow_print('Welcome in Hackerman module .. Good luck :) ..',1)" > first.py && python2 first.py

Andoird

  • Download Termux App

  • Enter this command

$ pkg update && pkg install python2 && pkg install git && pip2 install -r requirements.txt && python2 setup.py install && echo "from hackerman import slow_print;slow_print('Welcome in Hackerman module .. Good luck :) ..',1)" > first.py && python2 first.py

License

GPL-2.0 Licence

You can’t perform that action at this time.