forked from 0xInfection/TIDoS-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall
executable file
·41 lines (37 loc) · 1.05 KB
/
uninstall
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
#!/usr/bin/env python2
# coding: utf-8
#-:-:-:-:-:-:-:-:-:-:-:-:#
# TIDoS Framework #
#-:-:-:-:-:-:-:-:-:-:-:-:#
#This module requires TIDoS Framework
#https://github.com/theInfectedDrake/TIDoS-Framework
import os
import sys
import time
sys.path.append('core/')
from colors import *
print R+'\n ==================='
print R+' U N I N S T A L L'
print R+' ===================\n'
m = raw_input(O+' [#] Sure to remove TIDoS (y/N) :> ')
if m == 'y' or 'Y':
try:
time.sleep(0.5)
print GR+'\nProceeding towards uninstallation...\n'
time.sleep(1)
print B+'Removing installation packages for TIDoS...'+C
os.system('rm -v -rf /opt/tidos-framework')
time.sleep(1)
print B+'Removing setup and executable files...'+C
time.sleep(1)
os.system('rm -v -rf /usr/bin/tidos')
time.sleep(0.4)
print GR+'All installation packages have been removed...\n'
time.sleep(0.4)
print G+' [+] TIDoS-Framework has been successfully uninstalled...\n'
except:
print R+' [-] Something went wrong!'
sys.exit(1)
else:
print G+' [+] Good decision! :)'
sys.exit(0)