Skip to content

Instantly share code, notes, and snippets.

View BlackVikingPro's full-sized avatar
🎯
Focusing

Wįłłý Fœx BlackVikingPro

🎯
Focusing
View GitHub Profile
@BlackVikingPro
BlackVikingPro / sms-bomber.py
Last active January 22, 2025 19:58
SMS Bombing (Spamming) Application! [Python]
#! /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)]
@BlackVikingPro
BlackVikingPro / random-casing.py
Created January 11, 2017 02:58
Randomize a sentence's casing in Python!
#! /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('./'):
@BlackVikingPro
BlackVikingPro / port-scanner.py
Last active January 8, 2017 19:54
Simple Python Port Scanner
#!/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:
@BlackVikingPro
BlackVikingPro / check-hosts.py
Last active October 26, 2017 01:45
Check if multiple hosts are online from a list of addresses.
#!/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()