GRP_YKhaxx - First release
Hot right now
See all listings
Selling Accounts/Keys/Items
Elite Selling / Trading / BuyingThis hack is detected... close this shit out. @Lovroman
So I'm confused. Why is this Detected Hack, not marked as Detected and instead marked as Release?
This hack is DETECTED. DOWNLOAD AT YOUR OWN RISK.
This hack is DETECTED. DOWNLOAD AT YOUR OWN RISK.
oh... I'm really sorry everyone
Next I'm going to publish a method of releasing PCBAN.
It might be helpful, just I found a suspicious registry value
Next I'm going to publish a method of releasing PCBAN.
It might be helpful, just I found a suspicious registry value
Don't waste your time with the suspicious registry in regedit. I haven' got banned yet but my friend had formatting his HD and install new windows & still unable to play with a new account.
Btw, thanks for the hack addresses even you didn't want to tell me
(ammo - jne to jmp, the rest nop - no recoil has 2 addys)
Btw, thanks for the hack addresses even you didn't want to tell me
(ammo - jne to jmp, the rest nop - no recoil has 2 addys)im still using no recoil just fine! and for the record anyone who uses no recoil will automatically get a ban ... idk about the other 2 havent used them
Its all in how you use the hacks u guys ...aha lol
you think people would learn after a few bans

Its all in how you use the hacks u guys ...aha lol

you think people would learn after a few bans

