-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
110 lines (95 loc) · 3.26 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import sys
import os
import time
from datetime import datetime
import colorama
from colorama import *
from pypresence import Presence
client_id = '977577659217354813' # Fake ID, put your real one here
RPC = Presence(client_id) # Initialize the client class
RPC.connect() # Start the handshake loop
RPC.update(state=f"Something like normal vps", details=f"Using luch vps", large_image="new_piskel_1_", small_image=" ", large_text="Developed by Looph")
def login():
u = input("login as: ")
if u == "root":
p = input("root@ubuntu's password:" + Fore.BLACK + " ")
if p == "root":
print(Fore.WHITE + """
Welcome to Ubuntu 20.04.4 LTS (GNU/Linux 5.4.162-1-pve x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
""")
os.system("title root@ubuntu: ~")
debil()
def debil():
sin = input("root@ubuntu ~ # ").lower()
sinput = sin.split(" ")[0]
if sinput == "java":
sinput, asd, kokot, ip, port, method, duration = sin.split(" ")
if asd == "-jar":
if kokot == "vip.jar":
print(f"\nIP: {ip}\nPORT: {port}\nTIME: {duration}\nATTACK STARTED!\n")
os.system(f"")
debil()
if kokot == "team.jar":
print(f"\nIP: {ip}\nPORT: {port}\nTIME: {duration}\nATTACK STARTED!\n")
os.system(f"")
debil()
if kokot == "normal.jar":
print(f"\nIP: {ip}\nPORT: {port}\nTIME: {duration}\nATTACK STARTED!\n")
os.system(f"")
debil()
else:
print("wrong")
if sinput == "htop":
print("smrdis")
debil()
if sinput == "ls":
print("bot.jar infinity.sh vip.jar team.jar normal.jar")
debil()
if sinput == "./infinity.sh":
print("infinity is very good stresser")
debil()
if sinput == "./infinity":
print("infinity is very good stresser")
debil()
if sinput == "infinity.sh":
print("infinity is very good stresser")
debil()
if sinput == "clear":
os.system("cls")
debil()
if sinput == "lscpu":
print("""Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 12
On-line CPU(s) list: 24
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 23
Stepping: 7
CPU MHz: 1998.000
BogoMIPS: 4999.98
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 3072K""")
debil()
if sinput == "attackstop":
os.system("java -jar InfinityConnector.jar stop")
debil()
if sinput == "authors":
print("Console Author:\n\nLooph - OWNER\nBrutalCODE - API\n")
debil()
else:
print("/etc/bash: "+ sinput +": command not found")
debil()
os.system("title PuTTY (inactive)")
os.system("cls")
login()