Skip to content

Instantly share code, notes, and snippets.

@Lopi
Lopi / narnia output
Last active November 11, 2016 00:46
Learning pwntools via OverTheWire Narnia WarGame
-> % python solve_narnia.py
[+] Connecting to narnia.labs.overthewire.org on port 22: Done
[+] Downloading '/narnia/narnia0.c': Found '/games/narnia/narnia0.c' in ssh cache
[+] Downloading '/narnia/narnia0.c' to 'narnia0.c': Found '/games/narnia/narnia0.c' in ssh cache
[*] Displaying code momentarily...
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
@Lopi
Lopi / da_667_threat.py
Last active June 15, 2016 17:21
Simple python script to parse ip addresses from da_667 threat-tracking list timeline tweets
#!/usr/bin/env python
import tweepy
import re
# Twitter API keys and tokens
consumer_key = ""
consumer_secret = ""
access_token = ""
access_token_secret = ""
@Lopi
Lopi / idb_install.sh
Created September 18, 2014 18:54
Kali Linux: idb Install script
apt-get install cmake libqt4-dev git-core libimobiledevice-utils libplist-utils usbmuxd -y
curl -sSL https://get.rvm.io | bash -s stable --ruby
source /usr/local/rvm/scripts/rvm
rvm use 2.1
mkdir ~/iOS && cd ~/iOS
git clone --recursive https://github.com/dmayer/idb.git
cd idb
bundle install
echo "Type 'ruby gidb.rb' to use idb's graphical user interface"