
Salt-Sicherheits-Backports für CVE-2020-11651 & CVE-2020-11652
Offizielle Patches für frühere Versionen können angefordert werden unter: https://www.saltstack.com/lp/request-patch-april-2020/
⚠ Patches hier sind eigene und können von offiziellen abweichen ⚠
Die Patches in diesem Repository beheben die folgenden CVEs:
Zusätzlich sind die folgenden Bugfixes enthalten:
_minion_runner -> minion_runner. Siehe: https://docs.saltstack.com/en/latest/topics/releases/3000.2.html#known-issue_find_file_and_stat -> _find_hash_and_stat. Siehe https://github.com/rossengeorgiev/salt-security-backports/issues/1run_func aus der Whitelistimport salt.utils.verifyDie oben genannten Korrekturen sind in der neuesten Version von SaltStack enthalten, insbesondere in v2019.2.5 und v3000.3.
Das Prüfskript muss lokal auf Ihrem salt-master als root ausgeführt werden.
python salt-cve-check.py
Beispielausgabe für Salt 2017.7.8:
[+] Salt version: 2017.7.8
[ ] This version of salt is vulnerable! Check results below
[+] Checking salt-master (127.0.0.1:4506) status... ONLINE
[+] Checking if vulnerable to CVE-2020-11651... YES
[+] Checking if vulnerable to CVE-2020-11652 (read_token)... YES
[+] Checking if vulnerable to CVE-2020-11652 (read)... YES
[+] Checking if vulnerable to CVE-2020-11652 (write1)... YES
[+] Checking if vulnerable to CVE-2020-11652 (write2)... YES
# locate the salt package directory (use python3 if necessary)
python -c "import imp; print(imp.find_module('salt')[1])"
# in my case: /usr/lib/python2.7/dist-packages/salt
# apply patches
# (adding -b flag will backup file before modifications at same path with .orig suffix)
# (patch can be reversed running the same command with -R flag)
patch -p2 -d /usr/lib/python2.7/dist-packages/salt < 2017.7.8_CVE-2020-11651.patch
patch -p2 -d /usr/lib/python2.7/dist-packages/salt < 2017.7.8_CVE-2020-11652.patch
# restart salt-master
systemctl restart salt-master
# or
service salt-master restart
Führen Sie das Prüfskript erneut aus:
user@salt # python salt-cve-check.py
[+] Salt version: 2017.7.8
[ ] This version of salt is vulnerable! Check results below
[+] Checking salt-master (127.0.0.1:4506) status... ONLINE
[+] Checking if vulnerable to CVE-2020-11651... NO
[+] Checking if vulnerable to CVE-2020-11652 (read_token)... NO
[+] Checking if vulnerable to CVE-2020-11652 (read)... NO
[+] Checking if vulnerable to CVE-2020-11652 (write1)... NO
[+] Checking if vulnerable to CVE-2020-11652 (write2)... NO