Skip to content

Instantly share code, notes, and snippets.

@SamJoel2007
Created July 8, 2021 07:59
Show Gist options
  • Save SamJoel2007/57ddb955e30bb5a84f9ed92c379e0547 to your computer and use it in GitHub Desktop.
Save SamJoel2007/57ddb955e30bb5a84f9ed92c379e0547 to your computer and use it in GitHub Desktop.
DeadlyBeast DeadlyBeast
import hashlib
import requests
import subprocess
import os
username = "beast"
password = "beast"
print("Welcome to DeadlyBeast")
print("The default username and password is beast/beast")
user_user = input("Enter username: ")
if user_user == username:
pass
else:
print("Wrong username")
exit()
user_pass = input("Enter password: ")
if password == user_pass:
print("Login Successful")
else:
print("Wrong password")
print("Login Failed")
exit()
print("Starting Beast Console!!!")
print("|-------------------------------------------")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|-------------------------------------------")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|"," |")
print("|-------------------------------------------")
print("Encryptor (1)")
print("MacChanger (2)")
print("WebInfo (3)")
print("Denial Of Service (4)")
print("SSH connector (5)")
print("MD5 password cracker (6)")
a = 1
b = 2
c = 3
d = 4
e = 5
f = 6
g = 7
user_lol = input("Enter number>>> ")
number = int(user_lol)
if number == a:
md5 = "md5"
sha256 = "sha256"
sha1 = "sha1"
sha512 = "sha512"
what_hash = input("Enter hash type: ")
if what_hash == md5:
md5_word = input("Enter word that you want to encrypt: ")
x = hashlib.md5(md5_word.encode('utf-8')).hexdigest()
print(x)
if what_hash == sha256:
sha256_word = input("Enter word that you want to encrypt: ")
y = hashlib.sha256(sha256.encode('utf-8')).hexdigest()
print(y)
if what_hash == sha1:
sha1_word = input("Enter word that you want to encrypt: ")
z = hashlib.sha1(sha1_word.encode('utf-8')).hexdigest()
print(z)
if what_hash == sha512:
sha512_word = input("Enter word that you want to encrypt: ")
a = hashlib.sha512(sha512_word.encode('utf-8')).hexdigest()
print(a)
if number == 2:
interface = input("Enter interface: ")
new_mac = input("Enter new mac: ")
subprocess.call("ifconfig " + interface + " ether " + new_mac,shell=True)
if number == 3:
print("For example: www.fakesite.com")
URL = input("Enter URL: ")
command = requests.head("http://" + URL)
print(command.headers)
if number == 4:
ip = input("Enter ip: ")
packet_size = input("Enter packet size: ")
no_of_packets = input("Enter the number of packets: ")
command = os.system("ping " + "-s " + packet_size + " -t 10 " + " -l " + no_of_packets + " " + ip)
print(command)
if number == 5:
domain = input("Enter victims computer name: ")
ip_addr = input("Enter victims ip address: ")
ssh_command = "ssh " + domain + "@" + ip_addr
subprocess.call(ssh_command,shell=True)
if number == 6:
try:
user_pass_file = input("Enter wordlist: ")
wordlist = open(user_pass_file, "r")
except:
print("No wordlist found")
quit()
hash = input("Enter md5 hash: ")
for x in wordlist:
L = x.encode()
md5 = hashlib.md5(L.strip()).hexdigest()
if md5 == hash:
print("Password is " + x)
@SamJoel2007
Copy link
Author

This tool doesn't support any illegal activities

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment