mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
Fix security issue with root access key
This commit is contained in:
parent
e96c559064
commit
df5bef0ec4
@ -209,7 +209,7 @@ class ReqServer(threading.Thread):
|
|||||||
'''
|
'''
|
||||||
This method sends out publications to the minions
|
This method sends out publications to the minions
|
||||||
'''
|
'''
|
||||||
if not load['key'] == self.key:
|
if not load.pop('key') == self.key:
|
||||||
return ''
|
return ''
|
||||||
jid = self._prep_jid(load)
|
jid = self._prep_jid(load)
|
||||||
payload = {'enc': 'aes'}
|
payload = {'enc': 'aes'}
|
||||||
|
Loading…
Reference in New Issue
Block a user