Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- svn update
- open office xml
- debugging
- idb2pat
- hex-rays
- Injection
- ida pro
- error
- Rat
- commandline
- Analysis
- 포인터 매핑
- ida
- h5py.File
- Ransomware
- malware
- error fix
- pytest
- MySQL
- why error
- ecma
- data distribution
- TensorFlow
- javascript
- idapro
- x64
- idapython
- mock.patch
- Python
- NumPy Unicode Error
Archives
- Today
- Total
13 Security Lab
idapython commandline execution problem 본문
[TroubleShoot] idapython commandline execution problem.
Environment
windows 10 x64
ida 6.8
idapython-1.7.2_ida6.8_py2.7_win32
Commandline
[1] >>idaq -A -S"C:\Program Files (x86)\IDA 6.8\python\ScriptName.py" "C:\DBPath\SamplePE.idb"
or
[2] >>idaq -A -S"C:\Program Files (x86)\IDA 6.8\python\ScriptName.py" "C:\DBPath\SamplePE.idb"
Problem
If u use command [1], It will dismisses any exception message from IDA Pro.
If u use command [2], It will shows the below message.
Solution
Remove "space character" from execution path.
ex)
>>idaq -A -S"C:\Scripts\space_not_included\python\ScriptName.py" "C:\DBPath\SamplePE.idb"
Comments