Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   Template Shares v3.1 Nulled (http://www.bvlist.com/showthread.php?t=104)

UzAkLArDaN 2nd January 2008 21:18

Template Shares v3.1 Nulled
 
3 Attachment(s)
Installing to "localhost" using XAMPP


attention

Attention

Video Tutorial






The people who cannot login into staff panel use the code below:

Copy the code go to "root/admin" folder and edit the "staffpanel.php" by using notepad.
Code:

$rootpath = "./../";
include($rootpath . 'include/bittorrent.php');
gzip();
dbconn();
loggedinorreturn();
maxsysop();

if ($usergroups['canstaffpanel'] == 'no' OR $usergroups['canstaffpanel'] != 'yes') {
        print_no_permission(true);
        exit;
}

$action = isset($_POST['action']) ? htmlspecialchars($_POST['action']) : (isset($_GET['action']) ? htmlspecialchars($_GET['action']) : '');

if (isset($_SESSION["wpincode"]) && $_SESSION["wpincode"] >= 5) {
        sql_query("UPDATE users set enabled = 'no' WHERE id = ".sqlesc($CURUSER['id']));
        stderr("Error","Access Denied! You have been exceed your max pincode attempts therefore we have been disabled your account.");
}
$sql = sql_query("SELECT * FROM pincode WHERE area = 2 LIMIT 1");
$res = mysql_fetch_array($sql);
$sechash = $res['sechash'];
$pincode = $res['pincode'];

if (isset($_SESSION['wpincode']) && $_SESSION['wpincode'] >= 5) {
        sql_query("UPDATE users set enabled = 'no' WHERE id = ".sqlesc($CURUSER['id']));
        stderr("Error", "Access Denied! You have been exceed your max pincode attempts therefore we have been disabled your account.");
        die;
}
$sql = sql_query("SELECT * FROM pincode WHERE area = 1 LIMIT 1");
$res = mysql_fetch_array($sql);
$sechash = $res['sechash'];
$pincode = $res['pincode'];

if ($action == 'checkpincode') {
        $userpincode = trim($_POST['pincode']);
        $userpincode = md5(md5($sechash).md5($userpincode));
        if ($userpincode != $pincode) {
                if (isset($_SESSION['wpincode']))
                        ++$_SESSION['wpincode'];
                else
                {
                        session_register('wpincode');
                        ++$_SESSION['wpincode'];
                }
                stderr('Error','Invalid PINCODE!');
        }
        else {
                unset($_SESSION['wpincode']);
                $_SESSION['pincode_settings'] = $userpincode;
                header('Location: settings.php?action=showmenu');
        }
}
if (empty($_SESSION['pincode_settings']) || $_SESSION['pincode_settings'] != $pincode) {
        stdhead("Website Settings by xam ".S_VERSION." - Pincode");
?>


Please Enter Pincode to continue:



        stdfoot();
        die;
}
stdhead("Staff Panel");

begin_frame("WELCOME TO ".strtoupper($SITENAME)." - STAFF PANEL");
print("
");
print("
\n");

///////////////////// Remove And Edit Options Sys.Admin \\\\\\\\\\\\\\\\\\\\\\\\\\\\

$sure = $_GET['sure'];
if($sure == "yes") {
$delsosadminid = (int)$_GET['delsosadminid'];
$query = "DELETE FROM sysoppanel WHERE id=" .sqlesc($delsosadminid) . " LIMIT 1";
$sql = sql_query($query);
echo("The option is successfully removed![ Back ]");
end_frame();
print("
");
stdfoot();
die();
}
$delsosadminid = (int)$_GET['delsosadminid'];
$name = trim(htmlspecialchars($_GET['mod']));
if($delsosadminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("You and in the truth wish to remove an option? ($name) ( Yes! / No! )");
}
end_frame();
print("
");
stdfoot();
die();
}

$editsosadmin = (int)$_GET['editsosadmin'];
if($editsosadmin == 1) {
$id = (int)$_GET['id'];
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$query = "UPDATE sysoppanel SET
name = ".sqlesc($mod_name).",
url = ".sqlesc($mod_url).",
info = ".sqlesc($mod_info)."
WHERE id=".sqlesc($id);
$sql = sql_query($query);
if($sql) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("");
echo("");
echo("
It is successfully changed[ Back ]
");
}
end_frame();
print("");
stdfoot();
die();
}
}
$editsosadminid = (int)$_GET['editsosadminid'];
$name = trim(htmlspecialchars($_GET['name']));
$url = trim(htmlspecialchars($_GET['url']));
$info = trim(htmlspecialchars($_GET['info']));
if($editsosadminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("
");
echo("");
echo("
At present you change an option \"$name\"
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Option:
URL-file:
Info:
");
}
end_frame();
print("");
stdfoot();
die();
}
///////////////////// Remove And Edit Options Admin \\\\\\\\\\\\\\\\\\\\\\\\\\\\

$suree = $_GET['suree'];
if($suree == "yes") {
$deladminid = (int)$_GET['deladminid'];
$query = "DELETE FROM adminpanel WHERE id=" .sqlesc($deladminid) . " LIMIT 1";
$sql = sql_query($query);
echo("The option is successfully removed![ Back ]");
end_frame();
print("");
stdfoot();
die();
}
$deladminid = (int)$_GET['deladminid'];
$nameadmin = htmlspecialchars(trim($_GET['admin']));
if($deladminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("You and in the truth wish to remove an option? ($nameadmin) ( Yes! / No! )");
}
end_frame();
print("");
stdfoot();
die();
}

$editadmin = (int)$_GET['editadmin'];
if($editadmin == 1) {
$id = (int)$_GET['id'];
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$query = "UPDATE adminpanel SET
name = ".sqlesc($mod_name).",
url = ".sqlesc($mod_url).",
info = ".sqlesc($mod_info)."
WHERE id=".sqlesc($id);
$sql = sql_query($query);
if($sql) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("");
echo("");
echo("
It is successfully changed[ Back ]
");
}
end_frame();
print("");
stdfoot();
die();
}
}

$editadminid = (int)$_GET['editadminid'];
$name = trim(htmlspecialchars($_GET['name']));
$url = trim(htmlspecialchars($_GET['url']));
$info = trim(htmlspecialchars($_GET['info']));
if($editadminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("
");
echo("");
echo("
At present you change an option \"$name\"
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Option:
URL-file:
Info:
");
}
end_frame();
print("");
stdfoot();
die();
}

///////////////////// Remove And Edit Options Moderator \\\\\\\\\\\\\\\\\\\\\\\\\\\\

$sureee = $_GET['sureee'];
if($sureee == "yes") {
$delmodid = (int)$_GET['delmodid'];
$query = "DELETE FROM modpanel WHERE id=" .sqlesc($delmodid) . " LIMIT 1";
$sql = sql_query($query);
echo("The option is successfully removed![ Back ]");
end_frame();
print("");
stdfoot();
die();
}
$delmodid = (int)$_GET['delmodid'];
$namemod = htmlspecialchars(trim($_GET['mod']));
if($delmodid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("You and in the truth wish to remove an option? ($namemod) ( Yes! / No! )");
}
end_frame();
print("");
stdfoot();
die();
}

$editmod = (int)$_GET['editmod'];
if($editmod == 1) {
$id = (int)$_GET['id'];
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$query = "UPDATE modpanel SET
name = ".sqlesc($mod_name).",
url = ".sqlesc($mod_url).",
info = ".sqlesc($mod_info)."
WHERE id=".sqlesc($id);
$sql = sql_query($query);
if($sql) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("");
echo("");
echo("
It is successfully changed[ Back ]
");
}
end_frame();
print("");
stdfoot();
die();
}
}

$editmodid = (int)$_GET['editmodid'];
$name = trim(htmlspecialchars($_GET['name']));
$url = trim(htmlspecialchars($_GET['url']));
$info = trim(htmlspecialchars($_GET['info']));
if($editmodid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("
");
echo("");
echo("
At present you change an option \"$name\"
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Option:
URL-file:
Info:
");
}
end_frame();
print("");
stdfoot();
die();
}


///////////////////// Add new options \\\\\\\\\\\\\\\\\\\\\\\\\\\\
$add = $_GET['add'];
if($add == 'true') {
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$cppanel = trim(htmlspecialchars($_GET['cppanel']));
unset($message);
if ($mod_name == '' OR $mod_url == '') {
        $message = 'Don\'t leave any fields blank';
}else{
$query = "INSERT INTO $cppanel SET name = ".sqlesc($mod_name).", url = ".sqlesc($mod_url).", info = ".sqlesc($mod_info);
$sql = sql_query($query);
if($sql) {
        $message = 'New option has been added.';
} else {
        $message = 'Database error.';
}
}
header("Location:  " . $_SERVER['SCRIPT_NAME'] . "?message=".$message);
}
if (get_user_class() >= UC_SYSOP) {
        if ($_GET['message'])
                $msg = "[b]".htmlspecialchars(trim($_GET['message']));
        else
                $msg = "ADD NEW OPTION";
echo $msg."
";
print("
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Name:
URL-file:
Info:
Option for:
");
}
echo("
");
echo("
");

///////////////////// Sys.Admin Only \\\\\\\\\\\\\\\\\\\\\\\\\\\\
if (get_user_class() >= UC_SYSOP) {
echo("

FOR SYSOP'S ONLY

");
print("
");
print("");
echo("");
$query = "SELECT * FROM sysoppanel WHERE 1=1 ORDER by NAME";
$sql = sql_query($query);
while ($row = mysql_fetch_array($sql)) {
$id = $row['id'];
$name = $row['name'];
$url = str_replace("admin/", "", $row["url"]);

$info = $row['info'];

echo("");
}
print("
NAME/URLINFOEDITDELETE
$name $info
");
print("
");
print("
");
}
///////////////////// Admin Only \\\\\\\\\\\\\\\\\\\\\\\\\\\\
if (get_user_class() >= UC_ADMINISTRATOR) {
echo("

FOR ADMINISTRATOR'S ONLY

");
print("
");
print("");
echo("");
$query = "SELECT * FROM adminpanel WHERE 1=1 ORDER by NAME";
$sql = sql_query($query);
while ($row = mysql_fetch_array($sql)) {
$id = $row['id'];
$name = $row['name'];
$url = str_replace("admin/", "", $row["url"]);
$info = $row['info'];

echo("");
}
print("
NAME/URLINFOEDITDELETE
$name $info
");
print("
");
print("
");
}
///////////////////// Moderator Only \\\\\\\\\\\\\\\\\\\\\\\\\\\\
echo("

FOR MODERATOR'S ONLY

");
print("
");
print("");
echo("");
$query = "SELECT * FROM modpanel WHERE 1=1 ORDER by NAME";
$sql = sql_query($query);
while ($row = mysql_fetch_array($sql)) {
$id = $row['id'];
$name = $row['name'];
$url = str_replace("admin/", "", $row["url"]);
$info = $row['info'];

echo("");
}
print("
NAME/URLINFOEDITDELETE
$name $info
");
end_frame();
end_frame();
stdfoot();
?>
Other version of TS SE: v2.5 v3.3 v3.4 v3.5 v4.0 v4.3


Note: These are not nulled!
blur13th 1st March 2008 00:32

Re: TS SE v3.1 Nulled
 
I installed this and it works good. but i have a little problem.

When i download torrent file like "abcd.torrent" , IE6 changes filename to "abcd[1].torrent".

FF2 works perfectly but IE6.


how to fix it?

here my download.php

Code:

require_once ($rootpath . 'include/bittorrent.php');
dbconn();
loggedinorreturn();
maxsysop ();
parked();

@ini_set('zlib.output_compression', 'Off');
@set_time_limit(0);

if (@ini_get('output_handler') == 'ob_gzhandler' AND @ob_get_length() !== false)
{        // if output_handler = ob_gzhandler, turn it off and remove the header sent by PHP
        @ob_end_clean();
        header('Content-Encoding:');
}

getvar('id');
int_check($id,true);

$gigs = $CURUSER['downloaded'] / (1024*1024*1024);
$ratio = (($CURUSER['downloaded'] > 0) ? ($CURUSER['uploaded'] / $CURUSER['downloaded']) : 0);

if (($CURUSER['downloadpos'] == 'no' OR $usergroups['candownload'] == 'no' OR $usergroups['candownload'] != 'yes') OR ($gigs > '5' AND $ratio <= 0.4 AND $CURUSER['downloaded'] <> 0)) {
        print_no_permission();
        exit;
}

$res = sql_query("SELECT torrents.name, torrents.filename, torrents.size, torrents.owner, categories.minclassread AS minclassread FROM torrents LEFT JOIN categories ON torrents.category = categories.id WHERE torrents.id = ".sqlesc($id)) or sqlerr(__FILE__, __LINE__);
$row = mysql_fetch_array($res);

if ($CURUSER['class'] < $row['minclassread'])
        print_no_permission();

$fn = "$torrent_dir/$id.torrent";

if (!$row || !is_file($fn) || !is_readable($fn))
        httperr();

sql_query("UPDATE torrents SET hits = hits + 1 WHERE id = ".sqlesc($id)) or sqlerr(__FILE__, __LINE__);

require_once ($rootpath . 'include/benc.php');

if (strlen($CURUSER['passkey']) != 32) {
        $CURUSER['passkey'] = md5($CURUSER['username'].get_date_time().$CURUSER['passhash']);
        sql_query("UPDATE users SET passkey=".sqlesc($CURUSER['passkey'])." WHERE id=".sqlesc($CURUSER['id']));
}

$dict = bdec_file($fn, (1024*1024));
$dict['value']['announce']['value'] = $BASEURL.'/announce.php?passkey='.$CURUSER['passkey'];
$dict['value']['announce']['string'] = strlen($dict['value']['announce']['value']).":".$dict['value']['announce']['value'];
$dict['value']['announce']['strlen'] = strlen($dict['value']['announce']['string']);

if($CURUSER['id'] != $row['owner'])
        sql_query("INSERT INTO torrent_hit (uid,id,name,size) VALUES(".sqlesc($CURUSER['id']).", ".sqlesc($matches[1]).", ".sqlesc($row['name']).", ".sqlesc($row['size']).")") or sqlerr(__FILE__, __LINE__);

header ("Expires: Tue, 1 Jan 1980 00:00:00 GMT");
header ("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header ("Cache-Control: no-store, no-cache, must-revalidate");
header ("Cache-Control: post-check=0, pre-check=0", false);
header ("Pragma: no-cache");
header ("X-Powered-By: ".VERSION." (c) ".date("Y")." ".$SITENAME);
header ("Accept-Ranges: bytes");
header ("Connection: close");
header ("Content-Transfer-Encoding: binary");
header ("Content-Type: application/x-bittorrent");
header ("Content-Disposition: attachment; filename=\"".$row["filename"]);
ob_implicit_flush(true);
print(benc($dict));
?>


blur13th 2nd March 2008 00:51

Re: TS SE v3.1 Nulled
 
how can i use agent ban hack?

i don't know how to deal with " agent ban " in staff panel.

i want to know the way to ban or unban clients.

now, i can't use bitcomet 0.99 at all.

please help me.

djlee 9th March 2008 05:43

Re: TS SE v3.1 Nulled
 
want a tip .. dont

do not allow bitcomet if you are opening a private tracker ... it has already been stopped for possible ratio problems

never mind the fact that it used to fook about with tracker swarms (do not kno about current version thats why i said "used" lol)

wMan 4th April 2008 15:10

Re: TS SE v3.1 Nulled
 
this is total crap set pincode for staff panel doesnt work,how do you get users to shout in shoutbox
:mad: :sos: :blink: :shock:

oem 10th April 2008 21:07

Re: TS SE v3.1 Nulled
 
hmmm.....works fine but i get this all the time..'

An error has occcured!
Unable to upload torrent!

wMan 11th April 2008 17:00

Re: TS SE v3.1 Nulled
 
actually this isnt nulled i tried it on a test site still as callback function in it

sharky 30th April 2008 10:48

Re: TS SE v3.1 Nulled
 
can someone re-upload the source? Cuz i'm interested in ripping the ajax rating from this source. and if i succeed i will post it here. cheers

thedizzy 1st May 2008 12:08

Re: TS SE v3.1 Nulled
 
Can we find someone who can null ts special v4.3 ? :) :hi:

djlee 1st May 2008 20:40

Re: TS SE v3.1 Nulled
 
if we knew someone dont u think we would have done it already ..

i dont see why people still devote CPU power to nulling this source to be honest .. i mean if your silly enough to use it then your silly enough to pay for it in my opinion


All times are GMT +2. The time now is 12:05.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.