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 | |
import json | |
import time | |
import datetime | |
import subprocess | |
import threading | |
from urllib.request import urlopen | |
threads = [] | |
hits = 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
import poplib, getpass, email | |
import re | |
Mailbox = poplib.POP3_SSL('mail.privateemail.com') | |
Mailbox.user('[email protected]') | |
Mailbox.pass_('pass') | |
emails = [] | |
tries = 0 | |
fail_tries = 300 |
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
#!/bin/bash | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" | |
exit 1 | |
fi | |
mkdir -p /media/waleed/storage/backups/home/waleed | |
mkdir -p /media/waleed/storage/backups/www | |
mkdir -p /media/waleed/storage/backups/etc |
OlderNewer