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
#!/usr/bin/env python3 | |
import secrets | |
import sys | |
from ldap3 import Server, Connection, ALL, NTLM | |
try: | |
username = sys.argv[1] | |
except IndexError: | |
exit('please provide a username: {} <name>'.format(sys.argv[0])) |
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
#!/usr/bin/env python | |
import requests | |
import datetime | |
import pytz | |
from bs4 import BeautifulSoup | |
import time | |
import sys | |
while True: | |
r = requests.get('https://twitter.com/realdonaldtrump') |