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
#!/bin/bash | |
function main() { | |
# Create Non-Root User | |
# read -rp "Create a new non-root user? [y/N] " flag_create_user | |
# if [[ $createUser == [nN] ]]; then | |
# username=$(whoami) | |
# updateUserAccount "${username}" |
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 re | |
import shutil | |
from pathlib import Path | |
from queue import Queue, Empty | |
from threading import Thread, Event | |
import requests | |
from bs4 import BeautifulSoup | |
from selenium import webdriver | |
from fuzzywuzzy import fuzz |
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 os | |
import sys | |
import json | |
import base64 | |
import struct | |
import binascii | |
from pathlib import Path | |
import argparse | |
from Crypto.Cipher import AES |
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 http | |
import time | |
import json | |
import math | |
from concurrent.futures import ThreadPoolExecutor, as_completed | |
import requests | |
from tqdm import tqdm | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='UTF-8'> | |
<meta http-equiv='X-UA-Compatible' content='IE=edge'> | |
<meta name='viewport' content='width=device-width, initial-scale=1'> | |
<style> | |
* {margin: 0} | |
</style> |
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
from bs4 import BeautifulSoup | |
from threading import Thread | |
import requests | |
import re | |
import shutil | |
import os | |
import time | |
MAX_THREAD = 30 | |
ROOT_DIR_NAME = 'PapaCambridge' |