apt-get install libpam0g-dev
download http://www.columbia.edu/kermit/ck90.html
replace 2 changed files
make linux
makefile
DELAY 1000 | |
GUI r | |
DELAY 500 | |
STRING cmd | |
SHIFT CTRL ENTER | |
DELAY 1000 | |
LEFT | |
ENTER | |
DELAY 1000 |
import os | |
def menu(): | |
print(""" | |
████████╗ ██████╗ ██████╗ ██╗ ███████╗ | |
╚══██╔══╝██╔═══██╗██╔═══██╗██║ ██╔════╝ | |
██║ ██║ ██║██║ ██║██║ ███████╗ | |
██║ ██║ ██║██║ ██║██║ ╚════██║ | |
██║ ╚██████╔╝╚██████╔╝███████╗███████║ |
#include <SPI.h> | |
#include <Wire.h> | |
#include <Adafruit_GFX.h> | |
#include <Adafruit_SSD1306.h> | |
#define SCREEN_WIDTH 128 // OLED display width, in pixels | |
#define SCREEN_HEIGHT 64 // OLED display height, in pixels | |
#define OLED_RESET 4 // Reset pin # (or -1 if sharing Arduino reset pin) | |
#define SCREEN_ADDRESS 0x3C ///< See datasheet for Address; 0x3D for 128x64, 0x3C for 128x32 |
#! python 3 | |
import re | |
import pyperclip | |
# Create regex for phone numbers | |
phone_num_regex = re.compile(r''' | |
# 415-555-0000, 555-0000, (415) 555-0000, 555-0000 ext 12345, ext. 12345, x12345 | |
( |
apt-get install libpam0g-dev
download http://www.columbia.edu/kermit/ck90.html
replace 2 changed files
make linux
makefile
<!DOCTYPE html> | |
<html lang="pt" id="facebook" class="no_js"> | |
<head><meta charset="utf-8" /><meta name="referrer" content="origin-when-crossorigin" id="meta_referrer" /><script>window._cstart=+new Date();</script><script>function envFlush(a){function b(b){for(var c in a)b[c]=a[c]}window.requireLazy?window.requireLazy(["Env"],b):(window.Env=window.Env||{},b(window.Env))}envFlush({"ajaxpipe_token":"AXiW1bVHWHam1Ztq","timeslice_heartbeat_config":{"pollIntervalMs":33,"idleGapThresholdMs":60,"ignoredTimesliceNames":{"requestAnimationFrame":true,"Event listenHandler mousemove":true,"Event listenHandler mouseover":true,"Event listenHandler mouseout":true,"Event listenHandler scroll":true},"isHeartbeatEnabled":true,"isArtilleryOn":false},"shouldLogCounters":true,"timeslice_categories":{"react_render":true,"reflow":true},"sample_continuation_stacktr aces":true,"dom_mutation_flag":true,"khsh":"0`sj`e`rm`s-0fdu^gshdoer-0gc^eurf-3gc^eurf;1;enbtldou;fduDmdldourCxO`ld-2YLMIuuqSdptdru;qsnunuxqd;rdoe-0unjdojnx-0unjdojnx0-0gd |
# Original project https://github.com/alexisrozhkov/extract_media_from_backup | |
import os | |
import shutil | |
import sqlite3 | |
import argparse | |
# http://stackoverflow.com/questions/12517451/python-automatically-creating-directories-with-file-output | |
def copy_file_create_subdirs(src_file, dst_file): |
-- more info http://aaron-hoffman.blogspot.com/2017/02/iphone-text-message-sqlite-sql-query.html | |
select | |
m.rowid | |
,coalesce(m.cache_roomnames, h.id) ThreadId | |
,m.is_from_me IsFromMe | |
,case when m.is_from_me = 1 then m.account | |
else h.id end as FromPhoneNumber | |
,case when m.is_from_me = 0 then m.account | |
else coalesce(h2.id, h.id) end as ToPhoneNumber | |
,m.service Service |
#!/usr/bin/python | |
# | |
# A very simple python-pcapy example for monitor mode WiFi sniffing. | |
# | |
# Usage example: | |
# $ python pcapySniffer.py mon0 | |
import pcapy | |
import sys | |
import os |
######################################################################### | |
# Wifiscanner.py - A simple python script which records and logs wifi probe requests. | |
# Author - D4rKP01s0n | |
# Requirements - Scapy and Datetime | |
# Inspiration - Tim Tomes (LaNMaSteR53)'s WUDS https://bitbucket.org/LaNMaSteR53/wuds/ | |
# Reminder - Change mon0 (around line 65) to your monitor-mode enabled wifi interface | |
######################################################################### | |
from datetime import datetime |