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