[Off] (Pawn) bProteзгo. Anti Hacking
#1

https://sampforum.blast.hk/showthread.php?tid=386231

^
i

Lancado





Como alguns sabem. Estou criando um anti hacking com algumas funзхes ..

Inicialmente estou primando para a simplificaзгo do filterscript e eficiкncia do mesmo. Tambйm estou desenvolvendo voltado para os hackings mais conhecidos e que estгo dando mais problemas atualmente.

Segue aqui o trecho de versгo em desenvolvimento:
-> http://pastebin.com/Zm5fgEER


Porque em OnPlayerUpdate? Porque й alн que eu tive o melhor detalhe. Isto й, algumas funзхes que interferem em deteзгo de hackings estгo sendo hockeadas/redefinidas nativamente e nisto eu quero uma base sуlida de verifiзгo, que tenha pouco intervalo de tempo. Nгo darб lag pois tem condicionais bem condicionadas. rs. Como podem ver, OnPlayerUpdate foi essencial para o Anti Teleport, Anti Freeze e Anti Ammo hack ..

O motivo real de eu criar este tуpico й demonstrar o desenvolvimento. Tanto como pedir dicas de sistemas preventivos para aplicar no filterscript. Dicas para novos itens.

Sendo mais direto:
Qual problema de cheats principal no seu servidor? Qual seria a lуgica usada para bloquear isto?

Abraзos galera.
Quote:
Originally Posted by [FeK]DraKiNs
Посмотреть сообщение
Foi atualizado e colocado novas funcionalidades no anti hacking !! Este ainda nгo й o lanзamento real, mas todos estгo convidados para testarem a include

Й sу colocar como #include, as callbacks jб estгo hookeadas .. As seguintes funcionalidade foram implementadas:


// Detectar:
// bots,
// ataques ddos
// fake kill
// player surf vehicle (cleo)
// player car teleport
// car teleport player
// player state hack (player push/get cars) car mass spawn
// weapon hack
// ammo hack
// no reload hack
// freeze hack
// score hack
// hack
// ofensa
// flood
// spam
// publicaзгo
// teleport
// air break
// high ping
// anti spider car hack,
// cprace hack
// speed hack
// fly hack
// anti god mode
// sync lag shoot
// armour hack


Apуs plugar, deve colocar a seguinte callback:

pawn Код:
forward OnPlayerHacking(playerid, hackid);
public OnPlayerHacking(playerid, hackid) {

    if(hackid == PLAYER_BOT_LEVEL1) {
        SendClientMessage(playerid, -1, "noob para de ddos no meu sv ");
        Kick(playerid);
    }
    if(hackid == PLAYER_BOT_LEVEL2) {
        SendClientMessage(playerid, -1, "noob para de ddos no meu sv ");
        Kick(playerid);
    }
    if(hackid == PLAYER_BOT_LEVEL3) {
        SendClientMessage(playerid, -1, "noob para de ddos no meu sv BAN ");
        BanEx(playerid, "fdppp");
    }

    if(hackid == PLAYER_DEATHFLOOD_LEVEL1 || PLAYER_DEATHFLOOD_LEVEL2 == hackid || PLAYER_DEATHFLOOD_LEVEL3 == hackid) {
        SendClientMessage(playerid, -1, "noob para de fake kill");
    }

    if(hackid == PLAYER_SURF_VEHICLE) {
        SendClientMessage(playerid, -1, "noob para de surf vehicle");
    }

    if(hackid == PLAYER_SURF_VEHICLE) {
        SendClientMessage(playerid, -1, "noob para de surf vehicle");
    }

    if(hackid == PLAYER_CAR_TELEPORT) {
        SendClientMessage(playerid, -1, "noob para de car teleport");
    }

    if(hackid == PLAYER_STATE_HACK) {
        SendClientMessage(playerid, -1, "noob para de state hack");
    }

    if(hackid == PLAYER_FREEZE_HACK) {
        SendClientMessage(playerid, -1, "noob para de freeze hack");
    }

    if(hackid == PLAYER_SCORE_HACK) {
        SendClientMessage(playerid, -1, "noob para de score hack");
    }

    if(hackid == PLAYER_MONEY_HACK) {
        SendClientMessage(playerid, -1, "noob para de money hack");
    }
    if(hackid == PLAYER_PUBLISH_TEXT) {
        SendClientMessage(playerid, -1, "ninguem quer entrar no teu sv noob");
    }
    if(hackid == PLAYER_OFFEND_TEXT) {
        SendClientMessage(playerid, -1, "vtnc, para de ofende os outros fdp");
    }
    if(hackid == PLAYER_FLOOD_TEXT) {
        SendClientMessage(playerid, -1, "calma ai mermгo, rlx cuca");
    }
   
    if(hackid == PLAYER_TELEPORT_HACK) {
        SendClientMessage(playerid, -1, "preguiзoso, USA CARRO mas nгo teleport !!1");
    }
    if(hackid == PLAYER_WEAPON_HACK) {
        SendClientMessage(playerid, -1, "nгo usa weapon hack po");
    }
    if(hackid == PLAYER_AMMO_HACK) {
        SendClientMessage(playerid, -1, "fdp nao usa ammo hack");
    }
    if(hackid == PLAYER_NORELOAD_HACK) {
        SendClientMessage(playerid, -1, "fdp nao usa no reload hack");
    }
    if(hackid == PLAYER_AIRBREAK_HACK) {
        SendClientMessage(playerid, -1, "fdp para de usa no airbreak hack");
    }
    if(hackid == PLAYER_SPIDER_HACK) {
        SendClientMessage(playerid, -1, "fdp para de usa no spider car");
    }
    if(hackid == PLAYER_CPRACE_HACK) {
        SendClientMessage(playerid, -1, "fdp para de usa no cprace hack");
    }
    if(hackid == PLAYER_SPEED_HACK) {
        SendClientMessage(playerid, -1, "fdp para de usa no speed hack");
    }
    if(hackid == PLAYER_FLY_HACK) {
        SendClientMessage(playerid, -1, "fdp para de nadar no cйu !!1");
    }

    return true;
}
http://pastebin.com/Zm5fgEER

