PeekABoo icon indicating copy to clipboard operation
PeekABoo copied to clipboard

PeekABoo tool can be used during internal penetration testing when a user needs to enable Remote Desktop on the targeted machine. It uses PowerShell remoting to perform this task. Note: Remote deskto...

Results 1 PeekABoo issues
Sort by recently updated
recently updated
newest added

choice in line 97 returns an int. it should return str. just do: choice = str(input("\n%s" % OPTIONS)) instead of choice = input("\n%s" % OPTIONS) it will keep printing invalid...