0% found this document useful (0 votes)
12 views1 page

Bypass 1

Uploaded by

hoangvanhuy3690
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

Bypass 1

Uploaded by

hoangvanhuy3690
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

public async void BYPASS()

{
bool k = false;
int counter = 1;
if (Convert.ToInt32(PID.Text) == 0)
{
PSPS.ForeColor = Color.Red;
PSPS.Text = "Failed to connect";
}
else
{
PID.ForeColor = Color.Green;
MemLib.OpenProcess(Convert.ToInt32(PID.Text));

var enumerable = await MemLib.AoBScan(67108864L, 4294967295L, "10


90 E5 0A 00 A0 E3", true, true, string.Empty);
string_0 = "0x" + enumerable.FirstOrDefault().ToString("X");
Mem.MemoryProtection memoryProtection;
MemLib.ChangeProtection(string_0, Mem.MemoryProtection.ReadWrite,
out memoryProtection, "");
foreach (long num in enumerable)
{
MemLib.WriteMemory(num.ToString("X"), "bytes", "10 90 E5 00 F0
20 E3", string.Empty, null);
k = true;
}

if (k == true)
{
PSPS.Text = "Succesfull";
PSPS.ForeColor = Color.Green;
await PutTaskDelay(500);
}
else if (counter < 4)
{
PSPS.ForeColor = Color.Yellow;
PSPS.Text = "Connecting...";
counter += 1;
await FUCK_IS_ALWAYS_REAL("BYPASS");
}

else
{
PSPS.Text = "Failed!";
PSPS.ForeColor = Color.Red;
}

Mem.MemoryProtection memoryProtection2;
MemLib.ChangeProtection(string_0, Mem.MemoryProtection.ReadOnly,
out memoryProtection2, "");
}
}

You might also like