Browse by Tags
All Tags »
Reverse Engineer (
RSS)
Sorry, but there are no more tags available to filter with.
-
-
|
http://sebastien.lebreton.free.fr/blog/index.php?/archives/9-Reflexil-v0.1.html Reflexil est un plugin pour Reflector basé sur Mono.Cecil . Il permet de créer ou de modifier le code IL des méthodes d'un assembly puis de sauvegarder les modifications. Pour l'instant Reflexil sait gérer des instructions avec des opérandes de type primitif (string, int32, etc) ainsi que les références sur les instructions (branch) et les variables. Pour l'utiliser il suffit d'ajouter Reflexil à la liste...
|
-
|
First we need to setup OllyDbg. You have to set “Debugging Option->SFX->When main module is self-extractable” to “Trace real entry point bytewise”, which will help us to find real entry point. Now you can load packed CME into OllyDbg and after a while OllyDbg will stop at 0x401220 which is real entry point. Now dump it using OllyDump and using Import REconstructor repair dumped executable.
|
-
|
http://hyy.0312w.cn/article.asp?id=62 1、限制程序功能函数 EnableMenuItem 允许、禁止或变灰指定的菜单条目 EnableWindow 允许或禁止鼠标和键盘控制指定窗口和条目(禁止时菜单变灰) 2、对话框函数 CreateDialog 从资源模板建立一非模态对话窗 CreateDialogParam 从资源模板建立一非模态对话窗 CreateDialogIndirect 从内存模板建立一非模态对话窗 CreateDialogIndirectParam 从内存模板建立一非模态对话窗 DialogBox 从资源模板建立一模态对话窗 DialogBoxParam 从资源模板建立一模态对话窗 DialogBoxIndirect 从内存模板建立一模态对话窗 DialogBoxIndirectParam 从内存模板建立一模态对话窗 EndDialog 结束一模态对话窗 MessageBox 显示一信息对话框 MessageBoxEx 显示一信息对话框 MessageBoxIndirect 显示一定制信息对话框 GetDlgItemInt 得指定输入框整数值...
|