Post: Secure Tools against modded PS3Lib!
02-12-2015, 07:46 AM #1
Default Avatar
Bch
Guest
(adsbygoogle = window.adsbygoogle || []).push({}); Theres a new modded ps3lib which can log all the bytes your write and read. To get around this issue there are several things you can do.
Add this code inside your Form Load event.

Method 1: (Best Method)
Check the MD5 Hash of the PS3Lib to make sure it matches either 2.50, or 2.60.
Code
    try
{
byte[] M250 = new byte[] { 0x7B, 0xE3, 0xDB, 0x9B, 0x76, 0x08, 0xCB, 0x05, 0xCC, 0xF5, 0x6C, 0x5C, 0x60, 0x6E, 0xBD, 0x60 };
byte[] M260 = new byte[] { 0xF0, 0xE0, 0x4E, 0xFE, 0x7B, 0x2A, 0xA4, 0x77, 0x11, 0x53, 0x59, 0x15, 0xE2, 0xB1, 0xA1, 0xAB };
byte[] MD5Result;
using (var md5 = MD5.Create())
{
MD5Result = md5.ComputeHash(File.ReadAllBytes(Directory.GetCurrentDirectory() + @"\PS3Lib.dll"));
string PsLib = ASCIIEncoding.ASCII.GetString(MD5Result);
string PsLib250 = ASCIIEncoding.ASCII.GetString(M250);
string PsLib260 = ASCIIEncoding.ASCII.GetString(M260);
if (PsLib != PsLib250 && PsLib != PsLib260)
{
Application.Exit();
}
}
}
catch
{
Application.Exit();
}


Method 2:
Check the file version (Modded Lib is 9.9.9.9) then automatically exit if it is not 4.3 or 4.4.
I'll write something up for this soon, you can always add both in too :p
(adsbygoogle = window.adsbygoogle || []).push({});

The following 21 users say thank you to Bch for this useful post:

☓-Dani-☓, aburezk, ALI ALHILFI, Boliberrys, br0wniiez, Insight, EquakeCSharp, Franky, Gay For Satan, Geo, KAYLEB_HD, Kronoaxis, Kryptus, mariokilla23, MrIvancitoOz, Darth Saul, Saint Goofy, Slinky, TheRichSlut
09-08-2015, 09:02 PM #20
Originally posted by Mshrn View Post
Do you use a debug eboot for bo2?
Thanks I got it to work now im learning to use a sparks menu but I cant find any that work. im trying to learn all I can so I can be a help to the community. I need to know what is the difference between sparks and gsc. A lot of ppl act stuck up and try to keep everything to their selves which is why we have very few coders and a lot of kids modding. to bring the best stuff to the community and help it grow you have to teach. A bunch of these guys that act like they know everything had to start somewhere and even though you can learn a lot from researching you need someone to help and teach you things, but some guys act like they just learned everything on their own. thanks to sites like NGU you can at least learn a lot and get some help sometimes by ppl that want to see the community grow... in the right direction that is.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo