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 time, smtplib, sys, getpass | |
# need to define: | |
""" | |
e-prov (email-provider) [gmail]|[yahoo]|[custom] | |
from [attacker email] | |
from-spoof [spoof attacker email] | |
to [target email (syntax: [10-digit #]@mms|txt.[provider].com|net|org)] | |
c [count (# of txt's to send)] |
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 | |
""" Random String Casing ~~ by Willy Fox (BlackVikingPro) """ | |
import sys, random | |
try: | |
tmp = sys.argv[1] | |
pass | |
except IndexError: | |
if sys.argv[0].startswith('./'): |
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 os, sys, socket | |
def usage(): | |
print "\n\nOption Switches:\nPlease define '--verbose' before you define '--custom', should you define either one.\n" | |
print "--verbose -- Will show all connection attempts. Even failed ones." | |
print "\nExample: python %s 127.0.0.1 --verbose" % sys.argv[0] | |
pass | |
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
#!/usr/bin/env python | |
import os, sys, fileinput | |
try: | |
host_list = sys.argv[1] | |
pass | |
except IndexError as e: | |
if sys.argv[0].startswith('./'): | |
print "Usage: %s /path/to/list -- List that contains target IP addresses" % sys.argv[0] | |
sys.exit() |
NewerOlder