성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <div style='font-family: 맑은 고딕, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>Mono Cecil로 만들어 보는 .NET Decompiler</div> <br /> "<a target='_tab' href='http://www.jennifersoft.com/docs/ms-dotnet-performance-management.html'>제니퍼 닷넷</a>"을 구현하기 위해 처음에 몇 개의 기술들이 리뷰가 되었습니다. 예전에 소개해 드린 "Runtime Method Replacer"도 그중의 하나였고,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > 실행 시에 메서드 가로채기 - CLR Injection: Runtime Method Replacer 개선 ; <a target='_tab' href='http://www.sysnet.pe.kr/2/0/942'>http://www.sysnet.pe.kr/2/0/942</a> </pre> <br /> 이번에 소개해 드리는 "Mono Cecil"도 고려되었지만 역시나 몇 가지 제약으로 인해 채택할 수는 없었습니다. 그렇긴 해도 ^^ 상당히 재미있는 라이브러리인 것은 사실인데요. 쉽게 구현할 수 있는 Decompiler가 그 한 예입니다.<br /> <br /> 이에 대해서는 다음의 글에서 예제 코드와 함께 잘 설명해 주고 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > Using Mono Cecil Decompiler within Windbg to decompile ; <a target='_tab' href='http://naveensrinivasan.com/2010/06/08/using-mono-cecil-decompiler-within-windbg-to-decompile/'>http://naveensrinivasan.com/2010/06/08/using-mono-cecil-decompiler-within-windbg-to-decompile/</a> </pre> <br /> <hr style='width: 50%' /><br /> <br /> 물론, "<a target='_tab' href='http://www.red-gate.com/products/reflector/'>.NET Reflector</a>"라는 걸출한 <strike>무료</strike> 유료 디컴파일러가 있긴 하지만 때로는 쉽고 빠르게 소스 코드를 보고 싶은 경우가 있습니다. 이런 경우를 위해 배포가 간편한 "ClickOnce"를 사용하는 디컴파일러를 만들어 보고 싶었는데요. "Mono Cecil"이 그것을 가능하게 해주는군요. ^^<br /> <br /> 우선, Mono Cecil 0.9.4 버전은 다음의 경로에서 다운로드가 가능합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > mono / cecil ; <a target='_tab' href='https://github.com/jbevain/cecil/archives/0.9.4'>https://github.com/jbevain/cecil/archives/0.9.4</a> </pre> <br /> 그다음, "Cecil Decompiler"는 별도로 다운로드하게 되는데, 다음의 경로에서 0.5 버전을 다운로드할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > cecil / decompiler ; <a target='_tab' href='https://github.com/mono/cecil/tree/master/decompiler/'>https://github.com/mono/cecil/tree/master/decompiler/</a> </pre> <br /> <img onclick='toggle_img(this)' class='imgView' alt='cecil_decompiler_1.png' src='/SysWebRes/bbs/cecil_decompiler_1.png' /><br /> <br /> 그런데, 현재 "Mono Cecil" 0.9.4 버전과 "Cecil Decompiler" 0.5 버전은 통합 빌드가 되지 않습니다. 아래에 이와 관련된 "Jb Evain"의 답변이 있는데, 아마도 시간이 좀 지나야 안정화가 될 것 같습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > [mono-cecil] Re: Compiling Cecil.Decompiler ; <a target='_tab' href='http://www.mail-archive.com/mono-cecil@googlegroups.com/msg01945.html'>http://www.mail-archive.com/mono-cecil@googlegroups.com/msg01945.html</a> </pre> <br /> 개인적으로 ^^; 소스 코드를 어떻게든 맞춰가면서 빌드를 해보려고 했는데, 오류를 잡는 것이 끝도 없이 이어져서 그냥 중도에 포기해버렸습니다. 어차피 나중에 안정화된다면 쓸모없는 노력에 불과하기 때문에! 대신에 차선책으로 이미 빌드된 버전이 없나 찾아보게 되었는데, 다행히 ^^ 아래의 사이트에 발견할 수 있었습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > o2platform - OWASP O2 Platform ; <a target='_tab' href='http://code.google.com/p/o2platform/source/browse/#svn/O2_Binaries'>http://code.google.com/p/o2platform/source/browse/#svn/O2_Binaries</a> Cecil.Decompiler.dll ; <a target='_tab' href='http://o2platform.googlecode.com/svn/O2_Binaries/Cecil.Decompiler.dll'>http://o2platform.googlecode.com/svn/O2_Binaries/Cecil.Decompiler.dll</a> Mono.Cecil.dll ; <a target='_tab' href='http://o2platform.googlecode.com/svn/O2_Binaries/Mono.Cecil.dll'>http://o2platform.googlecode.com/svn/O2_Binaries/Mono.Cecil.dll</a> </pre> <br /> 그래서, Cecil.Decompiler.dll 파일과 Mono.Cecil.dll 파일을 프로젝트에서 참조하고, "<a target='_tab' href='http://naveensrinivasan.com/2010/06/08/using-mono-cecil-decompiler-within-windbg-to-decompile/'>Using Mono Cecil Decompiler within Windbg to decompile</a>"에서 소개해 드린 소스 코드를 빌드하면 정상적으로 실행되는 어셈블리를 얻을 수 있습니다.<br /> <br /> 기본은 마쳤으니, 그럼 본격적으로 디컴파일러 구색을 갖춰야 겠는데요. 저 같은 경우에는, 실행 중인 프로세스를 검색해서 그중에 "닷넷 응용 프로그램" 및 그 프로세스에 로드된 모든 닷넷 DLL 목록을 트리 뷰에 보여주는 식의 디컴파일러를 만들어 보고 싶었습니다.<br /> <br /> 일단, 아래와 같이 간단하게 프로토타입 식으로 만들어봤습니다. ^^<br /> <br /> <img alt='cecil_decompiler_2.png' src='/SysWebRes/bbs/cecil_decompiler_2.png' /><br /> <img alt='cecil_decompiler_3.png' src='/SysWebRes/bbs/cecil_decompiler_3.png' /><br /> <img alt='cecil_decompiler_4.png' src='/SysWebRes/bbs/cecil_decompiler_4.png' /><br /> <img alt='cecil_decompiler_5.png' src='/SysWebRes/bbs/cecil_decompiler_5.png' /><br /> <img alt='cecil_decompiler_6.png' src='/SysWebRes/bbs/cecil_decompiler_6.png' /><br /> <br /> 조금 테스트를 해보니, 문제가 소소하게 있습니다. 즉, .NET Reflector만큼은 소스 코드가 매끄럽게 (예를 들어, foreach로 보여준다거나, 비어 있는 try/catch가 추가된다거나.) 생성되지는 않습니다. <br /> <br /> 그 부분은, 어쨌든 차차 나아지겠지요. ^^<br /> <br /> 참고로, 다음의 경로에서 조금씩 응용 프로그램을 업그레이드해 나갈 생각입니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > .NET Decompiler (클릭원스 배포) ; <a target='_tab' href='http://www.sysnet.pe.kr/temp/app/netdecompiler/decompiler.application'>http://www.sysnet.pe.kr/temp/app/netdecompiler/decompiler.application</a> </pre> <br /> <a target='_tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=557&boardid=331301885'>첨부된 파일은 위의 응용 프로그램에 대한 소스 코드</a>입니다.<br /> <br /> <br /><br /><hr /><span style='color: Maroon'>[이 토픽에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
7099
(왼쪽의 숫자를 입력해야 합니다.)