forked from arubdesu/EAs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththunderstrikeCheck.py
executable file
·56 lines (46 loc) · 1.64 KB
/
thunderstrikeCheck.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
#!/usr/bin/python
# Culled from https://gist.github.com/arubdesu/05b4172890450fa2d9e6
"""Given a list of FW models and Thunderstrike patched FW versions,
report on whether a machine has been patched."""
#pylint: disable=invalid-name
import subprocess
import plistlib
FIRMWARE_DICT = {"MM51":"B12",
"MM61":"B08",
"MM71":"B03",
"MP61":"B15",
"MB81":"B06",
"IM121": "B21",
"IM131": "B08",
"IM141": "B11",
"IM142": "B11",
"IM143": "B11",
"IM144": "B10",
"IM151": "B03",
"MBP81": "B2A",
"MBP91": "B0B",
"MBA41": "B12",
"MBA51": "B03",
"MBA61": "B19",
"MBA71": "B06",
"MBP101": "B09",
"MBP102": "B08",
"MBP111": "B15",
"MBP112": "B15",
"MBP114": "B04",
"MBP121": "B07"}
CMD = ["/usr/sbin/system_profiler", "SPHardwareDataType", "-xml"]
HDWE_STDOUT = subprocess.check_output(CMD)
OUTPUT_PLIST = plistlib.readPlistFromString(HDWE_STDOUT)
FULL_ROM = OUTPUT_PLIST[0]["_items"][0]["boot_rom_version"]
(hdwe_code, _, current_fw_vers) = FULL_ROM.split(".")
PATCHED_VERS = FIRMWARE_DICT.get(hdwe_code)
if PATCHED_VERS:
if current_fw_vers >= PATCHED_VERS:
RESULT = "Patched"
else:
RESULT = ("Unpatched current version: %s required version: %s" %
(current_fw_vers, PATCHED_VERS))
else:
RESULT = "NotPatchable"
print "<result>%s</result>" % RESULT