Posts: 8 Threads: 0 Joined: N/A September 2, 2022 at 12:04 AM Hey! Can someone help me decrypting an ahk compiled to exe? It was packed with upx, unpacked that, but raw text is still encrypted, and i have no clue. Posts: 464 Threads: 0 Joined: N/A  September 2, 2022 at 1:26 AM ahk excutable is written C++ code so it has been convert to Assembly code.
Try out this https://www.autohotkey.com/boards/viewtopic.php?t=59015&p=248348. or else you need to reverse engineer it yourself. Those who share kindness, I will repay that payment 10-fold, and Who do injustice, try to hurt the innocent, I will repay that injustice a 1000 times over.
Posts: 8 Threads: 0 Joined: N/A September 2, 2022 at 2:16 AM (September 2, 2022, 01:26 AM)Mysterious Wrote: ahk excutable is written C++ code so it has been convert to Assembly code.
Try out this https://www.autohotkey.com/boards/viewtopic.php?t=59015&p=248348. or else you need to reverse engineer it yourself. What's the point of this? You can literally edit almost any ahk exe with a notepad, or just simply using any kind of dissasembler will let u check the raw data, the problem is in the RAW data, it's still encrypted, i think the cryptstringtobinary function was used, but i have no clue how to decode it Posts: 464 Threads: 0 Joined: N/A  September 2, 2022 at 2:43 AM (September 2, 2022, 02:16 AM)reversemyexe Wrote: (September 2, 2022, 01:26 AM)Mysterious Wrote: ahk excutable is written C++ code so it has been convert to Assembly code.
Try out this https://www.autohotkey.com/boards/viewtopic.php?t=59015&p=248348. or else you need to reverse engineer it yourself.
What's the point of this? You can literally edit almost any ahk exe with a notepad, or just simply using any kind of dissasembler will let u check the raw data, the problem is in the RAW data, it's still encrypted, i think the cryptstringtobinary function was used, but i have no clue how to decode it Hmm can share the file? exe is a binary file, it is encoded not generally encrypted. it is encoded for windows to understand it , it is not human readable atleast most of them should not be it is probably object code. encoded might not be the right word for it. Those who share kindness, I will repay that payment 10-fold, and Who do injustice, try to hurt the innocent, I will repay that injustice a 1000 times over.
Posts: 8 Threads: 0 Joined: N/A September 2, 2022 at 5:01 PM (September 2, 2022, 02:43 AM)Mysterious Wrote: (September 2, 2022, 02:16 AM)reversemyexe Wrote: (September 2, 2022, 01:26 AM)Mysterious Wrote: ahk excutable is written C++ code so it has been convert to Assembly code.
Try out this https://www.autohotkey.com/boards/viewtopic.php?t=59015&p=248348. or else you need to reverse engineer it yourself.
What's the point of this? You can literally edit almost any ahk exe with a notepad, or just simply using any kind of dissasembler will let u check the raw data, the problem is in the RAW data, it's still encrypted, i think the cryptstringtobinary function was used, but i have no clue how to decode it
Hmm can share the file?
exe is a binary file, it is encoded not generally encrypted.
it is encoded for windows to understand it , it is not human readable atleast most of them should not be
it is probably object code.
encoded might not be the right word for it. sent in dm, i reversed this ahk program like 50 times, but this time i'm fucked |