Hack is detected and your hardware ID will get ban and you will never be able to play again from any account
english communication i'm not good. sorry
okay,
publish at source code
and...
■HWID validated
・HDD Volume Serial
・binary file (registry and other file)
・MAC Address
・IP Address
■Unverified
・HDD Serial (not volume serial)
・CPU Serial - ID
・Graphics-cards Serial
・Memory-cards Serial
Go to validate a lot from now...
Souvenirs
■solution for player X,Y,Z value Address Searching
1.Serching Binary 「E8 B4 AF 41 00 00 00 00 00 00 00 00」
2.[1.] = BaseAddress
X = BaseAddress - 0x40
Y = BaseAddress - 0x3C
Z = BaseAddress - 0x38
so, SuperJump
[/URL]
gyazo.com/dc3d5c278e7726ab01806ffbca3c00ce
and, Teleport Hack :-)
okay,
publish at source codeand...
■HWID validated
・HDD Volume Serial
・binary file (registry and other file)
・MAC Address
・IP Address
■Unverified
・HDD Serial (not volume serial)
・CPU Serial - ID
・Graphics-cards Serial
・Memory-cards Serial
Go to validate a lot from now...
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Net;
using System****;
namespace GRP_HK
{
public partial class Form1 : Form
{
[DllImport("kernel32.dll")]
public static extern IntPtr OpenProcess(UInt32 dwDesiredAccess,Int32 bInheritHandle,UInt32 dwProcessId);
[DllImport("kernel32.dll")]
static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, UIntPtr nSize, out IntPtr lpNumberOfBytesWritten);
[DllImport("Kernel32.dll")]
static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, UInt32 nSize, ref UInt32 lpNumberOfBytesRead);
IntPtr Phandle;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void timer1_Tick(object sender, EventArgs e)
{
Process[] ps = Process.GetProcessesByName("GhostReconPhantoms");
foreach (Process p in ps)
{
IntPtr ProcessHandle = OpenProcess(0x1F0FFF, 1, (UInt32)p.Id);
PID.Text = ProcessHandle.ToString();
label1.Text = "PID:" + p.Id.ToString() + " HND:" + ProcessHandle.ToString();
label1.ForeColor = Color.Green;
timer1.Enabled = false;
Phandle = (IntPtr)int.Parse(PID.Text);
INF_Ammo.Enabled = true;
No_Spread.Enabled = true;
No_Recoil.Enabled = true;
WTW.Enabled = true;
}
}
private void INF_Ammo_CheckedChanged(object sender, EventArgs e)
{
IntPtr bytesout;
IntPtr Address = (IntPtr)0x0A33152;
if (INF_Ammo.Checked == true)
{
byte[] NewVal = { 0xE9, 0x83, 0x00, 0x00, 0x00, 0x90 };
WriteProcessMemory(Phandle, Address, NewVal, (UIntPtr)NewVal.Length, out bytesout);
}
else
{
byte[] NewVal = { 0x0F, 0x85, 0x82, 0x00, 0x00, 0x00 };
WriteProcessMemory(Phandle, Address, NewVal, (UIntPtr)NewVal.Length, out bytesout);
}
}
private void No_Spread_CheckedChanged(object sender, EventArgs e)
{
IntPtr bytesout;
IntPtr Address = (IntPtr)0x0A3E2CF;
if (No_Spread.Checked == true)
{
byte[] NewVal = { 0x90, 0x90, 0x90, 0x90 };
WriteProcessMemory(Phandle, Address, NewVal, (UIntPtr)NewVal.Length, out bytesout);
}
else
{
byte[] NewVal = { 0x89, 0x44, 0x24, 0x14 };
WriteProcessMemory(Phandle, Address, NewVal, (UIntPtr)NewVal.Length, out bytesout);
}
}
private void No_Recoil_CheckedChanged(object sender, EventArgs e)
{
IntPtr bytesout;
IntPtr AddressX = (IntPtr)0x0B4646A;
IntPtr AddressY = (IntPtr)0x0B464D2;
if (No_Recoil.Checked == true)
{
byte[] NewValX = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
WriteProcessMemory(Phandle, AddressX, NewValX, (UIntPtr)NewValX.Length, out bytesout);
byte[] NewValY = { 0x90, 0x90, 0x90 };
WriteProcessMemory(Phandle, AddressY, NewValY, (UIntPtr)NewValY.Length, out bytesout);
}
else
{
byte[] NewValX = { 0xD8, 0xA3, 0x10, 0x03, 0x00, 0x00 };
WriteProcessMemory(Phandle, AddressX, NewValX, (UIntPtr)NewValX.Length, out bytesout);
byte[] NewValY = { 0x0F, 0x5A, 0xC9 };
WriteProcessMemory(Phandle, AddressY, NewValY, (UIntPtr)NewValY.Length, out bytesout);
}
}
private void WTW_CheckedChanged(object sender, EventArgs e)
{
IntPtr bytesout;
IntPtr Address = (IntPtr)0x0CF84EA;
if (WTW.Checked == true)
{
byte[] NewVal = { 0x90, 0x90, 0x90, 0x90 };
WriteProcessMemory(Phandle, Address, NewVal, (UIntPtr)NewVal.Length, out bytesout);
}
else
{
byte[] NewVal = { 0x0F, 0x10, 0x41, 0x30 };
WriteProcessMemory(Phandle, Address, NewVal, (UIntPtr)NewVal.Length, out bytesout);
}
}
}
}
■solution for player X,Y,Z value Address Searching
1.Serching Binary 「E8 B4 AF 41 00 00 00 00 00 00 00 00」
2.[1.] = BaseAddress
X = BaseAddress - 0x40
Y = BaseAddress - 0x3C
Z = BaseAddress - 0x38
so, SuperJump
[/URL]
gyazo.com/dc3d5c278e7726ab01806ffbca3c00ce
and, Teleport Hack :-)
Dont release your source to public, especially the souvenirs.. i could code OPK right now from it & ruin the game again.
Sigh lol.
Edit: Nvm.. that's not enemy player pos.
Sigh lol.
Edit: Nvm.. that's not enemy player pos.
quit bickering stupid :-(
aha
OPK and SVP has been i completed already. :-)
■Completed
・INF_Ammo
・No_Spread
・No_Recoil
・WTW
・WTB
・SuperJump
・NFD
・Teleport
・OPK
・SVP
・Zero-SVP
・NameESP
・BulletHack
・SGMode
Outcome of 5 days :-(
OPK and SVP has been i completed already. :-)
■Completed
・INF_Ammo
・No_Spread
・No_Recoil
・WTW
・WTB
・SuperJump
・NFD
・Teleport
・OPK
・SVP
・Zero-SVP
・NameESP
・BulletHack
・SGMode
Outcome of 5 days :-(
This thread is closed for replies.
Similar Threads
WarRock - International HacksMy first Release :) 14 WarRock - International Hacks[RELEASE] Warrock D/C Trainer [FIRST RELEASE] 9 WarRock - International Hacks(Release) my first release 5 Visual Basic Programming[First Release] Super Spam Bot
10 Combat Arms Mods & Rez ModdingNever buy another g36e! (first release) 36


