Skip to content

Instantly share code, notes, and snippets.

View vaginessa's full-sized avatar
🎯
FCK ISRL ☠️

⭐ 🐾 vaginessa

🎯
FCK ISRL ☠️
View GitHub Profile
@gbaman
gbaman / HowToOTG.md
Last active June 24, 2024 16:18
Simple guide for setting up OTG modes on the Raspberry Pi Zero

Raspberry Pi Zero OTG Mode

Simple guide for setting up OTG modes on the Raspberry Pi Zero - By Andrew Mulholland (gbaman).

The Raspberry Pi Zero (and model A and A+) support USB On The Go, given the processor is connected directly to the USB port, unlike on the B, B+ or Pi 2 B, which goes via a USB hub.
Because of this, if setup to, the Pi can act as a USB slave instead, providing virtual serial (a terminal), virtual ethernet, virtual mass storage device (pendrive) or even other virtual devices like HID, MIDI, or act as a virtual webcam!
It is important to note that, although the model A and A+ can support being a USB slave, they are missing the ID pin (is tied to ground internally) so are unable to dynamically switch between USB master/slave mode. As such, they default to USB master mode. There is no easy way to change this right now.
It is also important to note, that a USB to UART serial adapter is not needed for any of these guides, as may be documented elsewhere across the int

@vaginessa
vaginessa / 1f.rb
Created December 21, 2016 20:42 — forked from Konstantinusz/1f.rb
1fichier.com premium download script
#!/usr/bin/ruby
#http://premium-leechers.blogspot.com
require "cgi"
require "clipboard"
if ARGV.size != 3 then
STDERR.puts "premium-leechers.blogspot.com"
STDERR.puts "1fichier premium downloader script."
STDERR.puts "Usage: ruby 1f <email> <password> <txt file with links|1fichier link|'clipboard'>"
exit
@Thealexbarney
Thealexbarney / 1_Non-Nightlies
Last active April 21, 2024 10:34
CyanogenMod Downloads
http://oss.reflected.net/jenkins/146436/cm-12.1-20160127-SNAPSHOT-YOG7DAO3J1-obake.zip
http://oss.reflected.net/jenkins/129246/cm-12.1-20151007-SNAPSHOT-YOG4PAO332-flounder.zip
http://oss.reflected.net/jenkins/124145/cm-12.1-20150901-SNAPSHOT-YOG4PAO23E-vs985.zip
http://oss.reflected.net/jenkins/115613/cm-11-20150626-SNAPSHOT-XNG3CAO1L6-acclaim.zip
http://oss.reflected.net/jenkins/175002/cm-13.0-20160819-SNAPSHOT-ZNH5YAO0IA-klteduos.zip
http://oss.reflected.net/jenkins/153948/cm-13.0-20160316-SNAPSHOT-ZNH0EAO1QD-kipper.zip
http://oss.reflected.net/jenkins/174534/cm-13.0-20160816-SNAPSHOT-ZNH5YAO0F9-huashan.zip
http://oss.reflected.net/jenkins/124006/cm-11-20150901-SNAPSHOT-XNG3CAO3G2-tf701t.zip
http://oss.reflected.net/jenkins/124146/cm-12.1-20150901-SNAPSHOT-YOG4PAO23E-xt897.zip
http://oss.reflected.net/jenkins/135180/cm-12.1-20151117-SNAPSHOT-YOG7DAO1KI-d800.zip
@spacehuhn
spacehuhn / arduino_flash_esp8266.md
Last active January 16, 2024 18:14
Flash ESP8266 over an Arduino

How to flash your ESP8266 without a USB-Serial adapter but with an Arduino.

First be sure everything is connected correcly:

Arduino ESP82666
TX RX
RX TX
GND GND
GND GPIO-15
@exhesham
exhesham / Network Kit (Ping & Scan)
Last active November 16, 2023 02:56
This is the code for the android app named Network Kit (Ping & Scan)You can find the app in this link:https://play.google.com/apps/publish/?dev_acc=00133172886064494147#AppDashboardPlace:p=network.hesham.pinger
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
@vaginessa
vaginessa / Pi.txt
Created April 4, 2017 09:17 — forked from jgamblin/Pi.txt
PoisonTap Install Commands
##Server:
sudo apt-get update && apt-get upgrade
sudo apt-get install screen nodejs nodejs-legacy git npm
sudo npm install websocket
git clone https://github.com/samyk/poisontap
screen
sudo node backend_server.js
##piZero:
sudo apt-get update && apt-get upgrade
@Tithen-Firion
Tithen-Firion / openload.js
Last active November 20, 2021 15:14
Openload: extract download URL using PhantomJS
// Usage: phantomjs openload.js <video_url>
// if that doesn't work try: phantomjs --ssl-protocol=any openload.js <video_url>
var separator = ' | ';
var page = require('webpage').create(),
system = require('system'),
id, match;
if(system.args.length < 2) {
console.error('No URL provided');
@spacehuhn
spacehuhn / startwlan.md
Last active January 16, 2024 18:17
little bash script to enable monitor mode

Some wireless cards support monitor mode but won't work with airmon-ng. This is a little script helps you turning the monitor mode on! (+ it also sets the channel and the tx-power)

Usage: startWlan.sh [Interface:wlan0] [Channel:1] [Txpower:30] [Bandwidth:HT20|HT40+|HT40-]

Examples:
./startWlan.sh - enables monitor mode on wlan0, sets channel to 1 and tx-power to 30dBm.
./startWlan.sh wlan1 11 33 - enables monitor mode on wlan1, sets channel to 11 and tx-power to 33dBm.
./startWlan.sh wlan0 6 - enables monitor mode on wlan0, sets channel to 6 and tx-power to 30dBm.

Script:

@davedarko
davedarko / deauther_killer.ino
Created January 16, 2018 17:20
Arduino Script to auto connect to deauthers by spacehuhn with standard passwords and replaces them with whatever you want.
#include <ESP8266WiFi.h>
WiFiClient client;
const char* ssid = "pwned";
const char* password = "deauther";
const char* host = "192.168.4.1";
void setup()
{
Serial.begin(115200);
De-Brick Redmi Note 8 And Unlock Bootloader From EDL
After Flashing Wrong FW (Screen Flashing) Or Whatever Gives You HardBrick
From Linux .....
Install QDL >
https://www.96boards.org/documentation/consumer/guides/qdl.md.html
git clone https://git.linaro.org/landing-teams/working/qualcomm/qdl.git QDL-ENG-Ginkgo
cd QDL-ENG-Ginkgo ; make ; cd -