a week ago there was a hacker in NotD community, which was banned and could get back in i don't know how but he just hijacks a user session to takeover his id and the original id owner will just get disconneted, For this the Coder Of NotD "JzServices" coded an anti-steam-stealing which is
Code: Select all
//Simple Booter
#include <sourcemod>
#include <sdkhooks>
#define VERSION "1.0.0b"
public Plugin:myinfo =
{
name = "Simple Booter",
author = "JZServices",
description = "Source Bugfix",
version = VERSION,
url = "http://www.notdcommunity.com"
};
public OnClientPutInServer(client)
{
if (!IsFakeClient(client))
{
new bool:matched=false;
decl String:clientsteamid[64];
GetClientAuthString(client,clientsteamid,sizeof(clientsteamid));
for (new x=1;x<MaxClients;x++)
{
if (client==x){continue;}
if (IsClientConnected(x))
{
decl String:playersteamid[64];
GetClientAuthString(x,playersteamid,sizeof(playersteamid));
if (StrEqual(clientsteamid,playersteamid,false))
{
PrintToServer("Matched player %N - %s and %N - %s",client,clientsteamid,x,playersteamid);
ServerCommand("kickid %d", GetClientUserId(x));
matched=true;
}
}
}
if (!matched){PrintToServer("Player %N - %s validated",client,clientsteamid);}
}
}
http://sourcebans.clanfng.com/index.php ... %01&Submit
STEAM ID : PC
Steam Community : 76561197960265728
he keeps getting banned and it's no use.
and it's probably not patched due to searching : 76561197960265728
gives u alot of sourceban bans.
the most recent one (of my searching ofc) is on 7-31-2014
http://thechurchofthedeag.com/bans/inde ... Type=steam
and i don't Think these are Nonsteam because i've logged on to them + they are Vac-Secured.
Second thing.
there is an exploit where u manipulate the spray to make Valve Engine crash.
it was released in 2013 and still not fixed (although not popular nor known).
but i really don't understand how to do it exactly.
Would you guys check this out?.
Links:
http://steamcommunity.com/app/440/discu ... 612450847/
Youtube Demostration:
PS: are there any remote or file upload exploits in CSS yet?, since i have a VAC-bypass method that would bypass all bans but if i got rcon banned i can't log in back :-(.
Thanks.