This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import struct | |
import shutil | |
import subprocess | |
class macho_intel32_shellcode(): | |
""" | |
Mach-O Intel x32 shellcode class | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Kickstart an Ubuntu image | |
# - 2 network interfaces, and internal and external | |
# - forward all traffic from internal -> external | |
# - Log all traffic using the SiLK netflow package to /data | |
# - Log all DNS traffic as pcaps in /var/log/ulogd | |
# - Backup all netflow and dns to an external server | |
# | |
# Before using this kickstart script, search and replace 'kyoder' with your username | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def exploitCheck(): | |
# Shout out to Bernardo Damele for letting me use this code! Thanks again! | |
# Check out his blog at http://bernardodamele.blogspot.com | |
exploitdb_url = "http://www.exploit-db.com/exploits" | |
enlightenment_url = "http://www.grsecurity.net/~spender/enlightenment.tgz" | |
print "[+] Results for local kernel version %s" % kernel | |
found_exploit = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# with help and inspiration from | |
# * ASN1_generate_nconf(3) (specifically the SubjectPublicKeyInfo structure) | |
# * http://www.sysmic.org/dotclear/index.php?post/2010/03/24/Convert-keys-betweens-GnuPG%2C-OpenSsh-and-OpenSSL | |
# * http://blog.oddbit.com/2011/05/converting-openssh-public-keys.html | |
import sys | |
import base64 | |
import struct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Delete promoted tweets | |
// @namespace kyoder | |
// @include *mobile.twitter.com/* | |
// @include *m.twitter.com/* | |
// @include *.twitter.com/* | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @version 1 | |
// @grant none |