| Knedels | 2006-05-15 13:44:00 |
![]() Posts: 38 Topics participated: 15 Topics started: 4 First post: 2006-05-15 13:44:00 Last post: 2007-09-04 17:03:00 |
I have a problem.I cant seeding torrents on my site, because i have a error in my client p2p:Error(tracker error(1)) or ok(dht))We cant see torrents on site, they are like dead.I reset my passkey, but that doesnt helped |
![]() |
Tracker Error
| Knedels | 2006-05-15 16:19:00 |
![]() Posts: 38 Topics participated: 15 Topics started: 4 First post: 2006-05-15 13:44:00 Last post: 2007-09-04 17:03:00 |
Pleace help :( |
![]() |
| Wilba | 2006-05-15 16:26:00 |
![]() Posts: 1462 Topics participated: 667 Topics started: 22 First post: 2006-02-25 13:08:00 Last post: 2008-12-29 14:13:00 |
post your announce file |
![]() |
| Knedels | 2006-05-15 17:22:00 |
![]() Posts: 38 Topics participated: 15 Topics started: 4 First post: 2006-05-15 13:44:00 Last post: 2007-09-04 17:03:00 |
announce.php ob_start("ob_gzhandler"); require_once("include/bittorrent.php"); require_once("include/benc.php"); hit_start(); function err($msg) { benc_resp(array("failure reason" => array(type => "string", value => $msg))); hit_end(); exit(); } function benc_resp($d) { benc_resp_raw(benc(array(type => "dictionary", value => $d))); } function benc_resp_raw($x) { header("Content-Type: text/plain"); header("Pragma: no-cache"); print($x); } foreach (array("passkey",'info_hash',"peer_id","ip","event") as $x) $GLOBALS[$x] = "" . $_GET[$x]; foreach (array("port","downloaded","uploaded","left") as $x) $GLOBALS[$x] = 0 + $_GET[$x]; if (strpos($passkey, "?")) { $tmp = substr($passkey, strpos($passkey, "?")); $passkey = substr($passkey, 0, strpos($passkey, "?")); $tmpname = substr($tmp, 1, strpos($tmp, "=")-1); $tmpvalue = substr($tmp, strpos($tmp, "=")+1); $GLOBALS[$tmpname] = $tmpvalue; } foreach (array("passkey",'info_hash',"peer_id","port","downloaded","uploaded","left") as $x) if (!isset($x)) err("Missing key: $x"); foreach (array('info_hash', "peer_id") as $x) if (strlen($GLOBALS[$x]) != 20){ // err("Invalid $x (" . strlen($GLOBALS[$x]) . " - " . urlencode($GLOBALS[$x]) . ")"); $log = fopen("log.txt" , "a+"); fwrite($log, "$GLOBALS[$x]\n"); fclose($log); err("Invalid $x (" . strlen($GLOBALS[$x]) . " - " . urlencode($GLOBALS[$x]) . ")"); } if (strlen($passkey) != 32) err("Invalid passkey (" . strlen($passkey) . " - $passkey)"); //if (empty($ip) || !preg_match('/^(\d{1,3}\.){3}\d{1,3}$/s', $ip)) $ip = getip(); $rsize = 50; foreach(array("num want", "numwant", "num_want") as $k) { if (isset($_GET[$k])) { $rsize = 0 + $_GET[$k]; break; } } $agent = $_SERVER["HTTP_USER_AGENT"]; // Deny access made with a browser... if (ereg("^Mozilla\\/", $agent) || ereg("^Opera\\/", $agent) || ereg("^Links ", $agent) || ereg("^Lynx\\/", $agent)) err("torrent not registered with this tracker"); if (!$port || $port > 0xffff) err("invalid port"); if (!isset($event)) $event = ""; $seeder = ($left == 0) ? "yes" : "no"; dbconn(false); hit_count(); $valid = @mysql_fetch_row(@mysql_query("SELECT COUNT(*) FROM users WHERE passkey=" . sqlesc($passkey))); if ($valid[0] != 1) err("Invalid passkey! Re-download the .torrent from $BASEURL"); $res = mysql_query("SELECT id, name, category, banned, seeders + leechers AS numpeers, UNIX_TIMESTAMP(added) AS ts FROM torrents WHERE " . hash_where("info_hash", $info_hash)); $torrent = mysql_fetch_assoc($res); if (!$torrent) err("torrent not registered with this tracker"); $torrentid = $torrent["id"]; $torrentname = $torrent["name"]; $torrentcategory = $torrent["category"]; $fields = "seeder, peer_id, ip, port, uploaded, downloaded, userid"; $numpeers = $torrent["numpeers"]; $limit = ""; if ($numpeers > $rsize) $limit = "ORDER BY RAND() LIMIT $rsize"; $res = mysql_query("SELECT $fields FROM peers WHERE torrent = $torrentid AND connectable = 'yes' $limit"); //////////////////////////////////////////////////// Compact Mode Support /////////////////////////////////////////////////// if($_GET['compact'] != 1) { $resp = "d" . benc_str("interval") . "i" . $announce_interval . "e" . benc_str("peers") . "l"; } else { $resp = "d" . benc_str("interval") . "i" . $announce_interval . "e5:"."peers"; } $peer = array(); while ($row = mysql_fetch_assoc($res)) { if($_GET['compact'] != 1) { $row["peer_id"] = hash_pad($row["peer_id"]); if ($row["peer_id"] === $peer_id) { $self = $row; continue; } $resp .= "d" . benc_str("ip") . benc_str($row["ip"]); if (!$_GET['no_peer_id']) { $resp .= benc_str("peer id") . benc_str($row["peer_id"]); } $resp .= benc_str("port") . "i" . $row["port"] . "e" . "e"; } else { $peer_ip = explode('.', $row["ip"]); $peer_ip = pack("C*", $peer_ip[0], $peer_ip[1], $peer_ip[2], $peer_ip[3]); $peer_port = pack("n*", (int)$row["port"]); $time = intval((time() % 7680) / 60); if($_GET['left'] == 0) { $time += 128; } $time = pack("C", $time); $peer[] = $time . $peer_ip . $peer_port; $peer_num++; } } if ($_GET['compact']!=1) $resp .= "ee"; else { for($i=0;$i<$peer_num;$i++) { $o .= substr($peer[$i], 1, 6); } $resp .= strlen($o) . ':' . $o . 'e'; } $selfwhere = "torrent = $torrentid AND " . hash_where("peer_id", $peer_id); //////////////////////////////////////////////////// End of Compact Mode Support /////////////////////////////////////////////////// if (!isset($self)) { $res = mysql_query("SELECT $fields FROM peers WHERE $selfwhere"); $row = mysql_fetch_assoc($res); if ($row) { $userid = $row["userid"]; $self = $row; } } //// Up/down stats //////////////////////////////////////////////////////////// if (!isset($self)) { $valid = @mysql_fetch_row(@mysql_query("SELECT COUNT(*) FROM peers WHERE torrent=$torrentid AND passkey=" . sqlesc($passkey))); if ($valid[0] >= 2 && $seeder == 'no') err("Connection limit exceeded! You may only leech from one location at a time."); if ($valid[0] >= 3 && $seeder == 'yes') err("Connection limit exceeded!"); $rz = mysql_query("SELECT id, uploaded, downloaded, parked, class, maxtorrents AS mt FROM users WHERE ip='$ip' AND passkey=".sqlesc($passkey)." AND enabled = 'yes' ORDER BY last_access DESC LIMIT 1") or err("Tracker error 2"); if ($MEMBERSONLY && mysql_num_rows($rz) == 0) err("Unknown passkey and host ($ip) combo. Please go to $BASEURL to sign-up or login & redownload the torrent from $BASEURL."); $az = mysql_fetch_assoc($rz); $userid = $az["id"]; //// check the peers for the userid /////////////////////// $allowedtorrents = $az["mt"]; $res = mysql_query("SELECT COUNT(*) FROM peers WHERE userid=$userid") or err("Tracker error 051"); $row = mysql_fetch_row($res); $activetorrents = $row[0]; if ($activetorrents >= $allowedtorrents){ err("Sorry, $allowedtorrents active torrents are enough! Read the FAQ!"); } ////////////////////////////////////////////////////////////////////// // if ($left > 0 && $az["class"] < UC_USER) if ($az["class"] < UC_USER) { $gigs = $az["uploaded"] / (1024*1024*1024); $elapsed = floor((gmtime() - $torrent["ts"]) / 3600); $ratio = (($az["downloaded"] > 0) ? ($az["uploaded"] / $az["downloaded"]) : 1); if ($ratio < 0.5 || $gigs < 5) $wait = 4; elseif ($ratio < 0.65 || $gigs < 6.5) $wait = 3; elseif ($ratio < 0.8 || $gigs < 8) $wait = 2; elseif ($ratio < 0.95 || $gigs < 9.5) $wait = 1; else $wait = 0; if ($elapsed < $wait) err("Brak autoryzacji (" . ($wait - $elapsed) . "h) - Przeczytaj FAQ!"); } } else { $upthis = max(0, $uploaded - $self["uploaded"]); $downthis = max(0, $downloaded - $self["downloaded"]); if ($upthis > 0 || $downthis > 0) mysql_query("UPDATE users SET uploaded = uploaded + $upthis, downloaded = downloaded + $downthis WHERE id=$userid") or err("Tracker error 3"); } #============================= #Client ban hack v2, by beeman #============================= $uagent = $_SERVER['HTTP_USER_AGENT']; $bua = mysql_query("SELECT agent FROM banned_agent") or err('Tracker error (1)'); while ($nea = mysql_fetch_array($bua)){ $n = $nea['agent']; $nr = preg_replace("/\//", "\/", $n); $neadle = "/\b$nr\b/i"; if (preg_match($neadle, $uagent)){ err("Klient zbanowany, Prosze zobacz $BASEURL aby uzyskac informacje"); } } //End client ban hack function portblacklisted($port) { // direct connect if ($port >= 411 && $port <= 413) return true; // bittorrent if ($port >= 6881 && $port <= 6889) return true; // kazaa if ($port == 1214) return true; // gnutella if ($port >= 6346 && $port <= 6347) return true; // emule if ($port == 4662) return true; // winmx if ($port == 6699) return true; return false; } $updateset = array(); if ($event == "stopped") { if (isset($self)) { mysql_query("DELETE FROM peers WHERE $selfwhere"); if (mysql_affected_rows()) { if ($self["seeder"] == "yes") $updateset[] = "seeders = seeders - 1"; else $updateset[] = "leechers = leechers - 1"; } } } else { ////// Completed_by hack /////// if ($event == "completed") { $updateset[] = "times_completed = times_completed + 1"; $res = mysql_query("SELECT completed_by FROM torrents WHERE id='$torrentid'"); $current = mysql_fetch_array($res); $name = $current["completed_by"]; $space = " "; $res = mysql_query("SELECT id FROM users WHERE ip='$ip'"); $current = mysql_fetch_array($res); $name2 = $current["id"]; $sql = "UPDATE torrents SET completed_by='$name2' '$space' '$name' '$space' WHERE id='$torrentid'"; $result = mysql_query($sql); } ///// end ///// if (isset($self)) { mysql_query("UPDATE peers SET uploaded = $uploaded, downloaded = $downloaded, to_go = $left, last_action = NOW(), seeder = '$seeder'" . ($seeder == "yes" && $self["seeder"] != $seeder ? ", finishedat = " . time() : "") . " WHERE $selfwhere"); if (mysql_affected_rows() && $self["seeder"] != $seeder) { if ($seeder == "yes") { $updateset[] = "seeders = seeders + 1"; $updateset[] = "leechers = leechers - 1"; } else { $updateset[] = "seeders = seeders - 1"; $updateset[] = "leechers = leechers + 1"; } } } else { if ($az["parked"] == "yes") err("Error, your account is parked! Please read the FAQ!"); if (portblacklisted($port)) err("Port $port is blacklisted."); else { $sockres = @fsockopen($ip, $port, $errno, $errstr, 5); if (!$sockres) $connectable = "no"; else { $connectable = "yes"; @fclose($sockres); } } $ret = mysql_query("INSERT INTO peers (connectable, torrent, peer_id, ip, port, uploaded, downloaded, to_go, started, last_action, seeder, userid, agent, uploadoffset, downloadoffset, passkey) VALUES ('$connectable', $torrentid, " . sqlesc($peer_id) . ", " . sqlesc($ip) . ", $port, $uploaded, $downloaded, $left, NOW(), NOW(), '$seeder', $userid, " . sqlesc($agent) . ", $uploaded, $downloaded, " . sqlesc($passkey) . ")"); if ($ret) { if ($seeder == "yes") $updateset[] = "seeders = seeders + 1"; else $updateset[] = "leechers = leechers + 1"; } } } if ($seeder == "yes") { if ($torrent["banned"] != "yes") $updateset[] = "visible = 'yes'"; $updateset[] = "last_action = NOW()"; } if (count($updateset)) mysql_query("UPDATE torrents SET " . join(",", $updateset) . " WHERE id = $torrentid"); benc_resp_raw($resp); hit_end(); ?> |
![]() |
| Wilba | 2006-05-15 18:35:00 |
![]() Posts: 1462 Topics participated: 667 Topics started: 22 First post: 2006-02-25 13:08:00 Last post: 2008-12-29 14:13:00 |
this is the section causing your problem #============================= #Client ban hack v2, by beeman #============================= $uagent = $_SERVER['HTTP_USER_AGENT']; $bua = mysql_query("SELECT agent FROM banned_agent") or err('Tracker error (1)'); while ($nea = mysql_fetch_array($bua)){ $n = $nea['agent']; $nr = preg_replace("/\//", "\/", $n); $neadle = "/\b$nr\b/i"; if (preg_match($neadle, $uagent)){ |
![]() |
Similar threads
| Topic | Posts | Last post |
|---|---|---|
| Error: Tracker Response Error:torrent not registered with this tracker in Tracker: | 1 | 2006-11-27 19:25:00 |
| Error: Tracker Return Code: 404, Stop! in Tracker: | 7 | 2006-06-03 08:39:00 |
| Error: Tracker Response Error torrent not register.... | 1 | 2007-07-09 23:55:00 |
| Error: Tracker Response Error:Invalid peer_id | 5 | 2006-10-24 20:11:00 |
| Error: Tracker Response Error:invalid peer_id (19 | 1 | 2006-05-14 00:28:00 |
Statistics
| Today's active topics · | |
|---|---|
| User(s) active in the past 30 minutes | |
| 42 Guests, 11 Members sturmxwind, zlavick, MicroLoooL, garanhaomen, vrabchy, Ran1989, SoldieR4o, ==V==, AcDie, Mirai, ZeK zdjęcia , nieruchomości rzeszów , Airport limo chicago , Fotografia ślubna , okna drewniane szukaj mp3 Kredyty hipoteczne na firmę bingo online Wierszyki Kredyty na zakup samochodu | |
| Often viewed topics | |
| · theme system · Stats on index · torrent uppload... · last 10 forum ... · Null Announce. · Invite With Bonus · Question about ... · Preliminary XSS... · Torrent Inline ... · Similar torrent... · Pre-time withou... · Browse.php · hash fails???:S · browse.php · Inactive Member... · User/ID · Problem with ID... · new Message · Ratio Master · navigation in f... | |
| Forthcoming Calendar Events within the next 5 days | |
| There are no forthcoming calendar events | |


