Skip to content

Instantly share code, notes, and snippets.

View nabn's full-sized avatar
🐚

Navin Khadka nabn

🐚
  • Citro
  • Sydney
  • 22:22 (UTC +10:00)
View GitHub Profile
@nabn
nabn / ReactGame.js
Created January 10, 2018 00:04 — forked from busypeoples/ReactGame.js
ReactGame Example: React + Flow
// @flow
import React from 'react';
import { render } from 'react-dom';
type Field = 0 | 1;
type Position = [Field, Field, Field, Field];
type Unit = [Position, Position, Position, Position];
@nabn
nabn / root.sh
Created October 27, 2016 16:50 — forked from Arinerron/root.sh
"Root" via dirtyc0w privilege escalation exploit (automation script) / Android (32 bit)
#!/bin/bash
# Give the usual warning.
clear;
echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds...";
sleep 10;
clear;
# Download and extract exploit files.
echo "[INFO] Downloading exploit files from GitHub...";