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