SA-MP 0.3c R3/R4/R5 server update
#1

This update is for SA-MP server owners only

We are issuing a server update for SA-MP 0.3c to address some security concerns.

If updating from an existing 0.3c R1/R2 server: you can update simply by replacing the 'samp03svr' file on linux or 'samp-server.exe' file on Windows found in the 0.3c R5 server download package.

SA-MP 0.3c R5 server

- The server crash vulnerabilities, described as resolved in the 0.3c R3/R4 server, were not completely fixed. We are making the 0.3c R5 server available. These server crash vulnerabilities only effect the Linux version of the SA-MP 0.3c server. Both Windows and Linux versions of the SA-MP server are being updated to 0.3c R5 for server version consistency.

SA-MP 0.3c R4 server

- Another denial of service vulnerability was discovered after the 0.3c R3 server release and has been fixed in the 0.3c R4 server.
- Fixes an issue with GetPlayerSurfingObjectID() returning the wrong object ID.
- Fixes a few minor problems with the format() function in pawn.

New pawn natives:
pawn Code:
native GetPlayerNetworkStats(playerid, retstr[], size);
native GetNetworkStats(retstr[], size);
The above functions return a string similar to the information seen in the player's F5 stats. It is the server's version of the network statistics which includes a list of things like network Packetloss, Upload/Download rates etc. This information might be useful in determining network problems for specific players, or for the entire server. If you are interested in these functions please see the netstats.pwn filterscript included with the Windows server package.

SA-MP 0.3c R3 server

- Fixes a denial of service vulnerability on SA-MP linux servers where a remote attacker could send a specially crafted packet which would trigger a debug assertion in SA-MP's networking layer; causing the server to shut down.

New pawn natives:
pawn Code:
native GetPlayerCameraMode(playerid);
Returns the current GTA camera mode for the requested player. The camera modes are useful in determining whether a player is aiming, doing a passenger driveby etc.

pawn Code:
native Float:GetPlayerDistanceFromPoint(playerid, Float:X, Float:Y, Float:Z);
native Float:GetVehicleDistanceFromPoint(vehicleid, Float:X, Float:Y, Float:Z);
The above functions can be used as fast alternatives to calculating distances in pawn. It is still preferable to use IsPlayerInRangeOfPoint() if you don't require the exact distance.

pawn Code:
native GetPlayerSurfingObjectID(playerid);
GetPlayerSurfingObjectID is similar to GetPlayerSurfingVehicleID. If the player is standing on a global moving object, the ID of the object will be returned. If the player is not surfing a moving object, it will return INVALID_OBJECT_ID.

New callback:
pawn Code:
forward OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat);
This callback is called when a player updates the position of a vehicle they're not driving. This can happen outside of the vehicle or when the player is a passenger of a vehicle that has no driver.

Downloads:

SA-MP 0.3c R5 Linux Server: http://files.sa-mp.com/samp03csvr_R5.tar.gz
SA-MP 0.3c R5 Windows Server: http://files.sa-mp.com/samp03csvr_R5_win32.zip

Update 25/07/2011 There was a small issue regarding space padding in the format() function in the original 0.3c R3 release. If you happened to download this version, please download the above 0.3c R3-1 server.
Update 27/07/2011 0.3c R3 server was updated to SA-MP 0.3c R4.
Update 28/07/2011 0.3c R4 server was updated to SA-MP 0.3c R5.
Reply


