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 | 31 |
Tags
- idb2pat
- error
- error fix
- MySQL
- Analysis
- idapython
- x64
- malware
- open office xml
- commandline
- Ransomware
- pytest
- data distribution
- debugging
- ida pro
- Python
- ida
- hex-rays
- idapro
- svn update
- 포인터 매핑
- ecma
- mock.patch
- h5py.File
- Rat
- NumPy Unicode Error
- javascript
- TensorFlow
- why error
- Injection
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