https://github.com/VISWESWARAN1998/Simple-Yet-Hackable-WhatsApp-api/blob/master/whatsapp.py
https://github.com/bruno222/whatsapp-web-bot
https://github.com/sigalor/whatsapp-web-reveng/blob/master/README.md
Kamis, 12 Desember 2019
Sabtu, 26 Januari 2019
Selasa, 21 Februari 2017
basicRAT
This is a cross-platform Python Remote Access Trojan (RAT), basicRAT
was created to maintain a clean design full-featured Python RAT.
Currently a work in progress and still being actively hacked on.
Disclaimer: This RAT is for research purposes only, and
should only be used on authorized systems. Accessing a computer system
or network without authorization or explicit permission is illegal.
https://github.com/vesche/basicRAT
decompile py2exe
* https://github.com/matiasb/unpy2exe
* https://github.com/NVISO-BE/decompile-py2exe
Senin, 09 Mei 2016
small router snippet
- class Router(object):
- def __init__(self, server):
- self.__routes = []
- self.__server = server
- def addRoute(self, regexp, controller, action):
- self.__routes.append({'regexp': regexp, 'controller': controller, 'action': action})
- def route(self, path):
- for route in self.__routes:
- if re.search(route['regexp'], path):
- cls = globals()[route['controller']]
- func = cls.__dict__[route['action']]
- obj = cls(self.__server)
- apply(func,(obj, ))
- return
- # Not found
- self.__server.send_response(404)
- self.__server.end_headers()
Sabtu, 19 Maret 2016
pupy Remote Administration Tool with an embedded Python interpreter.
LINE mesengger python
Minggu, 07 Februari 2016
python ptrace
Kamis, 24 Desember 2015
PyCat
PyCat
Python Net ToolPycat is a python replacement tool for netcat. That automatically scans for hosts that are up on the local network. Simply run PyCat.py without arguments to automatically start scanning the network. CTRL+C will interrupt scanning and display the options for interacting with hosts that are up.
https://github.com/NullArray/PyCat (Read More..)
Rabu, 30 Juli 2014
pywinauto
pywinauto is a set of python modules to automate the Microsoft Windows GUI. At it’s simplest it allows you to send mouse and keyboard actions to windows dialogs and controls.
http://pywinauto.googlecode.com/hg/pywinauto/docs/index.html
swapy
https://code.google.com/p/swapy/
|
|
Sikuli
Why Sikuli?
Sikuli automates anything you see on the screen. It uses image recognition to identify and control GUI components. It is useful when there is no easy access to a GUI's internal or source code.
http://www.sikuli.org/
Brubek.io
http://brubeck.io/ (Read More..)
flask_bare_skeleton
https://github.com/widnyana/flask_bare_skeleton (Read More..)