Yolo object detection with python

download required files make build_image make download Docker version install dockerhttps://docs.docker.com/desktop/mac/install/ build image to run object detection run with docker image # make run.simple {target-file} {output-file-name} make run.simple FILENAME=data/kite.jpg OUTPUTFILENAME=kite_observed.jpg conda version install conda https://ikaros79.tistory.com/entry/Mac%EC%97%90%EC%84%9C-%EC%95%84%EB%82%98%EC%BD%98%EB%8B%A4-%EC%84%A4%EC%B9%98%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95 build conda env make conda.build.env run virtual environment conda activate yolo_python run following commands image #python detect_simple.py {image dir} {output-file-name} python detect_simple.py ./data/kite.jpg kite_observed.jpg video

Read more

A visual J1850 VPW analyzer written in Python

A visual J1850 VPW analyzer written in Python Requires Tkinter, Pandas, serial, and Python3These can be installed with pip or a package manager. pip3 install tk pandas serial Running the program is as simple as pointing the python3 executable to the vpw_analyzer.py file with Any ELM327 device should be compatible with this, as it uses only basic AT commands to listen to the bus. You need to enter the serial port into the “OBD Device Serial Port” box. For Windows, […]

Read more

Advanced Keylogger in Python

Important Disclaimer: The author will not be held responsible for the abuse of this program. This is only intended for educational purposes. How to use: Install Python version 3 on your computer from https://python.org. Make sure you install the pip package manager (it should be an option that the Python installer gives). Download the file and open it up in a text editor. Install all the necessary packages the program uses using Pip. You can find these packages at the […]

Read more

A simple Wordle puzzle solver in python

A simple search-based puzzle solver for Wordle, built in Python. Inspired by and tested using @adjusa’s clone, Hyperwordle. By default, this uses a small dictionary (~2,500 5-letter words), and can’t find solutions outside the given list. Youcan optionally switch to the complete English dictionary provided by @dwyl(~16k 5-letter words), which is more comprehensive than the dictionary used by official Wordle and related puzzles. Thismeans that while your chance of having the answer in the dictionary are high, you may be […]

Read more

Python exploit code for CVE-2021-4034 (pwnkit)

Python3 code to exploitCVE-2021-4034(PWNKIT).This was an exercise in “can I make this work in Python?”, and not meantas a robust exploit. It Works For Me, there are problaby bugs. The default payload starts a shell as root, generated from msfvenom: msfvenom -p linux/x64/exec -f elf-so PrependSetuid=true | base64 I’ve tested linux/x64/shell_reverse_tcp as well. Make sure you includethe PrependSetuid=true argument to msfvenom, otherwise you’ll just geta shell as the user and not root. The code is cribbed from blasty, the orginal […]

Read more

A simple script to add application command support to discord.py v2.0

This is written by an official discord.py helper to try and stop people using third party forks or otherwise. If any help is required, please ping Maya#9000 in one of the help channels. To any other helpers reading this, this script is exempt from rule 14. Installation BEFORE ANYTHING You must install discord.py 2.0 from GitHub: pip install -U git+https://github.com/Rapptz/discord.py This script will NOT work without it. See this message for more information on discord.py 2.0 Go to the slash_util.py […]

Read more

ThorFI: A Novel Approach for Network Fault Injection as a Service

ThorFI: a Novel Approach for Network Fault Injection as a Service This repo includes ThorFI, a novel fault injection solution for virtual networks in cloud computing infrastructures. ThorFI is designed to provide non-intrusive fault injection capabilities for a cloud tenant, and to isolate injections from interfering with other tenants on the infrastructure. Currently, ThorFI supports OpenStack cloud management platform.ThorFI details are reported into the paper “ThorFI: a Novel Approach for Network Fault Injection as a Service” accepted for publication in […]

Read more

A little script for playing wordle

My goofy little script for playing wordle. It actually runs really slowly at first but once you’ve added some info (e.g. which letters are green, yellow, black) it goes much faster. The reason it’s slow at first is the heuristic is expensive (see below). There are two files: wordledict.py does nothing but load the list of winning words and possible words (these I just extracted from the Javascript on the site itself) find_cands.py uses the word lists to eliminate and […]

Read more
1 253 254 255 256 257 928