找回密码
 注册

QQ登录

只需一步,快速开始

搜索
分享 linux内核新补丁:SYNPROXY target
心想事成 2013-8-31 18:22
在lwn.net上,已经有人提供了SYNPROXY target这个补丁,让内核可以支持syn 代理了。 补丁代码包含了完整的发送自定义数据包的方法,可以参照借鉴。 The SYNPROXY target allows you to intercept TCP connections andestablish them using syncookies before they are passed on to theserver. This allows to avoid ...
1782 次阅读|0 个评论
分享 再说mips函数劫持二
心想事成 2013-8-14 22:59
才搜索到一个博客,原来国外的牛人已经有人在做这个了。 地址是: http://jan.stancek.eu/mips_function_runtime_detour 还是转过来 /* * detour for malloc on mips * (c) Jan Stancek, May 2010 * * At runtime, malloc beginning is overwritten to jump to my_malloc, * libc_malloc will jump to tramp ...
2100 次阅读|1 个评论 热度 1
分享 detour in mips assembly
心想事成 2013-8-14 22:55
Problem was, that addiu is "Add immediate unsigned", but immediate is still taken as sign-extended value, so the sign-bit is most likely ignored when adding the number. I changed the code to use "addu" and it works . This is the new disassembled code: ( Toggle Plain Text ) Dump of ...
1450 次阅读|0 个评论
分享 再谈劫持mips里的函数
心想事成 2013-8-14 22:37
我之前在这篇文章(http://bbs.routerclub.com/blog-681-7070.html)里介绍了劫持mips的函数,但是是for mipsl的,现在要针对mipsb的代码 需要将jmp数组里的字节码反转一下。 汇编函数仍然不变,通过as命令 lui $25,0x3000 li $1,0x0 addu $25,$25,$1 jr $25 nop 再通过ida反编译后,可以看到数组: 3C 19 30 ...
1616 次阅读|0 个评论
分享 又一个比libevent更牛的事件驱动库: RiNOO
心想事成 2013-8-10 13:21
这个是个好东东,可惜只能x64下用,而且还有其它限制。不过已经很强了! https://github.com/reginaldl/librinoo What is RiNOO RiNOO is a socket management library. RiNOO sockets are asynchronous but "appear" synchronous. This is possible by using fast-contexts (see fcontext project ). Code l ...
1747 次阅读|0 个评论
分享 终于注册了号
denglh168 2013-8-4 23:59
真高兴,一定跟大家好好学习]
2203 次阅读|0 个评论
分享 使用JavaScript修改组件中onclick事件所执行的方法
心想事成 2013-8-4 18:54
之前在项目中经常会遇到一种情况,点击同一个html组件,执行不同的方法或者功能。所以就自己写了如下的方法,比较笨,但是还可以执行。 核心代码如下: script !-- /* *功能:使用JavaScript ...
1775 次阅读|0 个评论
分享 javascript遍历所有的超链接标签,并赋予onclick事件
心想事成 2013-8-4 18:54
var arya=document.getElementsByTagName( "a" ); //获得页面上的超链接标签列表 for ( var i=0;iarya.length;i++) { if (arya .href!= "#" )&nbs ...
1702 次阅读|0 个评论

本页有 2 篇日志因作者的隐私设置或未通过审核而隐藏

QQ|Archiver|手机版|小黑屋|软路由 ( 渝ICP备15001194号-1|渝公网安备 50011602500124号 )

GMT+8, 2024-9-8 18:46 , Processed in 0.117108 second(s), 2 queries , Gzip On, Redis On.

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

返回顶部