Debugging executable with arguments in IDA

In the IDA disassembler and debugger, is there a way to run the currently loaded binary with command line parameters? For example, let's say I have the /bin/ls and you want to debug it as /bin/ls test.txt , how can I do this in the IDA?

+6
source share
1 answer

Go to the menu item Debugger / Process options... and fill in the argument test.txt in the Parameters field.

The path to the executable file (including the binary) will be in the Application field.

+7
source

All Articles