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
- malware
- x64
- idapython
- idb2pat
- Analysis
- idapro
- pytest
- javascript
- error
- ida pro
- data distribution
- ida
- NumPy Unicode Error
- ecma
- Rat
- error fix
- 포인터 매핑
- mock.patch
- svn update
- Python
- h5py.File
- MySQL
- hex-rays
- debugging
- commandline
- open office xml
- TensorFlow
- Ransomware
- Injection
- why error
Archives
- Today
- Total
13 Security Lab
IDA Pro - idapython idaapi.get_name parse error 본문
Environment
win 10 x64
ida 6.8
idapython
ida2pat
When I run idb2pat script using idapython on shell prompt, idb2pat fail call idb2pat.getname() function
it shows the below exception message
it fails to parse getname() parameter, it provides different number of parameters
I found it. idb2pat is updated after IDA 7.0 release, get_name function is modified after then.
idb2pat repository code diff.
Problem
It is required 2 parameters but, just one param is provided.
Solution
Use the proper script at IDA Pro 6.8
or
Upgrade to upper version IDA Pro 7.0
Comments