This file contains 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
# Scrapes www.thefuckingweather.com | |
from bs4 import BeautifulSoup as soup | |
import urllib2 | |
import json | |
import argparse | |
from bottle import route, run, template | |
#sets param. for the zipcode ie. http://YOUR_IP/ZIPCODE |
This file contains 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 zipfile | |
import itertools | |
import time | |
import sys | |
print("\nWelcome to the Password Cracker") | |
print("Make sure this script is in the same directory as the target zip file") | |
print("This script either brute forces or uses a dictinary attack") | |
print("\nSpecify the file name then either brute or dict to start attack\n") |
This file contains 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/python | |
Facebook_Username = "your_email" | |
Facebook_Password = "your_password" | |
from sys import exit, stdout | |
import traceback | |
import mechanize | |
import time | |
import os |