forked from VIZAGBOYS/DDOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 837 Bytes
/
setup.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
import os
print("DDOS")
print("""[0] pip\n[1] pip3\nWhich one do you use?""")
c = input(">>>: ")
if c == "0":
os.system("pip install cloudscraper")
os.system("pip install socks")
os.system("pip install pysocks")
os.system("pip install colorama")
os.system("pip install undetected_chromedriver")
os.system("pip install httpx")
elif c == "1":
os.system("pip3 install cloudscraper")
os.system("pip3 install socks")
os.system("pip3 install pysocks")
os.system("pip3 install colorama")
os.system("pip3 install undetected_chromedriver")
os.system("pip3 install httpx")
if os.name == "nt":
pass
else:
os.system("wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb")
os.system("apt-get install ./google-chrome-stable_current_amd64.deb")
print("Done.")