Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Community Cafe (http://www.bvlist.com/forumdisplay.php?f=18)
-   -   Help with xbt (http://www.bvlist.com/showthread.php?t=9757)

AutoSnipe 4th February 2014 11:22

so, you are after fake peers (Peer Injection).. there are a few apps you can download (were a hit back in 2005-2007) where you just upload the torrent file and it will just report back as a seeder.

problem been, if someone was to download said torrent.. they cant.. because nobody would have it..

spend 10 euro, buy a dedicated server from kimsufi and just have a seedbox..
looks better with your reputation especially when starting out..

XBTT is pretty much hard coded, (and in the sql it has its cleanup command time)

blacksbeard 4th February 2014 11:34

Quote:

Originally Posted by AutoSnipe (Post 43789)
so, you are after fake peers (Peer Injection).. there are a few apps you can download (were a hit back in 2005-2007) where you just upload the torrent file and it will just report back as a seeder.

problem been, if someone was to download said torrent.. they cant.. because nobody would have it..

spend 10 euro, buy a dedicated server from kimsufi and just have a seedbox..
looks better with your reputation especially when starting out..

XBTT is pretty much hard coded, (and in the sql it has its cleanup command time)

Thanks Snipe,

Quote:

Originally Posted by AutoSnipe (Post 43789)
problem been, if someone was to download said torrent.. they cant.. because nobody would have it..

I know, thats the funny part. :chch: We don't want them to be able to download We want them to freak out when they cannot.:lol: We are just targeting a local group of "frienemies"
The thing is we don't want fake seeders we want fake leechers. You can seet the numbers in the config file but like you said when the tracker updates it resets it back to 0.
Ithink the relevant function is here:

Code:

buffer += Csql_query(m_database, "(?,?,?,?),")(file.leechers)(file.seeders)(file.completed)(file.fid).read();
                file.dirty = false;
                if (buffer.size() > 255 << 10)
                    break;
            }
            if (buffer.empty())
                break;
            buffer.erase(buffer.size() - 1);
            async_query("insert into " + db_name("files") + " (" + db_name("leechers") + ", " + db_name("seeders") + ", " + db_name("completed") + ", " + db_name("fid") + ") values "
                + buffer
                + " on duplicate key update"
                + "  " + db_name("leechers") + " = values(" + db_name("leechers") + "),"
                + "  " + db_name("seeders") + " = values(" + db_name("seeders") + "),"
                + "  " + db_name("completed") + " = values(" + db_name("completed") + "),"
                + "  mtime = unix_timestamp()");
           
            buffer.clear();
        }

But I do not know how to prevent this.

AutoSnipe 4th February 2014 11:40

then the easier way to do that is to get a Fully PHP Based Tracker, and just add hundreds of peers to the peer table. and turn off the cleanup

blacksbeard 4th February 2014 11:49

Has to be xbtt. as the source of the argument was that there is a private tracker for footbal running on xbtt that everyone in the world is aware of except our targets. We were just bullshitting until the the argument developed into a wager with a £100 value. Now we have too.
Who knew that it would be this complicated? :suicide:


All times are GMT +2. The time now is 07:38.

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