Por Bruno e Paulor. Include ainda nгo finalizada, precisa de mais coisas e mais ajustes do que imaginбvamos.
Reply


Messages In This Thread
(Pawn) bProteзгo. Anti Hacking - by ipsBruno - 27.06.2012, 05:49
Re: (Pawn) bProteзгo. Anti Hacking - by Rick_DR - 27.06.2012, 10:08
Re: (Pawn) bProteзгo. Anti Hacking - by Edu33 - 27.06.2012, 10:20
Re: (Pawn) bProteзгo. Anti Hacking - by ViniBorn - 27.06.2012, 14:51
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 27.06.2012, 15:28
Re: (Pawn) bProteзгo. Anti Hacking - by Vitor_Gorzoni - 27.06.2012, 15:47
Re: (Pawn) bProteзгo. Anti Hacking - by [JD]BlackFire - 27.06.2012, 15:55
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 27.06.2012, 16:25
Re: (Pawn) bProteзгo. Anti Hacking - by leonardo1434 - 27.06.2012, 16:29
Re: (Pawn) bProteзгo. Anti Hacking - by paulor - 27.06.2012, 16:52
Re: (Pawn) bProteзгo. Anti Hacking - by Edu33 - 27.06.2012, 17:05
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 27.06.2012, 17:09
Re: (Pawn) bProteзгo. Anti Hacking - by BreakDriFT - 27.06.2012, 17:13
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 27.06.2012, 17:15
Re: (Pawn) bProteзгo. Anti Hacking - by paulor - 27.06.2012, 17:17
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 27.06.2012, 17:21
Re: (Pawn) bProteзгo. Anti Hacking - by paulor - 27.06.2012, 19:50
Re: (Pawn) bProteзгo. Anti Hacking - by Mr.Hardy - 27.06.2012, 21:22
Re: (Pawn) bProteзгo. Anti Hacking - by paulor - 27.06.2012, 21:55
Re: (Pawn) bProteзгo. Anti Hacking - by Mr.Hardy - 27.06.2012, 23:11
Re: (Pawn) bProteзгo. Anti Hacking - by BreakDriFT - 28.06.2012, 01:29
Respuesta: (Pawn) bProteзгo. Anti Hacking - by Luciano* - 28.06.2012, 02:52
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 28.06.2012, 03:06
Re: (Pawn) bProteзгo. Anti Hacking - by StrondA_ - 28.06.2012, 13:50
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 28.06.2012, 16:06
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 28.06.2012, 16:16
Re: (Pawn) bProteзгo. Anti Hacking - by .FuneraL. - 28.06.2012, 16:19
Re: (Pawn) bProteзгo. Anti Hacking - by paulor - 28.06.2012, 16:23
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 28.06.2012, 16:40
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 28.06.2012, 16:54
Re: (Pawn) bProteзгo. Anti Hacking - by Kmatsu - 28.06.2012, 16:55
Re: (Pawn) bProteзгo. Anti Hacking - by ipsBruno - 28.06.2012, 16:58
Re: (Pawn) bProteзгo. Anti Hacking - by DiReCt hIt - 09.12.2012, 15:19
Re: (Pawn) bProteзгo. Anti Hacking - by Chefгo - 09.12.2012, 15:35
Re: (Pawn) bProteзгo. Anti Hacking - by ExtremeKilll - 30.12.2012, 13:09
Re: (Pawn) bProteзгo. Anti Hacking - by jonathan_scripter - 30.01.2013, 20:05
Re: (Pawn) bProteзгo. Anti Hacking - by Maklister - 30.01.2013, 21:15
Re: (Pawn) bProteзгo. Anti Hacking - by Geo1996 - 30.01.2013, 23:18
Re: (Pawn) bProteзгo. Anti Hacking - by jonathan_scripter - 31.01.2013, 00:48

Forum Jump:


Users browsing this thread: 1 Guest(s)