I hereby claim:
- I am nv1t on github.
- I am nv1t (https://keybase.io/nv1t) on keybase.
- I have a public key whose fingerprint is 083F 9BF3 7C3B 3262 62AF 397D 09CF F87B 70EC 6E70
To claim this, I am signing this object:
| import sys | |
| import os | |
| import requests | |
| import subprocess | |
| import urllib3 | |
| urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | |
| param=sys.argv[1] | |
| baseUrl = "https://media.niu.de/magazines/%s" % (param) |
| import numpy as np | |
| import sys | |
| import os | |
| import cv2 | |
| import shutil | |
| log = open('log.txt','a') | |
| img = cv2.imread(sys.argv[1],1) | |
| origimg = img | |
| height, width, channels = img.shape |
| #!/bin/bash | |
| URL="http://shop.ritter-sport.de/b2c/schokolade/social-media-limited-edition/einhorn.html" | |
| SITE=$(curl -s "${URL}") | |
| if echo "${SITE}" | grep "out-of-stock" > /dev/null 2> /dev/null; then | |
| echo "OK: Sckokolade ist immer noch ausverkauft"; | |
| exit 0; | |
| fi; |
| import sys | |
| import time | |
| import usb.core | |
| import usb.util | |
| class pyMouse(object): | |
| def __init__(self,vendor,product): | |
| self.device = usb.core.find(idVendor=vendor, idProduct=product) | |
| if self.device is None: | |
| raise Exception("Couldn't find device %sx%s" %(vendor,product)) |
| #!/usr/env python | |
| ############################################################################################################### | |
| ## [Title]: linuxprivchecker.py -- a Linux Privilege Escalation Check Script | |
| ## [Author]: Mike Czumak (T_v3rn1x) -- @SecuritySift | |
| ##------------------------------------------------------------------------------------------------------------- | |
| ## [Details]: | |
| ## This script is intended to be executed locally on a Linux box to enumerate basic system info and | |
| ## search for common privilege escalation vectors such as world writable files, misconfigurations, clear-text | |
| ## passwords and applicable exploits. |
I hereby claim:
To claim this, I am signing this object:
| function poodle() { HOST=$1;PORT=$2;NAME=$(host $1 |cut -d " " -f 5 | tr "\n" ' '| grep -v NXDOMAIN);timeout 1 openssl s_client -connect $HOST:$PORT -ssl3 2> /dev/null > /dev/null; if [[ $? == 124 ]]; then echo "FAIL: ${HOST}:${PORT} - ${NAME}"; else echo "OK: ${HOST}:${PORT} - ${NAME}"; fi; } | |
| PORT=$2; RANGE=$1; zmap -p ${PORT} -o /tmp/zmap.results.${PORT}.csv -B 10M $RANGE | |
| for i in $(cat /tmp/zmap.results.${PORT}.csv | sort -t . -k 3,3n -k 4,4n); do poodle $i $PORT; done; |
| #!/bin/bash | |
| # This is a script to create a video from series of JPEG images | |
| # Call it in a folder full of JPEGs that you want to turn into a video. | |
| # Written on 2013-01-08 by Philipp Klaus <philipp.l.klaus →AT→ web.de>. | |
| # Check <https://gist.github.com/4572552> for newer versions. | |
| # Modified Version from: nv1t (coz of many image files) | |
| # Resources | |
| # * http://www.itforeveryone.co.uk/image-to-video.html |
| import sys | |
| import cartopy.crs as ccrs | |
| import cartopy.io.shapereader as shpreader | |
| import matplotlib.pyplot as plt | |
| import json | |
| # Downloaded from http://biogeo.ucdavis.edu/data/gadm2/shp/DEU_adm.zip | |
| fname = 'DEU_adm1.shp' | |