... as the tile says :D
I don't know really how this works, and if its possible to code something like that in vb.net or C#...
If somebody knows how this works, i would be thankful :) :)
Printable View
... as the tile says :D
I don't know really how this works, and if its possible to code something like that in vb.net or C#...
If somebody knows how this works, i would be thankful :) :)
Hey Demantor sup my friend !
Go to www.google.com
Search
how to create serial key
and find out how :P
if you want make own Serial key it's in C# // C
All you will get is a load of "Serial Number" generators and stuff lmao XD
Get the address where gunz checks serial key, and either JMP to the next address or NOP it using your gunz launcher.
Correct me if im wrong, but it can be done using WriteProcessMemory(); API?
Maiet uses a string encrypted with SEED, basically find a SEED implementation for .NET and the rest should be easy.
PS: They also use a custom clipboard format.
If i can't find this SEED for vb.net, could i import a dll which has it which will launch the runnable then? :)
Wrote it in Delphi, how to NOP the serial key temporarily so your launcher starts it xD
Code:unit Unit4;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
const
Address = $004972A7;
type
TForm4 = class(TForm)
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form4: TForm4;
ProcessID : Integer;
ThreadID : Integer;
WindowName : Integer;
HandleWindow : Integer;
Data : Byte;
Written : Cardinal;
implementation
{$R *.dfm}
procedure ByPassSerial();
begin
Data := $90; // byte for NOP
WindowName := FindWindow(nil,'GunZ'); // Find our GunZClient
ThreadId := GetWindowThreadProcessId(WindowName, @ProcessId);
HandleWindow := OpenProcess(PROCESS_ALL_ACCESS, False, ProcessId);
WriteProcessMemory(HandleWindow, ptr(Address), @Data, SizeOf(Data), Written); // Nop the serial Key
end;
procedure TForm4.FormCreate(Sender: TObject);
begin
ByPassSerial();
end;
end.
Great idea!