#removed
USE PS_UserData DELETE * FROM Users_Master WHERE UserIp = ''
so much hatred all shoved in one comment, damn you're good o.oQuote:
I won't be surprinsed if your server will get hacked / ddosed and all that.. full time as from today :)
If this takes you 20 secs to add 1000 would take me a second to run
Small kids would try to use this and if their accounts would get deleted with them spam accounts, would be you to blame ? good luck.Code:USE PS_UserData DELETE * FROM Users_Master WHERE UserIp = ''
This virus scan is not real!Quote:
A small heads up to all servers that does not have a maximum IP account registration or a Re-Chapta filtered one...
This exploit will fill up your database and use a lot of wasted space, of course overheating your database server when packets gets dropped off before reaching the server.
How to use?
1) Open the tool and go to settings page.
2) Chose the server you would like to over-heat and then press on Save.
(I realize there is only 2 servers in the list but there will shortly be an update :) )
3) Head back to main page and choose the amount of accounts u would like to create.
(If it's your first time ever using this tool, please make 1 account then use it again because first time it's bugged).
4) Head to the Logs page and check the accounts that were created by the tool.
5) Max accounts is 1000 and it takes up to 20 seconds to create all 1000.
Images:
Virus scan:
Download Link:
PS! If you have a request for a server to be added to the list, please post a comment!
$ip = $_SERVER['REMOTE_ADDR'];
$conn = your server connection;
$error = "No more accounts from this address";
$sql = odbc_exec($conn, "SELECT Count(UserUID) as tot_accs FROM PS_UserData.dbo.Users_Master WHERE UserIp = '".$ip."'");
$arr = odbc_fetch_array($sql);
if($arr['tot_accs'] > 2){
return $error;
}
$ip = $_SERVER['REMOTE_ADDR'];
$conn = your server connection;
$error = "No more accounts from this address";
$sql = mssql_query($conn, "SELECT Count(UserUID) as tot_accs FROM PS_UserData.dbo.Users_Master WHERE UserIp = '".$ip."'");
$arr = mssql_fetch_array($sql);
if($arr['tot_accs'] > 2){
return $error;
$ip = $_SERVER['REMOTE_ADDR'];
$conn = your server connection;
$error = "No more accounts from this address";
$sql = $conn->prepare("SELECT Count(UserUID) as tot_accs FROM PS_UserData.dbo.Users_Master WHERE UserIp = ?");
$sql->bindValue(1, $ip, PDO::PARAM_INT);
$sql->execute();
while($row = $sql->fetchAll(PDO::FETCH_ASSOC)){
if($row['tot_accs'] > 2)
{
return $error;
}
why u releasing something that's already released other places in a comment o.o ?Quote:
Limit your registrations per ip.
ODBC //tested works
MSSQL //tested worksCode:$ip = $_SERVER['REMOTE_ADDR']; $conn = your server connection; $error = "No more accounts from this address"; $sql = odbc_exec($conn, "SELECT Count(UserUID) as tot_accs FROM PS_UserData.dbo.Users_Master WHERE UserIp = '".$ip."'"); $arr = odbc_fetch_array($sql); if($arr['tot_accs'] > 2){ return $error; }
PDO //not tested yet.Code:$ip = $_SERVER['REMOTE_ADDR']; $conn = your server connection; $error = "No more accounts from this address"; $sql = mssql_query($conn, "SELECT Count(UserUID) as tot_accs FROM PS_UserData.dbo.Users_Master WHERE UserIp = '".$ip."'"); $arr = mssql_fetch_array($sql); if($arr['tot_accs'] > 2){ return $error;
Code:$ip = $_SERVER['REMOTE_ADDR']; $conn = your server connection; $error = "No more accounts from this address"; $sql = $conn->prepare("SELECT Count(UserUID) as tot_accs FROM PS_UserData.dbo.Users_Master WHERE UserIp = ?"); $sql->bindValue(1, $ip, PDO::PARAM_INT); $sql->execute(); while($row = $sql->fetchAll(PDO::FETCH_ASSOC)){ if($row['tot_accs'] > 2) { return $error; }
<?php if(@fsockopen($_SERVER['REMOTE_ADDR'], 80, $errstr, $errno, 1))
die("Proxy access not allowed"); ?>
<ifModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP:VIA} !^$ [OR]
RewriteCond %{HTTP:FORWARDED} !^$ [OR]
RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR]
RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR]
RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]
RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$
RewriteRule .* - [F]
</ifModule>
Sorry i don't see anywhere written RELEASE. is just a comment same as yours :)Quote:
why u releasing something that's already released other places in a comment o.o ?
Brain.exe malfunctions I believe :D
Hmmm, next update is this:
PROXY SERVER ADDED!
[Only registered and activated users can see links. Click Here To Register...]
nice isn't it :) ?
such a fake message... everyone knows that it doesn't work it just give u bunch of errors -.-"Quote:
Add in your header :)
OR in .htaccessCode:<?php if(@fsockopen($_SERVER['REMOTE_ADDR'], 80, $errstr, $errno, 1)) die("Proxy access not allowed"); ?>
result [Only registered and activated users can see links. Click Here To Register...]Code:<ifModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP:VIA} !^$ [OR] RewriteCond %{HTTP:FORWARDED} !^$ [OR] RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR] RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR] RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR] RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR] RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR] RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$ RewriteRule .* - [F] </ifModule>
Regards