Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

{
"randomize": {
"0": "chrome"
},
"browsers": {
"chrome": [
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36",
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36",
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
def download_stream(video_url, video_name):
with open(video_name, 'wb') as handle:
response = requests.get(video_url, stream=True)
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import os
import tarfile
import datetime
def get_time_string():
d = datetime.datetime.now()
@p3t3r67x0
p3t3r67x0 / scan.md
Last active January 11, 2018 10:59
GET /ccvv
GET /index.action

Tomcat 5.0.x status servlet

GET /status?full=true
0
000
01
010
02
03
080
09
1
10
#!/usr/bin/env python
import sys
import socket
def load_document(filename):
with open(filename, 'rb') as f:
return f.readlines()
#!/usr/bin/env python
# -!- coding:utf-8 -!-
import os
from twython import Twython
from twython.exceptions import TwythonError
def get_secrets():

Project Gutenberg

Here you find a list to books in project gutenberg. You can parse these content to build yourself a wordlist.

http://www.gutenberg.org/ebooks/2423.txt.utf-8
http://www.gutenberg.org/ebooks/36538.txt.utf-8
http://www.gutenberg.org/ebooks/12121.txt.utf-8
http://www.gutenberg.org/ebooks/40465.txt.utf-8

FFmpeg

ffmpeg -i input.mkv -y -s 1080x720 -b:v 3000k -acodec mp2 -ac 2 -ab 192k -ar 44100 -async 1 out.mp4
ffmpeg -i input.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import json
import requests
from lxml import html
from urlparse import urlparse
from fake_useragent import UserAgent