-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcmd.py
59 lines (52 loc) · 1.43 KB
/
cmd.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
#!/usr/bin/python3
print("content-type: text/html\n")
print()
import cgi
import subprocess
import sys
from datetime import date
import webbrowser
form = cgi.FieldStorage()
cmd = form.getvalue("c")
if ('run' in cmd) or ('what'in cmd) or ('date'in cmd):
res = subprocess.getoutput('date')
print(res)
elif ('ram' in cmd) or ('usage' in cmd):
res=subprocess.getoutput('free -m')
print(res)
elif ('hadoop' in cmd):
res=subprocess.getoutput('hadoop')
print(res)
elif ('present' in cmd) or ('where'in cmd):
res=subprocess.getoutput('pwd')
print(res)
elif ('dir' in cmd) or ('list'in cmd):
res=subprocess.getoutput('ls')
print(res)
elif ('docker' in cmd):
res=subprocess.getoutput('docker')
print(res)
elif('active' in cmd)or('process'in cmd):
res=subprocess.getoutput('ps -x')
print(res)
elif('reboot' in cmd):
res=subprocess.getoutput('init 6')
print(res)
elif('ip' in cmd):
res=subprocess.getoutput('ifconfig')
print(res)
elif('espeak-ng'in cmd):
res=subprocess.getoutput(cmd)
elif ('stop' in cmd) and ('firewall'in cmd):
res=subprocess.getoutput('systemctl stop firewalld')
print('firewall stoped sucessfully')
elif ('start' in cmd) and ('firewall'in cmd):
res=subprocess.getoutput('systemctl start firewalld')
print('firewall stoped sucessfully')
elif ('Show docker containers' in cmd) and (' list all images' in cmd):
res = subprocess.getoutput('docker images')
print(res)
else:
res=subprocess.getoutput(cmd)
print(res)
#choice = cmd