티스토리 뷰
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | from idautils import * from idaapi import * from idc import * def decompile_func(ea): if not init_hexrays_plugin(): return False f = get_func(ea) if f is None: return False try: cfunc = decompile(f); if cfunc is None: # Failed to decompile return False except Exception as e: return 'DecompileFail' lines = [] sv = cfunc.get_pseudocode(); for sline in sv: line = tag_remove(sline.line); lines.append(line) return "\n".join(lines) filename = GetInputFile() decom_buf = list() for segea in Segments(): for funcea in Functions(segea, SegEnd(segea)): functionName = GetFunctionName(funcea) for (startea, endea) in Chunks(funcea): decompiled_result = decompile_func(startea) if decompiled_result == False: pass elif decompiled_result == 'DecompileFail': pass #with open('decompileError_{0}'.format(filename), 'a') as error: error.write(str(hex(startea))+'\n') else: decom_buf.append(str(decompiled_result)) buf = '\n'.join(decom_buf) with open('decompiled_{0}.log'.format(filename), 'a') as ohoh: ohoh.write(buf) | cs |
'리버싱 > IDAPython' 카테고리의 다른 글
Get assembled code via IDAPython (0) | 2018.09.19 |
---|---|
디컴파일된 수도코드의 주석 가져오기 (1) | 2018.07.04 |
[IDAPython] 조건부 브레이크 포인트(SetBptCnd)를 이용한 예제 (0) | 2018.01.16 |
[IDAPython] FindText, DataRefsTo 함수를 사용해 문자열 찾기 (0) | 2018.01.16 |
IDAPython Enums(열거형) 관련 API 함수 및 예제 (0) | 2018.01.06 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Servey
- Decoding
- VirusBulletin
- Kimsuky
- 스피어피싱
- CVE-2018-9375
- vuln
- malware
- Flybits
- 비트코인
- 해킹메일
- cuckoo-sandbox
- infostealer
- idapython
- AMSI
- 위협정보공유
- keylogger
- 악성코드
- Static Analysis Engine
- Cisco Talos
- Yara
- 멋쟁이사자처럼 4기
- CVE-2018-0798
- .wll
- Bisonal
- 한글악성코드
- 출처 : Do it 안드로이드 프로그래밍
- MS-Office
- us-cert
- koodous
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함