Posts: 195
Threads: 171
Joined: Jan 2022
Lv: 20
Exp: 27,959p
Next level: 30,265p
04-15-2022, 08:15 PM
(This post was last modified: 04-24-2022, 07:51 PM by the1Domo.)
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
Posts: 195
Threads: 171
Joined: Jan 2022
Lv: 20
Exp: 27,959p
Next level: 30,265p
04-23-2022, 01:31 PM
(This post was last modified: 04-24-2022, 05:10 AM by the1Domo.)
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;
}
}
Posts: 195
Threads: 171
Joined: Jan 2022
Lv: 20
Exp: 27,959p
Next level: 30,265p
if anyone has any questions or needs any help you can reply to this thread!!!
|