Página 2 de 4

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 13 Mar 2017 15:44
por Ygen
Thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 28 Mar 2017 19:04
por syahendra
thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 29 Mar 2017 15:30
por nghethihieu
Well, I've been waiting thiss for long time :tableflip-1414031937:

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 01 May 2017 20:28
por gaffurtr
thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 19 May 2017 22:26
por usamakey
tnks m8
great work

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 29 May 2017 05:25
por hgdagon
Thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 15 Jul 2017 21:19
por soheil forootan
Thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 25 Ago 2017 14:34
por ironatoms2
thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 26 Ago 2017 20:56
por KAOS2007B
Genial entraba justo para hacer una pregunta sobre los plugins y el tipico error de que no carga el plugin de un proyector de terceros por no tenerlo licenciado cuando desarrollo el proyecto, o eso entiendo, supongo que con esto se solucionaria eso verdad? una vez más mil gracias.

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 11 Sep 2017 22:51
por oussemaTN
thankssssssssss

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 13 Sep 2017 18:43
por aeeder6
tnksssssssssssssss

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 18 Sep 2017 14:02
por julian000
GRACIAS!!

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 19 Sep 2017 03:41
por dripro
gracias

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 20 Sep 2017 12:20
por patch
much needed now the tool is dead

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 20 Sep 2017 16:06
por Pabloko
patch escribió:much needed now the tool is dead
post a mirror, ive also saw its discontinued

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 29 Sep 2017 22:31
por ATTACK
thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 24 Oct 2017 14:03
por patch
If I can find my back up copy of the trial I will post rehost for it, but I not made any plugins for a while, I know AMS is unsafe so I don't hide any of my code in plugins or anything anymore.

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 30 Oct 2017 11:05
por zinou21
merciiiiiiiiiiiiiiiiiiiiiiiiiiiii

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 27 Nov 2017 09:20
por CryptoNick
thanks

Re: Ams Plugin Maker [Trial to full patch]

Publicado: 28 Nov 2017 17:11
por vivekhada
Pabloko escribió:
18 Ene 2017 07:26
Ams Plugin Maker - Trial to full patch

Imagen
Hello fam. As i recived a storm of people asking about internals of APM and very courious about how its generating plugins with assambler i got some time by beigh sick with heavy fly and decided to bring some light on the matter, I wanted with this educate on tweaking your apps without the need of patching binaries or injecting code. This ended up on create this patch that includes all the sources, like always :drevil-1414025327:

First of all, APM trial, as found on the original website is a trial build. It doesn't contain the logic of "when you buy it" so theres no byte replacement magic patch possibility. It will generate plugins with a code that will only work on the pc that builds it as its saving the code in a local file on a temp path. The plugin will only have a reference of the path to this code.

To be less invasive possible i choosed to replace flac.exe (4789708.dat) and polink.exe (8685379.dat) with some executables i generated with c# .net2 command line apps. Those executables will show a MessageBox useful to debug files if build fails.

The objective of this files is to edit sources, then call the original executable, having at this point compiler events for compiling and linking stage of build.

APM is using assambler templates from a zip (9240294.dat pw: 004327892802480769698585903882293893984064072385782079435320) to build a object file with the plugin definitions with flat.exe (Flat assambler) and also extracting from the main executable some other precompiled objects that contain all the real logic of plugin (action.o for actions object.o, objecti.o and object.p for objects) then a makefile is generated to link those objects alongside with other needed objects with polink.exe, geneting the plugin.

I choosed to edit the ASM file before it is compiled by flac, and add a call to a custom generated library (roachlib.obj) that directly loads the code and redefine variables with the real content found on the file that contain the logic. For cleaning propourses, i set the values of sizes to 0 for default APM calls and renamed real sizes so i could still access them on the custom code, but core sees 0, so it wont load bullshit to lua engine.

Then, on the linker event MakeFile.make is edited to include a reference of custom library generated to load lua code and a patched object (action.o/object.o) is replaced that has changed a byte to not show the alert, executing the code anyways (thats why i set sizes to 0 before)

This will produce a final plugin with code inside and loading it on time.

Also a brief on (((encryption))) of these codes, its using a shitty xor swapping agains some random bytes called XMLX for some dumb reason. As i suspect, plugins generated with full version shoud be same as produced with this patch, so content and key to decrypt are just right after the other. Extracting and editing those codes inside the dll will be so easy, as its no real encryption. Also the tool "lua buffer dumper" ive posted should ejaculate all the code as its using loadbuffer, like all the AMS coding events.

void xor_crypt(char *data, int data_len, char* _v, int _vlen) {
for (int i = 0; i < data_len; i++) {
data ^= _v[i % _vlen];
}
}

Código: Seleccionar todo

AMS PLUGIN MAKER 1&#46;1&#46;0&#46;0 &#91;&#91;TRIAL TO FULL&#93;&#93; v1&#46;1 Patch by @Pabloko

Usage
	- Go to Data path (usually is C&#58;\Program Files (x86)\AmsPluginMaker\Data) 
	  and rename "Resource" folder to "Resource_original"
	- Unzip "Resource" path from this archive
	- Compile your previously locally tested plugins as usual&#46; &#58;)
	
	- Extra&#58; You can restore those folders as you want to avoid
	  debugging limitations on development stage&#46;
	
Known limitations / bugs&#58;
	- Transitions are not yet implemented
	- Code block limit is 1Mb (can be incremented)
	- Debugging won't work for plugin loading&#46; APC won't displays 
	  lua errors&#46;
	- A nasty fopen call still happening at loading&#46; Its left there
	  due architecture of path, keeping at minimum possible the core
	  object patching&#46;