antonioCoco / RoguePotato

Another Windows Local Privilege Escalation from Service Account to System
GNU General Public License v3.0
1.04k stars 127 forks source link

Too many variables passed in string. TokenKidnapping.cpp Ln 209 #1

Open PeteSampras opened 4 years ago

PeteSampras commented 4 years ago

Line 209 in TokenKidnapping.cpp has an extra variable passed on the printf that needs removed. FROM: printf("[+] Got SYSTEM Token!!!\n", GetLastError());

TO: printf("[+] Got SYSTEM Token!!!\n");

antonioCoco commented 3 years ago

hi,

thanks for that spot! Will address in a future release.