I hereby claim:
- I am BlackVikingPro on github.
- I am blackvikingpro (https://keybase.io/blackvikingpro) on keybase.
- I have a public key whose fingerprint is A2E7 B372 A86E 3F55 E536 2DA2 3298 3301 D930 8DDE
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
""" !- discord.logger.py - Discord Channel Message Logger ~ By: Willy Fox - @BlackVikingPro -! """ | |
import discord | |
import asyncio | |
client = discord.Client() | |
@client.event | |
async def on_ready(): |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" !- DoIGiveAFuck? ~ By: Willy Fox - @BlackVikingPro -! """ | |
import curses | |
import time | |
if __name__ == "__main__": | |
stdscr = curses.initscr() | |
curses.noecho() | |
curses.cbreak() |
#!/usr/bin/env python | |
""" !- Tail.py - Python file tailer ~ By: Willy Fox - @BlackVikingPro -! """ | |
import curses, sys | |
import time, argparse | |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import argparse | |
parser = argparse.ArgumentParser(description='Tail.py - Python file tailer ~ By: Willy Fox - @BlackVikingPro') |
#!/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 |
#!/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:') |
#!/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: |
#!/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 |
#!/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 |
#!/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: |