Skip to content

Instantly share code, notes, and snippets.

@pisculichi
pisculichi / schemacrawler-sqlite-macos-howto.md
Created January 23, 2019 22:26 — forked from dannguyen/schemacrawler-sqlite-macos-howto.md
How to use schemacrawler to generate schema diagrams for SQLite from the commandline (Mac OS)
@pisculichi
pisculichi / root.sh
Created March 31, 2017 21:12 — 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...";
@pisculichi
pisculichi / pyodeon.py
Last active December 3, 2018 03:19
Dado el identificador de una película, documental o episodio de una serie en odeon.com.ar este script devuelve el enlace de streaming para ser utilizado en reproductores que soporten M3U8 (por ejemplo, VLC).
# -*- coding: utf-8 -*-
from __future__ import print_function
import sys
from collections import namedtuple
try:
# Python 3
from urllib.parse import urlparse, urlunparse, urljoin