SA-MP Forums Archive
Dialog hack tool - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Dialog hack tool (/showthread.php?tid=409015)



Dialog hack tool - Unknownich - 20.01.2013

Hi guys,
Last night some dickless nerd attacked my server with some strange hack,

Quote:

[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID
[22:11:03] Warning: PlayerDialogResponse PlayerId: 0 dialog ID doesn't match last sent dialog ID

I have banned him but I dont know how to detect this.
Is there any good solution for this problem?


Re: Dialog hack tool - Mado - 21.01.2013

pawn Код:
if(!IsNull(inputtext))
    {
        if(strfind(inputtext, "%s", true) != -1)
        {
            Kick(playerid);
            return 1;
        }
    }



Re: Dialog hack tool - Unknownich - 21.01.2013

Quote:
Originally Posted by Mado
Посмотреть сообщение
pawn Код:
if(!IsNull(inputtext))
    {
        if(strfind(inputtext, "%s", true) != -1)
        {
            Kick(playerid);
            return 1;
        }
    }
Thx for suggestion, did you tested this code?


AW: Re: Dialog hack tool - Blackazur - 21.01.2013

Quote:
Originally Posted by Unknownich
Посмотреть сообщение
Thx for suggestion, did you tested this code?
Also i tested it not, but i think it should working.


Re: Dialog hack tool - ikkentim - 21.01.2013

That doesn't seem like that should work. That just detects %s when the inputtext is not null.

AFAIK you can not detect this. just like external RCON connections failing to login


Re: Dialog hack tool - Mado - 21.01.2013

Quote:
Originally Posted by Unknownich
Посмотреть сообщение
Thx for suggestion, did you tested this code?
Yes I did and it works for me. I use this code on my own script, but then with some additional stuff (admins receive a warning, etc).