An execution framework for systematic strategies

It is very much a work in progress, please don’t expect it to work! Architecture The Django framework ties this project together and so a basic knowledge of Django is very useful if you want to work on this. This has no dependencies on GCP or AWS, a DockerFile is provided as a deployment option. There is also a Makefile with some handy commands to get up and running. Scheduling of tasks uses apscheduler, wrapped in django_apscheduler. There are two […]

Read more

A bot to get Statistics like the Playercount from your Minecraft-Server on your Discord-Server

Hey Thanks for reading me. Warning: My English is not the best I have programmed this bot to show me statistics about the player numbers and ping of my Minecraft server on a Discord server. Yes I love statistics XD. And I thought this bot could be useful for others too. This bot uses Python3 and Discord.py So the Setup is really easy. First install Python3 or make sure it is installed First you have to install all Requirements on […]

Read more

An automated analysis tool used for enumerating ELF binaries

ELFXtract is an automated analysis tool used for enumerating ELF binaries Powered by Radare2 and r2ghidra This is specially developed for PWN challenges and it has many automated features It almost displays every details of the ELF and also decompiles its ASM to C code using r2ghidra Decompiling ELFs in Ghidra takes more time, but in elfxtract it decompiles and displays in few seconds Features in ELFXtract File info Shared object dependency details ELF Security Mitigation details / Checksec String […]

Read more

For facebook hacking(bruteforcing), using gui

For facebook hacking(bruteforcing), using gui #to use this tool on android, do the following on termux. *. apt update *. apt upgrade *. apt install wget *. wget https://gitlab.com/kalilinux/nethunter/build-scripts/kali-nethunter-project/raw/master/nethunter-rootless/install-nethunter-termux *. chmod +x install-nethunter-termux *. ./install-nethunter-termux (After that wait sometimes and if it ask for any kind of permision then give it.) After completing setting up Type…. *. nh kex (first time it must be ask for set password, just set a new password ) Note: if “nh kex” show “no […]

Read more

Make OpenCV camera loops less of a chore by skipping the boilerplate and getting right to the interesting stuff

camloop Forget the boilerplate from OpenCV camera loops and get to coding the interesting stuff Usage This is a simple project developed to reduce complexity and time writing boilerplate code when prototyping computer vision applications. Stop worrying about opening/closing video caps, handling key presses, etc, and just focus on doing the cool stuff! The project was developed in Python 3.8 and tested with physical local webcams. If you end up using it in any other context, please consider letting me […]

Read more

D-dos attack GUI tool written in python using tkinter module

D-dos attack GUI tool written in python using tkinter module #to use this tool on android, do the following on termux. *. apt update *. apt upgrade *. apt install wget *. wget https://gitlab.com/kalilinux/nethunter/build-scripts/kali-nethunter-project/raw/master/nethunter-rootless/install-nethunter-termux *. chmod +x install-nethunter-termux *. ./install-nethunter-termux (After that wait sometimes and if it ask for any kind of permision then give it.) After completing setting up Type…. *. nh kex (first time it must be ask for set password, just set a new password ) Note: […]

Read more

A discord bot that pulls the latest or most relevant research papers from arxiv.org

a discord bot that pulls the latest or most relevant research papers from arxiv.org invite link : Arxiver bot link works in progress pulling the most relevant paper : !best subcommand search-term subcommands summary : provides summary for the paper download : provides pdf download link for the paper pulling the most recent paper : !latest subcommand search-term subcommands summary : provides summary for the paper download : provides pdf download link for the paper GitHub View Github    

Read more

Script to remap minecraft 1.12 java classes

Script to remap minecraft 1.12 java classes. Usage You must have Python installed. You must have the script, mappings, and files / folders in the same directory. Run Script.py and it will begin to remap the files. Can I use this with other minecraft versions? Absolutely! If you replace the 1.12 mappings with another version and run the script, it can also remap other minecraft versions java classes. GitHub View Github    

Read more

A story bot that will scrape stories from r/stories subreddit and convert it into an Audio File

This is a story bot, that will scrape stories from r/stories subreddit and convert it into an Audio File. pip install -r requirements.txt to install all required Packages. First Run Reddit_Scraper.py. This will scrap 300 stories and save it into a json file. Also fill the client_id, client_secret and user_agent. Learn More. Then Run Script_Generator.py. This will take the Json file and select a random story from it and save it in a text file. Finally Run Podcast_Generator.py. This will […]

Read more

Convert json|dict to python object

convert json|dict to python object Setup Example from pyonize import pyonize def example(): deneme = pyonize({“id”:1,”name”:”bilal”,”job”:{“id”:1,”title”:”CTO”}}) print(type(deneme)) print(deneme.name) print(deneme.job) print(deneme.job.title) example() GitHub View Github    

Read more
1 2 3 50