I hereby claim:
- I am jabb3rd on github.
- I am jabberd (https://keybase.io/jabberd) on keybase.
- I have a public key ASAzKXFOP5jnntPXre5gSVHIa5zBtyDFByjDYX8UntE9rQo
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| import urllib3 | |
| import urllib3.contrib.socks | |
| import threading | |
| from queue import Queue | |
| import sys | |
| import argparse | |
| TIMEOUT = 5.0 |
| #!/bin/bash | |
| usage() { | |
| echo "Usage: $(basename $0) <file.creds> [<min> [max]]" | |
| exit 0 | |
| } | |
| [ -f "$1" ] || usage | |
| if [ "$2" == "" ]; then |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # coding=utf-8 | |
| import argparse | |
| import datetime | |
| import sys | |
| import time | |
| import threading | |
| import traceback | |
| import socketserver |
| meta: | |
| id: npk | |
| file-extension: npk | |
| endian: le | |
| seq: | |
| - id: magic | |
| type: u4 | |
| enum: npk_types | |
| - id: npk_size | |
| type: u4 |
| #!/usr/bin/env python3 | |
| # https://github.com/jabberd/winbox | |
| from winbox.common import * | |
| from winbox.session import * | |
| from winbox.service import * | |
| import argparse | |
| from getpass import getpass | |
| def parse_args(): |
| meta: | |
| id: wbx | |
| file-extension: wbx | |
| endian: le | |
| seq: | |
| - id: magic | |
| contents: [0x0f, 0x10, 0xc0, 0xbe] | |
| - id: records | |
| type: record | |
| repeat: eos |
| #!/usr/bin/env python | |
| import json | |
| import sys | |
| asn_file = 'asn.json' | |
| if len(sys.argv) < 2: | |
| print('Usage: %s <name> [country]' % sys.argv[0]) | |
| exit(1) |
| #!/usr/bin/env python | |
| layout = [ | |
| ['1234567890-=', 'qwertyuiop[]', 'asdfghjkl;\'\\', 'zxcvbnm,./'], | |
| ['!@#$%^&*()_+', 'QWERTYUIOP{}', 'ASDFGHJKL:"|', 'ZXCVBNM<>?'] | |
| ] | |
| def get_char(xy, shift = 0): | |
| x, y = xy; | |
| return layout[shift][x][y] |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| def read_config(filename): | |
| config = None | |
| try: | |
| f = open(filename, 'r') | |
| except: |