Messages In This Thread
SA-MP 0.3c R3/R4/R5 server update - by Kalcor - 25.07.2011, 04:09
Re: SA-MP 0.3c R3 server update - by Retardedwolf - 25.07.2011, 04:26
Re: SA-MP 0.3c R3 server update - by [HiC]TheKiller - 25.07.2011, 04:28
Re: SA-MP 0.3c R3 server update - by willsuckformoney - 25.07.2011, 04:49
Re: SA-MP 0.3c R3 server update - by Toni - 25.07.2011, 05:15
Re: SA-MP 0.3c R3 server update - by Paul.eboy - 25.07.2011, 06:33
Re: SA-MP 0.3c R3 server update - by Calgon - 25.07.2011, 07:28
Re: SA-MP 0.3c R3 server update - by Whitetiger - 25.07.2011, 07:32
Re: SA-MP 0.3c R3 server update - by Burridge - 25.07.2011, 07:47
Re: SA-MP 0.3c R3 server update - by JernejL - 25.07.2011, 07:50
Re: SA-MP 0.3c R3 server update - by Burridge - 25.07.2011, 07:52
Re: SA-MP 0.3c R3 server update - by Calgon - 25.07.2011, 08:04
Re: SA-MP 0.3c R3 server update - by Blantas - 25.07.2011, 08:11
Re: SA-MP 0.3c R3 server update - by Kalcor - 25.07.2011, 08:19
Re : SA-MP 0.3c R3 server update - by cristab - 25.07.2011, 08:31
Re: SA-MP 0.3c R3 server update - by [HiC]TheKiller - 25.07.2011, 08:32
Re: SA-MP 0.3c R3 server update - by Raimis_R - 25.07.2011, 08:47
Re: SA-MP 0.3c R3 server update - by Scottas - 25.07.2011, 08:54
Re: SA-MP 0.3c R3 server update - by Martin_M - 25.07.2011, 09:01
Re: SA-MP 0.3c R3 server update - by Vvolk - 25.07.2011, 09:19
Re: SA-MP 0.3c R3 server update - by Danny - 25.07.2011, 09:22
Re: SA-MP 0.3c R3 server update - by [03]Garsino - 25.07.2011, 09:50
AW: SA-MP 0.3c R3 server update - by Littl3j0hNy - 25.07.2011, 10:23
Re: SA-MP 0.3c R3 server update - by leong124 - 25.07.2011, 10:35
Re: SA-MP 0.3c R3 server update - by xRk - 25.07.2011, 10:42
Re: SA-MP 0.3c R3 server update - by RAEN - 25.07.2011, 13:01
Re: SA-MP 0.3c R3 server update - by Haji - 25.07.2011, 13:06
Re: SA-MP 0.3c R3 server update - by SDraw - 25.07.2011, 13:35
Re: SA-MP 0.3c R3 server update - by AirKite - 25.07.2011, 13:43
Re: SA-MP 0.3c R3 server update - by BillyCoolGR - 25.07.2011, 13:47
AW: SA-MP 0.3c R3 server update - by Meta - 25.07.2011, 14:12
Re: SA-MP 0.3c R3 server update - by jojllman - 25.07.2011, 14:13
Re: SA-MP 0.3c R3 server update - by leong124 - 25.07.2011, 15:53
Re: SA-MP 0.3c R3 server update - by IstuntmanI - 25.07.2011, 18:51
Re: SA-MP 0.3c R3 server update - by FireCat - 25.07.2011, 18:58
AW: SA-MP 0.3c R3 server update - by Bubelbub - 25.07.2011, 19:12
Re: SA-MP 0.3c R3 server update - by Deskoft - 25.07.2011, 19:15
Re: SA-MP 0.3c R3 server update - by RenisiL - 25.07.2011, 19:59
Re: AW: SA-MP 0.3c R3 server update - by HP - 25.07.2011, 21:42
Re: SA-MP 0.3c R3 server update - by IllidanS46 - 25.07.2011, 21:43
Re: SA-MP 0.3c R3 server update - by JernejL - 25.07.2011, 22:04
Re: SA-MP 0.3c R3 server update - by Riddick94 - 25.07.2011, 22:14
Re: SA-MP 0.3c R3 server update - by kurta999 - 25.07.2011, 22:34
Re: SA-MP 0.3c R3 server update - by Baboon - 25.07.2011, 22:34
Re: SA-MP 0.3c R3 server update - by willsuckformoney - 26.07.2011, 05:41
Re: SA-MP 0.3c R3/R4 server update - by Scottas - 27.07.2011, 14:55
Re: SA-MP 0.3c R3/R4 server update - by [L3th4l] - 27.07.2011, 14:56
Re: SA-MP 0.3c R3/R4 server update - by vyper - 27.07.2011, 15:08
Re: SA-MP 0.3c R3/R4 server update - by IstuntmanI - 27.07.2011, 15:11
Re: SA-MP 0.3c R3/R4 server update - by [HiC]TheKiller - 27.07.2011, 15:12
Re: SA-MP 0.3c R3/R4 server update - by Rimas - 27.07.2011, 15:25
Re: SA-MP 0.3c R3/R4 server update - by FANEX - 27.07.2011, 15:29
Re: SA-MP 0.3c R3/R4 server update - by WoodPecker - 27.07.2011, 15:37
Re: SA-MP 0.3c R3/R4 server update - by SchurmanCQC - 27.07.2011, 16:02
Re: SA-MP 0.3c R3/R4 server update - by davve95 - 27.07.2011, 16:13
Re: SA-MP 0.3c R3/R4 server update - by Burridge - 27.07.2011, 16:17
Re: SA-MP 0.3c R3/R4 server update - by Scottas - 27.07.2011, 17:42
Re: SA-MP 0.3c R3/R4 server update - by Finn - 27.07.2011, 17:45
Re: SA-MP 0.3c R3/R4 server update - by shaikh007 - 27.07.2011, 17:54
Re: SA-MP 0.3c R3/R4 server update - by kurta999 - 27.07.2011, 18:34
Re: SA-MP 0.3c R3/R4 server update - by Burridge - 27.07.2011, 18:56
Respuesta: SA-MP 0.3c R3/R4 server update - by Ari3l - 27.07.2011, 19:50
Re: SA-MP 0.3c R3/R4 server update - by Sasino97 - 27.07.2011, 20:02
Re: SA-MP 0.3c R3/R4 server update - by Haji - 27.07.2011, 20:08
Re: SA-MP 0.3c R3/R4 server update - by Raimis_R - 27.07.2011, 20:31
Re: SA-MP 0.3c R3/R4 server update - by juraska - 27.07.2011, 21:37
Re: SA-MP 0.3c R3/R4 server update - by MisterTickle - 27.07.2011, 23:15
Re: SA-MP 0.3c R3 server update - by BeckzyBoi - 28.07.2011, 01:52
AW: SA-MP 0.3c R3/R4 server update - by Meta - 28.07.2011, 02:16
Re: SA-MP 0.3c R3/R4 server update - by Snipa - 28.07.2011, 03:19
Re: AW: SA-MP 0.3c R3/R4 server update - by Kalcor - 28.07.2011, 04:31
AW: Re: AW: SA-MP 0.3c R3/R4 server update - by Meta - 28.07.2011, 04:41
Re: AW: Re: AW: SA-MP 0.3c R3/R4 server update - by Kalcor - 28.07.2011, 09:49
Re: SA-MP 0.3c R3/R4 server update - by Karlip - 28.07.2011, 10:00
Re: SA-MP 0.3c R3/R4 server update - by dnee - 28.07.2011, 11:07
Re: SA-MP 0.3c R3/R4 server update - by AndreT - 28.07.2011, 11:10
Re: SA-MP 0.3c R3/R4/R5 server update - by Michael@Belgium - 28.07.2011, 18:00
Re: SA-MP 0.3c R3/R4/R5 server update - by rbN. - 28.07.2011, 18:01
Re: SA-MP 0.3c R3/R4/R5 server update - by Mikkel_Pedersen - 28.07.2011, 18:02
Re: SA-MP 0.3c R3/R4/R5 server update - by Haji - 28.07.2011, 18:48
Re: SA-MP 0.3c R3/R4/R5 server update - by Gh0sT_ - 28.07.2011, 18:50
Re: SA-MP 0.3c R3/R4/R5 server update - by Snipa - 28.07.2011, 18:57
Re: SA-MP 0.3c R3/R4/R5 server update - by Gh0sT_ - 28.07.2011, 19:09
Re: SA-MP 0.3c R3/R4/R5 server update - by dowster - 28.07.2011, 19:21
Re: SA-MP 0.3c R3/R4/R5 server update - by DreeH - 28.07.2011, 20:46
Re: SA-MP 0.3c R3 server update - by BeckzyBoi - 28.07.2011, 21:18
AW: SA-MP 0.3c R3/R4/R5 server update - by Meta - 28.07.2011, 21:24
Re: SA-MP 0.3c R3/R4/R5 server update - by lolumadd_ - 29.07.2011, 01:58
Re: AW: SA-MP 0.3c R3/R4/R5 server update - by BeckzyBoi - 29.07.2011, 02:42
Re: SA-MP 0.3c R3/R4/R5 server update - by lolumadd_ - 29.07.2011, 02:56
Re: SA-MP 0.3c R3/R4/R5 server update - by AndreT - 29.07.2011, 03:19
AW: Re: AW: SA-MP 0.3c R3/R4/R5 server update - by Meta - 29.07.2011, 03:22
Re: SA-MP 0.3c R3/R4/R5 server update - by shaikh007 - 29.07.2011, 04:48
Re: SA-MP 0.3c R3/R4/R5 server update - by FANEX - 29.07.2011, 07:15
Re: SA-MP 0.3c R3/R4/R5 server update - by WoodPecker - 29.07.2011, 07:33
Re: SA-MP 0.3c R3/R4/R5 server update - by Steven82 - 29.07.2011, 08:03
Re: SA-MP 0.3c R3/R4/R5 server update - by TheStudioSamp - 29.07.2011, 20:52
Re: SA-MP 0.3c R3/R4/R5 server update - by dugi - 29.07.2011, 20:57
Re: SA-MP 0.3c R3/R4/R5 server update - by TheStudioSamp - 29.07.2011, 21:08
Re: SA-MP 0.3c R3/R4/R5 server update - by kacper55331 - 29.07.2011, 21:09
Re: SA-MP 0.3c R3/R4/R5 server update - by Donya - 29.07.2011, 21:19
Re: SA-MP 0.3c R3/R4/R5 server update - by kacper55331 - 29.07.2011, 21:24
Re: SA-MP 0.3c R3/R4/R5 server update - by TheStudioSamp - 29.07.2011, 21:38
Re: SA-MP 0.3c R3/R4/R5 server update - by FANEX - 29.07.2011, 21:40
Re: SA-MP 0.3c R3/R4/R5 server update - by kacper55331 - 29.07.2011, 21:42
Re: SA-MP 0.3c R3/R4/R5 server update - by Sasino97 - 29.07.2011, 21:55
Re: SA-MP 0.3c R3/R4/R5 server update - by kLx - 01.08.2011, 11:42
Re: SA-MP 0.3c R3/R4/R5 server update - by Mean - 03.08.2011, 00:40
Re: SA-MP 0.3c R3/R4/R5 server update - by Calgon - 03.08.2011, 00:42
Re: SA-MP 0.3c R3/R4/R5 server update - by Inverse - 03.08.2011, 04:52
Re: SA-MP 0.3c R3/R4/R5 server update - by Riddick94 - 03.08.2011, 11:25
Re: SA-MP 0.3c R3/R4/R5 server update - by DaKill - 03.08.2011, 12:06
Re: SA-MP 0.3c R3/R4/R5 server update - by davve95 - 03.08.2011, 15:13
Re: SA-MP 0.3c R3/R4/R5 server update - by Calgon - 03.08.2011, 15:14
Re: SA-MP 0.3c R3/R4/R5 server update - by JonathanFeitosa - 03.08.2011, 19:06
Re: SA-MP 0.3c R3/R4/R5 server update - by AirKite - 04.08.2011, 05:39
Re: SA-MP 0.3c R3/R4/R5 server update - by mishasoni - 05.08.2011, 13:54
Re: SA-MP 0.3c R3/R4/R5 server update - by Collin - 10.08.2011, 18:14
Re: SA-MP 0.3c R3/R4/R5 server update - by SchurmanCQC - 10.08.2011, 21:50
Re: SA-MP 0.3c R3/R4/R5 server update - by Kar - 10.08.2011, 21:54
Re: SA-MP 0.3c R3/R4/R5 server update - by SchurmanCQC - 10.08.2011, 21:57
Re: SA-MP 0.3c R3/R4/R5 server update - by Kar - 10.08.2011, 22:01
Re: SA-MP 0.3c R3/R4/R5 server update - by SchurmanCQC - 10.08.2011, 22:10
Re: SA-MP 0.3c R3/R4/R5 server update - by Deskoft - 10.08.2011, 23:11
Re: SA-MP 0.3c R3/R4/R5 server update - by Kar - 10.08.2011, 23:16
Re: SA-MP 0.3c R3/R4/R5 server update - by TheArcher - 10.08.2011, 23:22
Re: SA-MP 0.3c R3/R4/R5 server update - by [HLF]Southclaw - 10.08.2011, 23:28
Re: SA-MP 0.3c R3/R4/R5 server update - by Diablosrouge - 10.08.2011, 23:40
Re: SA-MP 0.3c R3/R4/R5 server update - by T-N-Z - 11.08.2011, 12:06
Re: SA-MP 0.3c R3/R4/R5 server update - by Diablosrouge - 11.08.2011, 12:32
Re: SA-MP 0.3c R3/R4/R5 server update - by henry jiggy - 11.08.2011, 22:32
Re: SA-MP 0.3c R3/R4/R5 server update - by [HLF]Southclaw - 11.08.2011, 22:36
Re: SA-MP 0.3c R3/R4/R5 server update - by Lorenc_ - 12.08.2011, 09:12
AW: SA-MP 0.3c R3/R4/R5 server update - by dUDALUS - 13.08.2011, 11:11
Re: SA-MP 0.3c R3/R4/R5 server update - by [NeS]Justin - 14.08.2011, 13:39
Re: SA-MP 0.3c R3/R4/R5 server update - by Mozz - 15.08.2011, 07:22
Re: SA-MP 0.3c R3/R4/R5 server update - by [NeS]Justin - 15.08.2011, 10:54
Re: SA-MP 0.3c R3/R4/R5 server update - by d0 - 15.08.2011, 10:59
Re: SA-MP 0.3c R3/R4/R5 server update - by [NeS]Justin - 15.08.2011, 11:29
AW: SA-MP 0.3c R3/R4/R5 server update - by FufLa - 18.08.2011, 18:45
Re: SA-MP 0.3c R3/R4/R5 server update - by Mike_Dan - 24.08.2011, 05:10
Re: SA-MP 0.3c R3/R4/R5 server update - by BeckzyBoi - 24.08.2011, 15:03
Re: SA-MP 0.3c R3/R4/R5 server update - by =WoR=Varth - 24.08.2011, 15:13
Re: SA-MP 0.3c R3/R4/R5 server update - by BeckzyBoi - 24.08.2011, 17:18
Re: SA-MP 0.3c R3/R4/R5 server update - by =WoR=Varth - 24.08.2011, 17:22
Re: SA-MP 0.3c R3/R4/R5 server update - by JEverest - 24.08.2011, 20:42
Re: SA-MP 0.3c R3/R4/R5 server update - by =WoR=Varth - 25.08.2011, 05:40
Re: AW: SA-MP 0.3c R3/R4/R5 server update - by Haji - 25.08.2011, 13:50
Re: SA-MP 0.3c R3/R4/R5 server update - by Kar - 25.08.2011, 18:35
AW: Re: AW: SA-MP 0.3c R3/R4/R5 server update - by Blokkmonsta - 25.08.2011, 18:38
Re: SA-MP 0.3c R3/R4/R5 server update - by bartekdvd - 26.08.2011, 14:11
Re: SA-MP 0.3c R3/R4/R5 server update - by sherlock - 27.08.2011, 18:29
Re: SA-MP 0.3c R3/R4/R5 server update - by SugarD-x - 27.08.2011, 18:56
Re: SA-MP 0.3c R3/R4/R5 server update - by Kar - 27.08.2011, 20:33
Re: AW: SA-MP 0.3c R3/R4/R5 server update - by Camacorn - 28.08.2011, 01:00
Re: SA-MP 0.3c R3/R4/R5 server update - by bob_dillan - 28.08.2011, 02:01
Re: SA-MP 0.3c R3/R4/R5 server update - by _Outbreak_ - 28.08.2011, 10:54
Re: SA-MP 0.3c R3/R4/R5 server update - by dugi - 28.08.2011, 13:31
Re: SA-MP 0.3c R3/R4/R5 server update - by _[HuN]_Epsilon_ - 28.08.2011, 19:26
Re: SA-MP 0.3c R3/R4/R5 server update - by davve95 - 12.09.2011, 18:10
Re: SA-MP 0.3c R3/R4/R5 server update - by SugarD-x - 12.09.2011, 19:40
Re: SA-MP 0.3c R3/R4/R5 server update - by kikito - 14.09.2011, 07:07
Re: SA-MP 0.3c R3/R4/R5 server update - by SugarD-x - 14.09.2011, 07:17
Re: SA-MP 0.3c R3/R4/R5 server update - by bryan1412 - 22.09.2011, 09:13
Re: SA-MP 0.3c R3/R4/R5 server update - by [HiC]TheKiller - 22.09.2011, 09:56
Re: SA-MP 0.3c R3/R4/R5 server update - by Camacorn - 24.09.2011, 01:24
Re: SA-MP 0.3c R3/R4/R5 server update - by [HLF]Southclaw - 01.11.2011, 12:59
Re: SA-MP 0.3c R3/R4/R5 server update - by sciman001 - 03.11.2011, 07:14
Re: SA-MP 0.3c R3/R4/R5 server update - by Stigg - 03.11.2011, 07:44
Re: SA-MP 0.3c R3/R4/R5 server update - by _Outbreak_ - 03.11.2011, 11:27
Re: SA-MP 0.3c R3/R4/R5 server update - by davve95 - 05.11.2011, 11:15
Re: SA-MP 0.3c R3/R4/R5 server update - by Calgon - 05.11.2011, 11:23
Re: SA-MP 0.3c R3/R4/R5 server update - by davve95 - 05.11.2011, 14:37
Re: SA-MP 0.3c R3/R4/R5 server update - by Infinity - 05.11.2011, 18:51
Re: SA-MP 0.3c R3/R4/R5 server update - by Sami Ham - 08.11.2011, 08:39
Re: SA-MP 0.3c R3/R4/R5 server update - by kurta999 - 08.11.2011, 13:01
Re: SA-MP 0.3c R3/R4/R5 server update - by Sami Ham - 08.11.2011, 19:24
Re: SA-MP 0.3c R3/R4/R5 server update - by Mike_Dan - 09.11.2011, 14:06
Re: SA-MP 0.3c R3/R4/R5 server update - by Kerlan - 14.11.2011, 12:20
Re: SA-MP 0.3c R3/R4/R5 server update - by Mozz - 14.11.2011, 12:50
Re: SA-MP 0.3c R3/R4/R5 server update - by Saurik - 15.11.2011, 04:10
Re: SA-MP 0.3c R3/R4/R5 server update - by Calgon - 15.11.2011, 06:29
Re: SA-MP 0.3c R3/R4/R5 server update - by Biesmen - 15.11.2011, 08:54
Re: SA-MP 0.3c R3/R4/R5 server update - by .:Kaos:. - 15.11.2011, 19:51
Re: SA-MP 0.3c R3/R4/R5 server update - by Afro4life - 17.11.2011, 18:48
Re: SA-MP 0.3c R3/R4/R5 server update - by Egyptian Trooper - 27.11.2011, 23:55

Forum Jump:


Users browsing this thread: 3 Guest(s)