 |
~perl php webclicker~ |
 |
17. July 2007, 03:11
|
#1 (permalink)
|
|
EDMİNİSTIR
Üyelik tarihi: Jun 2007
Uye No: 38
Mesajlar: 34
Seviye: 4 [  ] Aktiflik: 0 / 89 Güç: 11 / 380 Deneyim: 59%
Ettiği Teşekkür: 0
9 Mesajına 10 Kere Teşekkür Edlidi
Tepki Sayısı: 0
4 Mesajına 5 Kere Tepki Gösterildi
Tecrübe Puanı: 20
|
~perl php webclicker~
~php - Perl~ Webclicker
php
<?
####################################
# (C)oded by h4ckinger
# Hackinger's Web Page: [Yalnızca Kayıtlı Üyeler Linkleri Görebilir. Ücretsiz Üye Olmak İçin Tıklayınız!]
# plz send e-mail me when u find a bug in this script
# mail:hackingerboy@gmail.com
# h4ckinger's webclicker ~php~
# greatz ;
# Darkcode,CyberGhost,excellance,redLine,RealWarrior ,The_BeKiR,****llicali,bolivar...
# and All my Friends...
####################################
error_reporting(0);#hata vermesin
set_time_limit(0);#timeout olmayalım
#Değişkenlerimiz>>
$site=$_POST['site'];
$kac=$_POST['kac'];
#Değişkenler end<<
#head >>
echo "<title>PHP WebClicker (c) h4ckinger</title>";
#bu style miz
echo "<style>
body{margin:0px;font-style:normal;font-size:10px;color:#FFFFFF;font-family:Verdana,Arial;background-color:#3a3a3a;scrollbar-face-color: #303030;scrollbar-highlight-color: #5d5d5d;scrollbar-shadow-color: #121212;scrollbar-3dlight-color: #3a3a3a;scrollbar-arrow-color: #9d9d9d;scrollbar-track-color: #3a3a3a;scrollbar-darkshadow-color: #3a3a3a;}
input,
.kbrtm,select{background:#303030;color:#FFFFFF;fon t-family:Verdana,Arial;font-size:10px;vertical-align:middle; height:18; border-left:1px solid #5d5d5d; border-right:1px solid #121212; border-bottom:1px solid #121212; border-top:1px solid #5d5d5d;}
button{background-color: #666666; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}
body,td,th { font-family: verdana; color: #d9d9d9; font-size: 11px;}body { background-color: #000000;}
</style>";
#bu about popup ımız
echo "<SCRIPT LANGUAGE=\"JavaScript\">
<!-- Begin
function win() {
msg=window.open(\"\",\"msg\",\"toolbar=no,location =no,directories=no,status=no,menubar=no,width=270, height=200,left=380,top=80\");
msg.document.write(\"<style>body{margin:0px;font-style:normal;font-size:10px;color:#FFFFFF;font-family:Verdana,Arial;background-color:#3a3a3a;scrollbar-face-color: #303030;scrollbar-highlight-color: #5d5d5d;scrollbar-shadow-color: #121212;scrollbar-3dlight-color: #3a3a3a;scrollbar-arrow-color: #9d9d9d;scrollbar-track-color: #3a3a3a;scrollbar-darkshadow-color: #3a3a3a;}input,.kbrtm,select{background:#303030;co lor:#FFFFFF;font-family:Verdana,Arial;font-size:10px;vertical-align:middle; height:18; border-left:1px solid #5d5d5d; border-right:1px solid #121212; border-bottom:1px solid #121212; border-top:1px solid #5d5d5d;}button{background-color: #666666; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}body,td,th { font-family: verdana; color: #d9d9d9; font-size: 11px;}body { background-color: #000000;} </style><html><title>About</title>\");
msg.document.write(\"<center><b>About of Script</b><hr><br>(c)oded by <b><font color=green>h4ckinger</font></b><br>web:www.hackinger.org<br>mail:hackingerboy@g mail.com<br>plz send mail me when u discoverz bugy:]</center>\");
msg.document.write(\"</body></html>\");
}
// End -->
</script>";
#buda yukarıdaki table
echo "<br><TABLE style=\"BORDER-COLLAPSE: collapse\" cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"100%\" bgColor=#303030 borderColorLight=#666666 border=1><tr><td width=\"100%\">
<b><center><font face=tahoma>Hackinger's WebClicker ~php~<br>(C)oded by h4ckinger © www.hackinger.org</font><center><b>
</td></tr></table><br><br><br>";
echo "<TABLE style=\"BORDER-COLLAPSE: collapse\" cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"100%\" bgColor=#303030 borderColorLight=#666666 border=1><tr><td width=\"100%\">";
#buda aşağıdaki table
echo "<table align=center><td>
<div align=center>
<form action=\"\" method=post>
<tr class=tr1><td class=td1 width=30% align=center><b>Page</b></td><td class=td1 >
<input name=\"site\" class=\"yazi\" type=\"text\" value=\"http://\"></td></tr>
<tr class=tr1><td class=td1 width=30% align=center><b>Repeat</b></td><td class=td1 >
<input type=text name=kac value=10></td></tr>
<tr class=tr1><td class=td1 width=30% align=center></td><td class=td1 >
<input type=\"submit\" name=\"submit\" value=\" 0ke \" class=\"yazi\" /> <input type=\"button\" onclick=\"javascript :win();\" value=\"About \" class=\"yazi\" /></td></tr>
</form>
</div></td></tr></table>";
echo "</td></tr></table>";
#head end<<
#ana kodlar
if($site && $kac && is_numeric($kac) && substr($site,0,7)=="http://"){
#post dan site parametresine ait değer gelmişse ve post dan kac parametresine ait değer gelmişse ve kac dan gelen değer numeric ise ve site değişkeninin ilk 7 karakteri http:// ise
for($i=0;$i<=$kac;$i++){
#kac değişkeni kadar kodları işlet
file_get_contents($site);#döngü boyunca baglan,sockete ne gerek var şimdi :]
}
}
?>
perl
#!/usr/bin/perl
####################################
# (C)oded by h4ckinger
# Hackinger's Web Page: [Yalnızca Kayıtlı Üyeler Linkleri Görebilir. Ücretsiz Üye Olmak İçin Tıklayınız!]
# plz send e-mail me when u find a bug in this script
# mail:hackingerboy@gmail.com
# h4ckinger's perl webclicker
# greatz ;
# Darkcode,CyberGhost,excellance,redLine,RealWarrior ,The_BeKiR,Mardinli,RiceBoy,****llicali,bolivar,Ko sova-X...
# and All my Friends...
####################################
use LWP::Simple;
$site=$ARGV[0];
$kac=$ARGV[1];
if(@ARGV<2){&usage}
else{
if(int($kac)){
for($i=0;$i<=$kac;$i++){
get($site) || die "Site adresi yanlis\n";
}
print "$kac tane hiti artirilmisitir";
}
else {print "Numeric bir sayi girin";}
}
sub usage{
print q[
WebClicker Perl Version
Coded by h4ckinger
usageerl webclicker.pl [Yalnızca Kayıtlı Üyeler Linkleri Görebilir. Ücretsiz Üye Olmak İçin Tıklayınız!] <hit>
exmerl webclicker.pl [Yalnızca Kayıtlı Üyeler Linkleri Görebilir. Ücretsiz Üye Olmak İçin Tıklayınız!] 20
];
}
|
|
|
|
 |
| Seçenekler |
|
|
| Stil |
Konuyu değerlendir |
Normal
|
|
Yetkileriniz
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML-KodlarıKapalı
|
|
|
|
Bütün Zaman Ayarları WEZ +3 olarak düzenlenmiştir. Şu Anki Saat: 00:32 . |
|
|
|
173, 171, 172, 170, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 249, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 259, 52, 53, 54, 56, 57, 58, 248, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 158, 237, 168, 183, 179, 160, 175, 178, 167, 162, 163, 164, 165, 166, 1, 176, 177, 180, 181, 182, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 201, 200, 199, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 222, 219, 220, 221, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285,
|
|