
汇编
文章平均质量分 64
qq_18942885
这个作者很懒,什么都没留下…
展开
-
去年学习汇编的时候写的内存LOADer
.386.model flat,stdcalloption casemap:noneinclude windows.incinclude user32.incincludelib user32.libinclude kernel32.incincludelib kernel32.libcheckcodesum proto n:dword,z:dwordw原创 2015-04-27 16:07:58 · 835 阅读 · 1 评论 -
【原创】获取指定index的 OBJECTTYPE
ULONG64 onlythisfile_SreachFunctionAddress(ULONG64 uAddress, UCHAR *Signature, ULONG addopcodelength, ULONG addopcodedatasize){ULONG64 index = 0;UCHAR *p = 0;ULONG64 uRetAddress = 0;UL原创 2015-08-27 14:10:33 · 622 阅读 · 0 评论 -
寻找0XCC软件断点
配合反汇编引擎效果出奇;Here is what I see in hacker defense testing 0xCC software breakpoints;I write it with FASM assemblerinclude 'win32ax.inc'use32entry startsection '.text' code readable exec原创 2015-04-27 16:13:46 · 1024 阅读 · 0 评论 -
病毒重定位技术1
include 'win32ax.inc'use32.codestart:call $+5ca:pop eaxlea eax,[eax+sdata-ca].end startsection '.data' readable writeablesdata db "fuckyoursister!",0原创 2015-04-27 16:13:08 · 754 阅读 · 0 评论 -
2014过360栈回溯
360为了XX黑加白出的栈回溯技术当然现在还会杀DLL 不过 断链动态解密一下应该还是没有问题的博客新开,先扔出来一点儿.486p.model flat,stdcalloption casemap:noneassume fs:nothinginclude windows.incinclude user32.incincludelib us原创 2015-04-27 16:12:43 · 681 阅读 · 0 评论 -
博客搬家到优快云
博客搬家到优快云因为百度云关门了原创 2015-04-27 15:40:50 · 439 阅读 · 0 评论 -
2014简单绕过某60父进程查杀
;落笔飞花笑百生;2014.12.9;过360父进程一个弱弱的方法;过360启动项.386.model flat,stdcalloption casemap:noneinclude windows.incincludelib kernel32.libinclude kernel32.incinclude user32.incinclude原创 2015-04-27 16:10:43 · 1882 阅读 · 1 评论 -
自己前几天用MASM写的一个远控
最先是在看雪发的 新开空间我也没啥东西 只能拿这个凑数了;作者:落笔飞花笑百生;日期:2014/12/20;用处:练手;写一个程序虽然很烂但是确实能学到很多,用汇编写程序能逼迫自己去学习以前高级语言中容易忽略的东西虽然还是不够。;但是至少脱离了只能用别人封装好的库来写程序的恶性循环;这个程序也没有了写下去的意思,该解决的都解决了我实在想不出来再写他具体能得到什么原创 2015-04-27 16:11:07 · 1599 阅读 · 1 评论 -
通用WIN32平台的shellcode
LoadLibraryExA_Digest equ 0xc0d83287LoadLibraryA_Digest equ 0x0C917432RegCreateKeyA_Digest equ 0x2B367128RegSetValueExA_Digest equ 0xD8C0FEAARegCloseKey_Digest equ原创 2015-04-27 16:13:35 · 1155 阅读 · 0 评论 -
这个dll_CopycatAndHide 的masm源代码
;2015/1/7;作用:简单的断去链表的方法 实用 也可以达到隐藏的效果 成功返回1失败返回0 ;失败原因:例如内存分配不成功等等 一般是在过程中出错;esp+8传入 DLL的句柄dll_CopycatAndHide proc dllhandle:dword LOCAL SizeOfImage,lpBackMem,oldprotect,AddressOfEntr原创 2015-04-27 16:08:59 · 626 阅读 · 0 评论 -
【原创】remove some info from pspcidtable WIN7X64
不废话 直接防码 补充代码有网了:【分享】x64 antidebug 不触发PG http://bbs.pediy.com/showthread.php?p=1385028#post1385028有个BUG 如果 移出的目标有线程退出 那么 我的 系统线程就挂了 目测是枚举函数的 问题 这个 我就 不解决了 退出不蓝屏因为 有 了新的 解决办法 这个 就扔掉了原创 2015-08-27 09:03:48 · 1337 阅读 · 0 评论