Reputation: 10539
Is it possible to know with dumpbin tools if a executable under windows use the command arp ?
Upvotes: 0
Views: 402
Reputation: 490118
No, not really. If it has arp.exe
as a string literal, and passes that string literal to WinExec
, CreateProcess
, etc., that'll be pretty easy to find. It could, however, do something like reading arp.exe
in from a file at run-time, which will make it considerably more difficult to find.
Upvotes: 1