All in One: Exploring Unified Video-Language Pre-training

Code for the paper: All in One: Exploring Unified Video-Language Pre-training Arxiv Install 1. PytorchLighting In this work, we use PytorchLighting for distributed training with mixed precision.Install pytorch and PytorchLighting first. conda create -n allinone python=3.7 source activate allinone conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch cd [Path_To_This_Code] pip install -r requirements.txt 2. On-the-fly decode To speed up the pre-training, we adopt on-the-fly decode for fast IO.Install ffmpeg and pytorchvideo (for data augmentation) as below.

Read more

A mix between GitOps and FAAS to create data pipelines on Kubernetes

A mix between GitOps and FAAS to create data pipelines on Kubernetes Gitfaas allows you to apply Kubernetes manifests by making HTTP requests. Even though it can apply anything it focuses on making pipelines of long running jobs that can start other jobs themselves. It’s the perfect match to create data pipelines (Collect, uncompress, convert data, etc.). Gitfaas acts like a GitOps technology would (Weave, Argo) by pulling a git repository. Any updates made to this repository will get reflected […]

Read more

SSEPy: Implementation of searchable symmetric encryption in pure Python

Searchable symmetric encryption, one of the research hotspots in applied cryptography, has continued to be studied for two decades. A number of excellent SSE schemes have emerged, enriching functionality and optimizing performance. However, many SSE schemes have not been implemented concretely and are generally stuck in the prototype implementation stage, and worse, most SSE schemes are not publicly available in source code. Based on this foundation, this project first implements SSE schemes (first single-keyword, then multi-keyword) published in top conferences […]

Read more

A python3 script searching for secret on swaggerhub

A python3 script searching for secret on swaggerhub Introduction • Requirements • Installation • Usage • Output explanation • Thanks Introduction This tool is made to automate the process of retrieving secrets in the public APIs on swaggerHub. This tool is multithreaded and pipe mode is available 🙂 Requirements python3 (sudo apt install python3) pip3 (sudo apt install python3-pip) Installation or cloning this repository and running git clone https://github.com/Liodeus/swaggerHole.git pip3 install . Usage

Read more

This project serve HTML files saved in your computer with a UI suitable for Kindle web browser

I save articles into HTML files with TagSpaces or SingleFile to read them later but I could not find a way to serve them easily to a Kindle Paperwhite and read them there. This project serve HTML files (and a few more) saved in your computer with a UI suitable for Kindle web browser. On top of that, it include a Read Mode (thanks to ReadabiliPy) to display the text in a comfortable size without have to use the ‘Article […]

Read more

Automated capturing of WPA & WPA2 password Hashes

Automated capturing & sorting of WPA & WPA2 password Hashes using hashcat & hcxdumptool. Automatically creates file with wifi name & captured hash of matching mac addresses. to delete files in terminal -> sudo rm -R WifiSweep/session name Make sure your wifi adapter supports monitor mode. hashcat -m 22000 -o Solis-pass Solis.hc22000 /usr/share/wordlists/rockyou.txt #For brute-force crackinghashcat -m 22000 hash.hc22000 -a 3 ?d?d?d?d?d?d?d?d hashcat -m 22000 hash.hc22000 -a 3 –increment –increment-min 8 –increment-max 18 ?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d more info about hashcat : https://hashcat.net/hashcat/more […]

Read more

Fast and reliable python script that makes active and/or passive scan to obtain subdomains and search for open ports

Check the Spanish Version Dome is a fast and reliable python script that makes active and/or passive scan to obtain subdomains and search for open ports. This tool is recommended for bug bounty hunters and pentester in their reconnaissance phase. the more surface area exposed the faster a rock with break down If you want to use more OSINT engines, fill the config.api file with the needed API tokens Passive Mode: Use OSINT techniques to obtain subdomains from the target. […]

Read more

Auto Bump Discord with only your token

📊 Auto Bump Discord with only your token with a beautiful interface.. Dependencies ⭐️ PyStyle🌙 Requests Screenshots Interface: Tutorial 1. Start the program with launch.bat.2. Write your token (No risks to token grab just look at the code). – To get your token: https://www.youtube.com/watch?v=LnBnm_tZlyU3. Write the channel id where the message will be sent.4. Write the command you want to send automaticly.5. Enjoy your auto bump ! GitHub View Github    

Read more
1 199 200 201 202 203 928