Skip to content

Instantly share code, notes, and snippets.

View osogama's full-sized avatar

Osogama osogama

  • Insane Computers
  • Columbia, Mo USA
View GitHub Profile
@osogama
osogama / delete_all_tweets.py
Created August 13, 2017 08:15 — forked from davej/delete_all_tweets.py
This script will delete all of the tweets in a specified account.
# -*- coding: utf-8 -*-
"""
This script will delete all of the tweets in the specified account.
You may need to hit the "more" button on the bottom of your twitter profile
page every now and then as the script runs, this is due to a bug in twitter.
You will need to get a consumer key and consumer secret token to use this
script, you can do so by registering a twitter application at https://dev.twitter.com/apps
@requirements: Python 2.5+, Tweepy (http://pypi.python.org/pypi/tweepy/1.7.1)
@osogama
osogama / delete_all_tweets.py
Created August 13, 2017 08:15 — forked from davej/delete_all_tweets.py
This script will delete all of the tweets in a specified account.
# -*- coding: utf-8 -*-
"""
This script will delete all of the tweets in the specified account.
You may need to hit the "more" button on the bottom of your twitter profile
page every now and then as the script runs, this is due to a bug in twitter.
You will need to get a consumer key and consumer secret token to use this
script, you can do so by registering a twitter application at https://dev.twitter.com/apps
@requirements: Python 2.5+, Tweepy (http://pypi.python.org/pypi/tweepy/1.7.1)
@osogama
osogama / pyPhish.py
Created October 18, 2016 20:58
Python script & webserver for a tiny dynamic phishing service. Just requires the flask and request modules. No php or html editing required. Just point and shoot.
#!/usr/bin/env python
'''
Written by @dustyfresh (c) 06-11-16
ABOUT:
PyPhish is a method of phishing using Python's flask and
requests modules instead of PHP and HTML. PyPhish will
grab page and display it as it would be to the user.
PyPhish acts as a proxy but changes the action="some file or url"
to redirect all POST & GET data to be logged to PyPhish.