1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-24 01:25:37 +01:00

Fixed possible typo in 'id' command in 'refresh_uid'

Real and effective 'gid' are interchanged
This commit is contained in:
Mitul16 2021-08-12 11:27:33 +05:30
parent 58fa22d75f
commit 4043e95adc

View File

@ -821,7 +821,7 @@ class Linux(Platform):
while True: while True:
try: try:
proc = self.run( proc = self.run(
"(id -ru;id -u;id -g;id -rg;id -G;)", "(id -ru;id -u;id -rg;id -g;id -G;)",
capture_output=True, capture_output=True,
text=True, text=True,
check=True, check=True,