guest.

Users browsing this thread: 1 Guest(s)

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
253 2
Evil Source free dev kit and RGH Services + free API By the1Domo </3
#1
Evil Source free dev kit and RGH Services By the1Domo </3
---------------
you will find the files you need to get online
there is no HUD and no cheats just bypasses

you know on your RGH just place the files in the root of your hard drive
on your devkit place The dev Files in the root of your lol

you can join our forum and we encourage the development of your own cheats
and we'll have bases available, plus people who would love to help you figure out how to do it yourself
https://discord.gg/GDMxUs7sDm
https://evilsource.net/community/


https://evilsource.net/DL/EvilSource-Xbox.rar
[Image: FiHzeWA.jpg]
#2
api is free

Code:
    public static class API
    {
        public static string apiLink = "https://evilsource.net/api/";
        public static string apiKey = "";
        public static int uid = 0;
        public static WebClient Client = new WebClient();

        public static byte[] StringToByteArray(string hex)
        {
            return Enumerable.Range(0, hex.Length)
                             .Where(x => x % 2 == 0)
                             .Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
                             .ToArray();
        }

        public static byte[] GenerateCleanChallenge(byte[] sessionKey, byte[] dirtyChallenge, byte[] ChallengeSalt, byte[] cpuKey, byte[] KVCPUKey, bool Type1KV, bool Crl, bool Fcrt, byte SerialByte)
        {
            string URL = apiLink + "xke.php?action=getChallengeCertificate&apikey=" + apiKey
                + "&hvSalt=" + BitConverter.ToString(ChallengeSalt).Replace("-", "")
                + "&uid=" + uid.ToString()
                + "&cpuKey=" + BitConverter.ToString(cpuKey).Replace("-", "")
                + "&sessionsalt=" + BitConverter.ToString(sessionKey).Replace("-", "")
                + "&CRL=" + (string)(Crl ? "true" : "false")
                + "&FCRT=" + (string)(Fcrt ? "true" : "false")
                + "&Type1=" + (string)(Type1KV ? "true" : "false")
                + "&SerialByte=" + SerialByte
                + "&KVCPUKey=" + BitConverter.ToString(KVCPUKey).Replace("-", "");

            string rString = Client.DownloadString(URL);
            byte[] Response = StringToByteArray(rString);
            return Response;
        }

        public static byte[] GenerateCleanChallengeFull(byte[] sessionKey, byte[] ChallengeSalt, byte[] cpuKey, byte[] KVCPUKey, bool Type1KV, bool Crl, bool Fcrt)
        {
            string URL = apiLink + "xke.php?action=getChallengeCertificate&apikey=" + apiKey + "&hvSalt=" + BitConverter.ToString(ChallengeSalt).Replace("-", "") + "&uid=" + uid.ToString() + "&cpuKey=" + BitConverter.ToString(cpuKey).Replace("-", "") + "&sessionsalt=" + BitConverter.ToString(sessionKey).Replace("-", "");

            string rString = Client.DownloadString(URL);
            byte[] Response = StringToByteArray(rString);
            return Response;
        }

        public static byte[] GenerateCleanFuseDigest(byte SerialByte, byte[] KVDigest)
        {
            string URL = apiLink + "xke.php?action=getFuseDigest&SerialByte=" + SerialByte + "&KVDigest=" + BitConverter.ToString(KVDigest).Replace("-", "");

            string rString = Client.DownloadString(URL);
            byte[] Response = StringToByteArray(rString);
            return Response;
        }

        public static byte[] GenerateCleanTitleDigest(byte[] Title, byte[] spoofedMacAddress, byte SerialByte, byte[] KVDigest)
        {
            string URL = apiLink + "xke.php?action=getTitleDigest&Title=" + BitConverter.ToString(Title).Replace("-", "") + "&spoofedMacAddress=" + BitConverter.ToString(spoofedMacAddress).Replace("-", "") + "&SerialByte=" + SerialByte + "&KVDigest=" + BitConverter.ToString(KVDigest).Replace("-", "");

            string rString = Client.DownloadString(URL);
            byte[] Response = StringToByteArray(rString);
            return Response;
        }
    }
[Image: FiHzeWA.jpg]
#3
if anyone has any questions or needs any help you can reply to this thread!!!
[Image: FiHzeWA.jpg]


Forum Jump:


Expand chat