Pawn.RakNet -
YourShadow - 31.08.2017
Pawn.RakNet 1.4.1
Description:
Plugin for SA:MP server that allows you to analyze RakNet traffic.
This plugin is compatible with any version of SA:MP (newer than 0.3z). There is also 0.3e adaptation.
Main features:- Capture, modify, and stop processing incoming/outcoming packets and RPCs
- Send packets and RPCs to player
- Emulate packets and RPCs from player
Simple example:
PHP Code:
const AIM_SYNC = 203; // 0.3.7
IPacket:AIM_SYNC(playerid, BitStream:bs) // incoming packet
{
new aimData[PR_AimSync];
BS_IgnoreBits(bs, 8); // packet id (byte)
BS_ReadAimSync(bs, aimData);
if (aimData[PR_aimZ] != aimData[PR_aimZ]) // is NaN
{
aimData[PR_aimZ] = 0.0;
BS_SetWriteOffset(bs, 8);
BS_WriteAimSync(bs, aimData); // modify data
}
return 1; // continue processing
}
Tutorials by Jelly23:
[Tutorial] RPC
[Tutorial] Packets
[Tutorial] Handlers
[Tutorial] If you plan on making an include with Pawn.RakNet
Documentation:
https://github.com/urShadow/Pawn.RakNet/wiki
Binaries:
https://github.com/urShadow/Pawn.RakNet/releases
Source code:
https://github.com/urShadow/Pawn.RakNet
Re: Pawn.RakNet - write the best anticheat -
povargek - 31.08.2017
I'm use this plugin, he created with his help a lot of good anti-cheats.
With proper use you can forget about dangerous cheaters, I guarantee it!
Re: Pawn.RakNet - write the best anticheat -
SoNikMells - 31.08.2017
Author, good job!
Thanks to this plugin you can really create a decent protection.
Filtering of incoming data allow in advance prevent bad players.
Re: Pawn.RakNet - write the best anticheat -
Salik - 31.08.2017
Very suitable work for this person, a very experienced person.
Re: Pawn.RakNet - write the best anticheat -
coool - 01.09.2017
Very Nice plugin
Re: Pawn.RakNet - write the best anticheat -
Unrea1 - 01.09.2017
Don't understand, this support all types of hacks (godmode, infinite ammo, armour/health hack's...)?
Re: Pawn.RakNet - write the best anticheat -
Mauzen - 01.09.2017
Quote:
Originally Posted by Unrea1
Don't understand, this support all types of hacks (godmode, infinite ammo, armour/health hack's...)?
|
Its an interface for raknet, which manages all the communication between server and clients, so it can be used to identify hacks and nullify malicious pakets before they even reach the server.
Re: Pawn.RakNet - write the best anticheat -
Xeon™ - 01.09.2017
this is something that my brain can't understand, awesome work.
Re: Pawn.RakNet - write the best anticheat -
coool - 03.09.2017
Maybe some one writes a tutorial of this plugin for beginners.
Re: Pawn.RakNet - write the best anticheat -
asri - 03.09.2017
Yes.i need it.
Re: Pawn.RakNet - write the best anticheat -
Crystallize - 03.09.2017
Im surprised no one actually released anythinf related with this plugin.
I have no idea how to work with this.
Re: Pawn.RakNet - write the best anticheat -
Hansrutger - 03.09.2017
There are a few examples on the git wiki, nice release!
Re: Pawn.RakNet - write the best anticheat -
Paulice - 03.09.2017
All hail before the new god of SA-MP! +rep
Re: Pawn.RakNet - write the best anticheat -
Whitetiger - 04.09.2017
Great release.
Re: Pawn.RakNet - write the best anticheat -
Mauzen - 04.09.2017
Quote:
Originally Posted by coool
Maybe some one writes a tutorial of this plugin for beginners.
|
If you dont know what this is, then you dont need it. Messing around with the packets can easily crash clients and the server.
Re: Pawn.RakNet - write the best anticheat -
Romz - 04.09.2017
good
Re: Pawn.RakNet - write the best anticheat -
kurta999 - 04.09.2017
I think i'm going to remove key sync features from YSF, this plugin is much better for that.
Very good job! Well done.
Re: Pawn.RakNet - write the best anticheat -
Damager - 04.09.2017
A pretty useful plugin for some purposes.
First of all, I was pleased with the testing on the Internet, in which I actually did not notice the excessive load from the plug-in.
Thanks to the author for the plugin.
Re: Pawn.RakNet - write the best anticheat -
YouHack - 06.09.2017
UrShadow makes cheats and anti-cheats lol,
by the way, great release.
Re: Pawn.RakNet - write the best anticheat -
YourShadow - 09.09.2017
Updated to
1.0.1.
- Fixed OutcomingRPC hook