You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to fix those two issues, you need two steps.
For the inconsistency in tabs vs spaces issue, just use VScode and go to view-->command palette and then type "Convert Indentation to Spaces" then press enter. The IDE will do it for you.
For the bytes issue, you will have to change all of the lines with "sock.sent(self.XXXX())" to "sock.send(bytes(self.XXXX(), 'UTF-8'))"
Hi there! Thanks for the great tool. I found that it did not initially work until I edited the sock.send blocks to send bytes instead of str.
Ie:
sock.send(bytes(self._from(), 'UTF-8'))
Also python finds an inconsistency in tabs vs spaces in the print('[+] Exploited. Check your listener') statement.
Again thank you for this nifty tool.
The text was updated successfully, but these errors were encountered: