Raised This Month: $51 Target: $400
 12% 

CS Chat Exploit


Post New Thread Reply   
 
Thread Tools Display Modes
Fuck For Fun
Veteran Member
Join Date: Nov 2013
Old 09-02-2014 , 15:34   Re: CS Chat Exploit
Reply With Quote #21

what the bug?

Quote:
say %s%s%s%s%s
and server crashed?
Fuck For Fun is offline
Send a message via Skype™ to Fuck For Fun
smiley92
Senior Member
Join Date: Jun 2011
Location: Romania
Old 09-02-2014 , 15:45   Re: CS Chat Exploit
Reply With Quote #22

Quote:
Originally Posted by Fuck For Fun View Post
what the bug?


and server crashed?
That is resolved is fix for that, but is another, with "# and +"
smiley92 is offline
Fuck For Fun
Veteran Member
Join Date: Nov 2013
Old 09-02-2014 , 16:18   Re: CS Chat Exploit
Reply With Quote #23

I really have no time, did you check how many codes:
Choose whatever you want.
Code:
/* Plugin generated by AMXX-Studio */

#include < amxmodx >

#define PLUGIN "Blocks Commands"
#define VERSION "1.0"
#define AUTHOR "author"

new szBlockCommands[][] = 
{ 
    "%s", "#", "+"
}

public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    
    for (new i=0; i<sizeof szBlockCommands; i++)
    {
        register_concmd(szBlockCommands[i], "check_commands")
    }
}

public check_commands() return 1;
Code:
/* Plugin generated by AMXX-Studio */

#include < amxmodx >

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"

public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    
    register_clcmd("say" , "CmdBlock");
    register_clcmd("say_team" , "CmdBlock");
}

public CmdBlock(id)
{
    new szSaid[192];
    
    read_args(szSaid, charsmax(szSaid));
    remove_quotes(szSaid);
    
    if (contain(szSaid,"#") != 1 && strlen(szSaid) > 2 )
    {
        return 1;
    }
    return 0;
}
Fuck For Fun is offline
Send a message via Skype™ to Fuck For Fun
AlexandruRO
BANNED
Join Date: Jul 2014
Location: Romania
Old 09-03-2014 , 01:02   Re: CS Chat Exploit
Reply With Quote #24

Code:
#include < amxmodx >

static const
	PLUGIN[] = "Fix bug",
	VERSION[] = "1.0",
	AUTHOR[] = "C0sm1N";

public plugin_init() {
	register_plugin(PLUGIN,VERSION,AUTHOR);
}
public client_putinserver(id) {
	set_task(0.1,"bug",id,_,_,"b")
}
public bug(id) {
	new name[32]
	get_user_name(id,name,charsmax(name))
	if(containi(name,"#cstrike") != -1 || containi(name,"%") != -1)
		server_cmd("kick #%d",get_user_userid(id))
}

public client_disconnect(id)	remove_task(id)
OR
Code:
#include < amxmodx >
#include < fakemeta >

static const
	PLUGIN[] = "Fix bug",
	VERSION[] = "2.0",
	AUTHOR[] = "C0sm1N";	//credite connor pentru pluginul de restrictionare a numelui(l-am imbinat aici)

new const szName[][] = 	//aici adaugati voi ce parti din nume sa restrictionati,ultima cu virgula
{
	"cstrike",
	"%"
}

new name[32]

public plugin_init() {
	register_plugin(PLUGIN,VERSION,AUTHOR);
	register_forward(FM_ClientUserInfoChanged,"ClientUserInfoChanged")
}
public ClientUserInfoChanged(id) 
{ 
    static const name[] = "name" 
    static szOldName[32],szNewName[32]
    pev(id,pev_netname,szOldName,charsmax(szOldName))
    if(szOldName[0]) 
    { 
        get_user_info(id,name,szNewName,charsmax(szNewName))
        if(!equal(szOldName,szNewName)) 
        { 
            set_user_info(id, name, szOldName) 
            return FMRES_HANDLED 
        } 
    } 
    return FMRES_IGNORED 
}
public client_putinserver(id) {
	static i
	get_user_name(id,name,charsmax(name))

	for(i = 0; i < sizeof szName; i++)
	{
		if(containi(name,szName[i]) != -1)
			server_cmd("kick #%d",get_user_userid(id))
	}
	set_task(0.1,"bug",id,_,_,"b")
}
public bug(id) {
	static i
	get_user_name(id,name,charsmax(name))
	for(i = 0; i < sizeof szName; i++)
	{
		if(containi(name,szName[i]) != -1)
			server_cmd("kick #%d",get_user_userid(id))
	}
}

public client_disconnect(id)	remove_task(id)
AlexandruRO is offline
Vivo
Senior Member
Join Date: May 2014
Old 09-03-2014 , 02:58   Re: CS Chat Exploit
Reply With Quote #25

Which best one, so that we all can use it until real update to fix it....
__________________
ViRuSeS # The best Servers and Host: viruses.ga
CSGO: 185.107.96.150:27015 or viruses.ga:27015
TeamSpeak3: 185.107.96.150:9987 or viruses.ga
Welcome! Good luck and have fun enjoy your time.
Vivo is offline
SpaWn2KiLl
Member
Join Date: Aug 2012
Old 11-15-2014 , 12:42   Re: CS Chat Exploit
Reply With Quote #26

I found a bug related to this.

When I'm using Metamod 1.21-am, when I block the chat messages with %s it really blocks, nothing is sent to the chat

When I'm using Metamod 1.21-p, using the same plugin that blocked %s in metamod 1.21-am it sends a message

Let's pretend that the message is: %s %s %s

Metamod 1.21-am nothing happens, it got blocked
Metamod 1.21-p we can see this message in the chat: "<NICK>: s s s"

Well, if I use this exploit: say_team @ %s%s%s%s%s%s%s%s%s%S%s%s%s%s%s%s%s%s%s%s%s%s% s%s%s%s%s%s%s%s5s%s%s%s%s%s%s%s%s%s%s%s%s5s%s %s%s%s, in metamod 1.21-am it gets blocked, in metamod 1.21-p it crashes all the clients

Can anyone fix this please?
__________________
SpaWn2KiLl is offline
GX_JazZ
Member
Join Date: Dec 2014
Old 12-14-2014 , 10:32   Re: CS Chat Exploit
Reply With Quote #27

Hi , Guys
Problem has fixed , This is fix for this bug crash :
https://forums.alliedmods.net/showthread.php?t=252997
GX_JazZ is offline
Send a message via Skype™ to GX_JazZ
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 03:11.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode