GET /ccvv
GET /index.action
Tomcat 5.0.x status servlet
GET /status?full=true
| { | |
| "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() |
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(): |
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
| #!/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 |