Hallo ich suche versch. Methoden um die Amx zuschützen vor deAMX
Ich wollte mal wissen welche ihr kennt und welche Sicher sind
bin für jede hilfreiche Antwort dankbar
mfg Exton
Hallo ich suche versch. Methoden um die Amx zuschützen vor deAMX
Ich wollte mal wissen welche ihr kennt und welche Sicher sind
bin für jede hilfreiche Antwort dankbar
mfg Exton
Da hatte BlackFox mal mehrere Methoden vorgestellt, du musst nur ein bisschen suchen , dann wirst du fündig.
Man kann die amx zu keiner sinnvollen pwn umwandeln d.h. nach dem DeAMX wird sie unbrauchbar
also heisst es die können mit meiner AMX nix anfangen ? =)
mfg Exton
Wenn du die 2Sachen hier machst ist es zu 100% DeAmx Sicher:
ZitatAlles anzeigen
I've tested this on several scripts (using DeAMX v0.3), including the GodFarther. It took me about an hour of annoying cutting, compiling and decompileing, so be happy.
No more worrying about untrusted hosts being able to steal your source codes :P.
Any script with this protection will decompile as:
Quote:
#include <a_samp>
#include <core>
#include <float>
Nothing else.
To install...
Paste this anywhere in your script, as long as it's not in another callback:
AntiDeAMX()
{
new a[][] =
{
"Unarmed (Fist)",
"Brass K"
};
#pragma unused a
}
Now, in a default public function (Ex: OnPlayerSpawn) paste this:
pawn Code:
AntiDeAMX();
That's it!
Example: http://pastebin.com/f4cdb7933
_________________________________________________
Want to make your script real safe? Read this:
If the bind variable is set then the server MUST be running on that server so you can compare it to the required IP. However this was editable before through hacking the amx, and is even easier now with deAMX.
The combination of the two are lethal !
Fell free to modify it in anyway you want. That was the smallest I could cut it down to. Even changing "Brass K" to "Bras K" stops it from working.