This file contains hidden or 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
ngrep -i '[&\s?](?:login|cookie|user(?:name|)|p(ass(?:word|wd|)|w|wd))[\s:=]\s?([^&\s]*)' -deth0 -qt -W byline port 80 |
This file contains hidden or 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 json | |
from sqlalchemy import inspect as sqla_inspect | |
from sqlalchemy.orm.dependency import OneToManyDP, ManyToOneDP | |
from sqlalchemy.exc import NoInspectionAvailable | |
from sqlalchemy.orm.mapper import Mapper | |
from sqlalchemy import Column, String, Integer, create_engine, ForeignKey, inspect | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import sessionmaker, relationship |
This file contains hidden or 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/python3 | |
import inspect | |
from functools import wraps | |
__author__ = "Sander Ferdinand" | |
__credits__ = "Joe Jevnik" | |
__date__ = 2017 | |
def type_police(f): | |
""" |
This file contains hidden or 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
#!/bin/bash | |
# Paste a screenshot taken with `scrot` to https://paste.cedsys.nl. Resulting link will be copied to clipboard. | |
# requires: python-requests, scrot, xclip, libnotify-bin, libnotify-dev | |
echo $(scrot -s -e 'printf $f | | |
python -c "\$\(echo aW1wb3J0IHN5cztpbXBvcnQgcmVxdWVzdHM7YmFzZV91cmkgPSAiaHR0cHM6Ly9wYXN0ZS5jZWRzeXMubmwiO2ZpbGVzID0geyJmaWxlc1tdIjogb3BlbihzeXMuc3RkaW4ucmVhZCgpKX07ciA9IHJlcXVlc3RzLnBvc3QoIiVzL3Bhc3RlIiAlIGJhc2VfdXJpLCBmaWxlcz1maWxlcyk7c3lzLnN0ZG91dC53cml0ZSgiJXMlcy9yYXciICUgKGJhc2VfdXJpLCByLmpzb24oKVsidXJpIl0pKQ== | |
| base64 -d\)" && mv $f ~/screenshots') | | |
xclip -selection clipboard && | |
notify-send -t 1000 $(echo "Pasted (clipboard)") |
This file contains hidden or 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
#!/bin/bash | |
# one-liner to convert ASN to ip addresses. Results will be appended to `ips.out`. [email protected] | 1-7-2017 | |
# requires: apt-get install prips | |
for asn in AS51468 AS37061 AS198810 AS39513; | |
do $(for range in $(echo $(whois -h whois.radb.net -- "-i origin $asn" | grep -Eo "([0-9.]+){4}/[0-9]+") | sed ':a;N;$!ba;s/\n/ /g'); | |
do prips $range >> ips.out; | |
done); | |
done |
This file contains hidden or 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
# Authors: Ingmar Steen / Sander Ferdinand | |
from twisted.internet import defer, task | |
from twisted.web.http_headers import Headers | |
from treq import text_content, request | |
class HttpPool(object): | |
def __init__(self): | |
self._sem = defer.DeferredSemaphore(20) # no more than 20 at once |
NewerOlder