Skip to content

Instantly share code, notes, and snippets.

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

⭐ 🐾 vaginessa

🎯
FCK ISRL ☠️
View GitHub Profile
@vaginessa
vaginessa / AdbCommands
Created May 22, 2023 13:33 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@vaginessa
vaginessa / debloatNox.md
Created March 26, 2023 16:49 — forked from Log1x/debloatNox.md
Debloating & Optimizing Nox

Debloating Nox

Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.

  1. Download and Install a fresh copy of Nox. The latest version is fine (for now). If you already have it installed, that is fine too. No need to reinstall.

  2. Enable Root Mode on Nox by clicking the gear icon and then checking the Root Startup box.

  3. Install a new Launcher from the Play Store. ANYTHING but Nox's default. I suggest [Nova Launcher](https://play.google.com/s

@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);
@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:

@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');
@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
@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
@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
@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
@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