I hereby claim:
- I am byt3bl33d3r on github.
- I am byt3bl33d3r (https://keybase.io/byt3bl33d3r) on keybase.
- I have a public key whose fingerprint is F875 2C5D DC1B 9EB1 9073 C30D A2A9 C1F5 F948 B62B
To claim this, I am signing this object:
#! /usr/bin/env python | |
from configobj import ConfigObj | |
import sys | |
import StringIO | |
import re | |
from pprint import pprint | |
if len(sys.argv) < 3: | |
print 'Usage: ducky-convert.py <keyboard.properties> <layout.properties>' |
#! /usr/bin/env python | |
import sys | |
import re | |
import os | |
from decimal import Decimal #for conversion milliseconds -> seconds | |
if len(sys.argv) < 2: | |
print 'Usage: duck-hunter.py <duckyscript> output.txt' | |
#print 'Usage: duck-hunter.py <duckyscript> <language> output.txt' |
#! /usr/bin/env python2.7 | |
from scapy.all import * | |
from netfilterqueue import NetfilterQueue | |
def modify(packet): | |
pkt = IP(packet.get_payload()) #converts the raw packet to a scapy compatible string | |
#modify the packet all you want here |
I hereby claim:
To claim this, I am signing this object:
#! /usr/bin/env python2 | |
import requests | |
import lxml.html | |
import sys | |
r = requests.get(sys.argv[1]) | |
tree = lxml.html.fromstring(r.text) | |
try: |
I hereby claim:
To claim this, I am signing this object:
import sys | |
ps_shellcode = '@(' | |
with open(sys.argv[1], 'rb') as shellcode: | |
byte = shellcode.read(1) | |
while byte != '': | |
ps_shellcode += '0x{}, '.format(byte.encode('hex')) | |
byte = shellcode.read(1) |
import shodan | |
import sys | |
from shodan import APIError | |
from netaddr import IPNetwork | |
SHODAN_API_KEY= 'APIKEY' | |
api = shodan.Shodan(SHODAN_API_KEY) | |
targets = map(IPNetwork, sys.argv[1].split(',')) |
using System; | |
using IronPython.Hosting; | |
using IronPython.Modules; | |
//using IronPython.Runtime; | |
using System.IO; | |
using System.Linq; | |
using System.Reflection; | |
using Microsoft.Scripting.Hosting; | |
using Microsoft.Scripting.Utils; | |
using System.Collections.Generic; |
from System.IO import MemoryStream | |
from System.Text import Encoding | |
from System.Security.Cryptography import Aes, AsymmetricAlgorithm, CryptoStream, CryptoStreamMode | |
class DiffieHellman: | |
def __init__(self): | |
self.aes = Aes.Create() | |
self.diffieHellman = AsymmetricAlgorithm.Create("ECDiffieHellmanCng") | |
self.PublicKey = self.diffieHellman.PublicKey.ToByteArray() |