mvrozanti / RAT-via-Telegram

Windows Remote Administration Tool via Telegram
MIT License
647 stars 344 forks source link

Wrong line commented out in RATAttack.py at line 33: token = os.environ['RAT_TOKEN'] #24

Closed tylers86 closed 6 years ago

tylers86 commented 6 years ago

Looks like the provided RATAttack.py script has the wrong line accidentally commented out. Looks like:

31 # REPLACE THE LINE BELOW WITH THE TOKEN OF THE BOT YOU GENERATED! 32 #token = 'nnnnnnnnn:lllllllllllllllllllllllllllllllllll' 33 token = os.environ['RAT_TOKEN'] # you can set your environment variable as well

Should be:

31 # REPLACE THE LINE BELOW WITH THE TOKEN OF THE BOT YOU GENERATED! 32 token = 'nnnnnnnnn:lllllllllllllllllllllllllllllllllll' 33 #token = os.environ['RAT_TOKEN'] # you can set your environment variable as well

X3eRo0 commented 6 years ago

Yes you are right I have also fixed that in my forked rat via Telegram also made changes in the script and now the keyboard freezing and mouse freezing are working. Made compiling easy

X3eRo0 commented 6 years ago

GitHub.com/PulkitSingh256

mvrozanti commented 6 years ago

That's actually what I tried to state in the comment. You either set an environment variable if you're going to be uploading to Github or you can hardcode the numbers:letters token format in your source.

Nevertheless, @PulkitSingh256 I'm glad there's still some maintainance happening. Keep it up