I hereby claim:
- I am brandon15811 on github.
- I am brandon15811 (https://keybase.io/brandon15811) on keybase.
- I have a public key whose fingerprint is 6901 A3FA EFC8 B82A 7FF0 F881 BEA5 04AE 1525 A22D
To claim this, I am signing this object:
| using System.Collections; | |
| using System.Net; | |
| using System.IO.Compression; | |
| using Windows.Management.Deployment; | |
| namespace MSIXInstaller | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |
| #!/usr/bin/env bash | |
| set -x | |
| NS="openvpn" | |
| VETH="vethopenvpn" | |
| VPEER="vpeeropenvpn" | |
| #NS="ns1" | |
| #VETH="veth1" | |
| #VPEER="vpeer1" |
| """ | |
| Setup (requires root on Android device): | |
| pip install frida #(may require root on host machine) | |
| curl -O https://build.frida.re/frida/android/arm/bin/frida-server | |
| adb push frida-server /data/local/tmp/ | |
| adb shell "chmod 755 /data/local/tmp/frida-server" | |
| adb shell "/data/local/tmp/frida-server &" | |
| Usage: |
| #!/bin/bash | |
| if [ -z "$1" ]; then | |
| echo "No file specified" | |
| exit 1 | |
| fi | |
| if [ ! -f "$1" ]; then | |
| echo "File doesn't exist" | |
| exit 1 |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| #Based off of http://code.activestate.com/recipes/491264/ | |
| if [ "$1" == "startserver" ]; then | |
| ncat -u -l 5355 -c $(readlink -f $0) -k | |
| exit | |
| fi | |
| timeout 1s cat /dev/stdin > input | |
| req=$(cat input | xxd -p) | |
| #Functions from http://ubuntuforums.org/showthread.php?t=735140&p=4584216#post4584216 |
| <!-- https://gist.github.com/mahemoff/443933 | |
| This is a Node+WebSocket powered demo to sync videos | |
| across different browsers. This file is the client, | |
| the other one is the Node server. Powered by Node and | |
| https://github.com/einaros/ws --> | |
| <style> | |
| .inactive { display: none; } | |
| .active { display: block; } | |
| </style> |
| local html = | |
| [[ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/codemirror/4.3.0/codemirror.css"> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/codemirror/4.3.0/codemirror.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/codemirror/4.3.0/mode/xml/xml.js"></script> |
| #!/bin/bash | |
| MAGIC='fefd' | |
| SESSIONTYPE='09' | |
| SESSION='01020304' | |
| LONG="0" | |
| while getopts ":l" opt; do | |
| case $opt in |
| #!/bin/bash -xe | |
| nc_running() | |
| { | |
| NC_RUN=$(adb shell busybox ps -w | grep "NCRUN='1'" > /dev/null 2>&1; echo $?) | |
| } | |
| tcpdump_running() | |
| { | |
| TCP_RUN=$(adb shell busybox ps -w | grep -v "NCRUN='1'" | grep 'TCPRUN="1"' > /dev/null 2>&1; echo $?) | |
| } |