This file contains hidden or 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
from __future__ import print_function | |
import os | |
from twilio.rest import Client | |
from datetime import datetime | |
from urllib import parse | |
import requests | |
import base64 | |
import re | |
import pymongo | |
try: |
This file contains hidden or 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 bs4 | |
from selenium import webdriver | |
import sys | |
import time | |
import random | |
import os | |
def makeNoise(): |
This file contains hidden or 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 os | |
import time | |
import random | |
def swipe_application_drawer(): | |
os.system("adb shell input swipe 780 1725 550 50") | |
time.sleep(.5) | |
def tap(coordTuple): | |
x, y, sleepTime = coordTuple |
This file contains hidden or 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 test |
This file contains hidden or 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
# Copy of http://stackoverflow.com/a/20104705 | |
from flask import Flask, render_template | |
from flask_sockets import Sockets | |
import datetime | |
import time | |
app = Flask(__name__) | |
sockets = Sockets(app) |
This file contains hidden or 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 os | |
# Be sure to import os into your script | |
''' | |
If you run the following command in the terminal, it will speak the words "testing to see if this works properly" | |
PowerShell -Command "Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('testing to see if this works properly');" | |
This python script generates this command with whatever text is passed to the speak function | |
''' |
This file contains hidden or 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
document.write("This grabbed a remote script") |
This file contains hidden or 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 sys | |
# sys.setdefaultencoding() does not exist, here! | |
reload(sys) # Reload does the trick! | |
sys.setdefaultencoding('UTF8') | |
import requests | |
import threading | |
import json | |
#import sqlite3 | |
def sanitize(value, is_value=True): |
This file contains hidden or 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 sys | |
# sys.setdefaultencoding() does not exist, here! | |
reload(sys) # Reload does the trick! | |
sys.setdefaultencoding('UTF8') | |
import requests | |
import threading | |
import json | |
#import sqlite3 | |
def sanitize(value, is_value=True): |
NewerOlder