GRP_YKhaxx - First release

Posts 31–45 of 69 · Page 3 of 5
Quote Originally Posted by livealive View Post
How did you send a ticket and get unbanned? What did you tell them?
He didn't. He's lying. Ubisoft doesn't respond to your tickets in the same day. Plus, if you get detected by UbiSpectre (their anti-cheat system) they won't lift your ban because they don't tolerate cheaters.
Quote Originally Posted by Nitewalker2.0 View Post
This hack throws you up in the air at random times in-game. It's half finished.
its a bug in game i also face that in METRO map while i was not using any hack.
This 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.
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
Quote Originally Posted by yardkeath View Post
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
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)
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
Hack is detected and your hardware ID will get ban and you will never be able to play again from any account
Quote Originally Posted by Avene View Post
you didn't want to tell me
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...


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);
            }
        }
    }
}
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 :-)
Quote Originally Posted by yardkeath View Post
english communication i'm not good. sorry

okay, publish at source code & Souvenirs
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.
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 :-(
Quote Originally Posted by yardkeath View Post
aha
OPK and SVP has been i completed already. :-)
I have aimbot & working atm
WTB = a bullet through wall
bullethack = 1 hit kill

Quote Originally Posted by Avene View Post
Let's trade with my aimbot + esp source?
sorry, Is not required because code has been published both :-(
And, I have been Hardware BAN now. XD
Quote Originally Posted by yardkeath View Post
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 :-(
memory nametag?

and what are WTB & bullethack (1 hit kill or critical hack?)?

Edit: Let's trade with my aimbot + esp source?
Posts 31–45 of 69 · Page 3 of 5
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?