-
Notifications
You must be signed in to change notification settings - Fork 4
/
kvm_x8.py
executable file
·104 lines (89 loc) · 2.76 KB
/
kvm_x8.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
#!/usr/bin/env python3
import collections
import os
import os.path
import requests
import subprocess
import sys
import urllib3
if len(sys.argv) != 4:
print("%s <user> <password> <ipmi address>" % (sys.argv[0],))
sys.exit(1)
user = sys.argv[1]
pswd = sys.argv[2]
host = sys.argv[3]
# Silence SSL Certification warnings
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
# Start a requests Session to have persistent cookies
s = requests.Session()
s.headers.update(
{
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0",
"Accept-Language": "en-US,en;q=0.5",
}
)
s.verify = False
# Grab login page
s.get("https://%s/" % (host,))
# Login
data = collections.OrderedDict([("name", user), ("pwd", pswd)])
r = s.post(
"https://%s/cgi/login.cgi" % (host,),
headers={"Referer": "https://%s/" % (host,)},
data=data,
)
# Verify we correctly authenticated
assert "Please Login" not in r.text
assert "lang.LANG_LOGIN_PROMPT" not in r.text
# Fetch the main menu
data = collections.OrderedDict([("url_name", "mainmenu")])
r = s.get(
"https://%s/cgi/url_redirect.cgi" % (host,),
params=data,
headers={"Referer": "https://%s/login.cgi" % (host,)},
)
# Fetch the KVM page
data = collections.OrderedDict([("url_name", "man_ikvm")])
r = s.get(
"https://%s/cgi/url_redirect.cgi" % (host,),
params=data,
headers={"Referer": "https://%s/cgi/url_redirect.cgi?url_name=topmenu" % (host,)},
)
# Download viewer
data = collections.OrderedDict([("url_name", "ikvm"), ("url_type", "jwsk")])
r = s.get(
"https://%s/cgi/url_redirect.cgi" % (host,),
params=data,
headers={"Referer": "https://%s/cgi/url_redirect.cgi?url_name=man_ikvm" % (host,)},
)
with open("viewer.jnlp", "w") as f:
f.write(r.text)
# Verify we actually got some data
assert os.path.getsize("viewer.jnlp") > 0
# Write out temporary weak java security settings. Just to make sure we're not breaking on old KVM viewers
with open("java.security", "w") as f:
f.write(
"""jdk.certpath.disabledAlgorithms=
jdk.jar.disabledAlgorithms=
jdk.tls.disabledAlgorithms=
jdk.tls.legacyAlgorithms= \
K_NULL, C_NULL, M_NULL, \
DHE_DSS_EXPORT, DHE_RSA_EXPORT, DH_anon_EXPORT, DH_DSS_EXPORT, \
DH_RSA_EXPORT, RSA_EXPORT, \
DH_anon, ECDH_anon, \
RC4_128, RC4_40, DES_CBC, DES40_CBC, \
3DES_EDE_CBC"""
)
# Start javaws viewer
subprocess.call(
["javaws", "-J-Djava.security.properties=java.security", "-wait", "viewer.jnlp"]
)
# Remove our temporary files
os.remove("viewer.jnlp")
os.remove("java.security")
# Logout
data = {"time_stamp": "0"}
r = s.get(
"https://%s/cgi/logout.cgi" % (host,),
headers={"Referer": "https://%s/cgi/url_redirect.cgi?url_name=topmenu" % (host,)},
)