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() |
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 | |
""" 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 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 | |
""" !- Stopwatch.py ~ By: Willy Fox - @BlackVikingPro -! """ | |
import sys, time | |
def stopwatch(): | |
min = 0 | |
sec = 0 | |
print("") | |
while True: | |
if len(str(min)) == 1 and len(str(sec)) == 1: |
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 | |
""" !- T3xt H4ck1fy ~ By: Willy Fox - @BlackVikingPro -! """ | |
import sys | |
def usage(): | |
print "!- T3xt H4ck1fy ~ By: Willy Fox - @BlackVikingPro -!\n" | |
if sys.argv[0].startswith('./'): | |
print "Syntax: %s --med hello world i am hacker text!" % sys.argv[0] | |
pass |
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 | |
""" !- Square Root Example in Python -- By: @BlackVikingPro -! """ | |
import sys | |
# Based on JavaScript code from https://gist.github.com/joelpt/3824024 | |
def squirt(n, g=False): | |
if (g == False): | |
g = n / 2.0; | |
pass |
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 | |
""" !- Colorfy-HTML - Color text with HTML tags ~ By: Willy Fox - @BlackVikingPro -! """ | |
import sys, random | |
if len(sys.argv) <= 1: | |
if "./" in sys.argv[0]: | |
print "Usage: Takes text from command line and outputs generated HTML content.\nSyntax: %s [text]" % sys.argv[0] | |
pass | |
else: |
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 | |
""" !- ServerDoXXy - Server DoXing Tool ~ By: Willy Fox - @BlackVikingPro -! """ | |
import sys, time, socket | |
import os, argparse, subprocess | |
parser = argparse.ArgumentParser(description='!- ServerDoXXy - Server DoXing Tool ~ By: Willy Fox - @BlackVikingPro -!') | |
config = parser.add_argument_group('Configuration:') |
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 | |
""" !- SSHBan - SSH Hacker Suspect IP Leaker -- By: Willy Fox (@BlackVikingPro) -! """ | |
import os, sys, re, socket, time | |
# Config | |
logfile = '/var/log/auth.log' | |
leakfile = '/var/www/html/leakedips.txt' | |
mins = 1 # number of minutes to sleep before conducting another search |
OlderNewer