1

I have an exe which I am trying to understand how it works. Whe I click on one of the UI elements of the exe , I think it is making a network request and receiving data . How would I trace what is being done by the exe ? Is there a way to use dynamic analysis to tell me what is executing when I click on a user element ?

roller
  • 11
  • 1
  • If it does indeed send data through the network, you could capture that data with tools like Wireshark. –  Jul 20 '20 at 21:15
  • I can capture the data but I think the data is a binary string. The application has encoded the string to decrypt inside th exe – roller Jul 20 '20 at 21:20

1 Answers1

0

Ciao, you can try a Reverse Engineer approach. Some time ago I used JustDecompile and it worked.

Giovanni Esposito
  • 10,696
  • 1
  • 14
  • 30