|
You last visited: Today at 19:36
Advertisement
[HowTo] How To Get around FadeToBlacks 2 Minute Blowfish Key Change
Discussion on [HowTo] How To Get around FadeToBlacks 2 Minute Blowfish Key Change within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
11/19/2012, 22:10
|
#1
|
elite*gold: 0
Join Date: Mar 2005
Posts: 1,430
Received Thanks: 1,586
|
[HowTo] How To Get around FadeToBlacks 2 Minute Blowfish Key Change
How To
Use the code below in a console app or whatever you prefer to write the key into a unprotected 5065 binary... There key changes every 2 minutes.. So..be quick!
Hint: Server and Client Prefixes are TQServer And TQClient
Code
Code:
public static string GetBlowFish()
{
WebPostRequest request = new WebPostRequest("http://78.47.167.52/readkey.php");
request.Add("size", "111"); //They have changed the post variable..
string s = request.GetResponse();
//This following line is all that they have added regarding encryption
string xordecr = s.Cast<char>().Aggregate("", (current, b) => current + (char) (byte)(b ^ 0xD));
var data = xordecr.Split(' ');
string bfKey = "";
for (int i = 0; i < 16; i++)
{
string real = (int.Parse(data[i]).ToString("X8"));
var hexdata = ConvertHexStringToByteArray(real);
bfKey += (char)hexdata[3];
}
return bfKey;
}
WebPostRequest
Code:
internal class WebPostRequest
{
private WebRequest theRequest;
private HttpWebResponse theResponse;
private ArrayList theQueryData;
public WebPostRequest(string url)
{
theRequest = WebRequest.Create(url);
theRequest.Method = "POST";
theQueryData = new ArrayList();
}
public void Add(string key, string value)
{
theQueryData.Add(String.Format("{0}={1}", key, HttpUtility.UrlEncode(value)));
}
public string GetResponse()
{
theRequest.ContentType = "application/x-www-form-urlencoded";
string Parameters = String.Join("&", (String[]) theQueryData.ToArray(typeof (string)));
theRequest.ContentLength = Parameters.Length;
StreamWriter sw = new StreamWriter(theRequest.GetRequestStream());
sw.Write(Parameters);
sw.Close();
theResponse = (HttpWebResponse) theRequest.GetResponse();
StreamReader sr = new StreamReader(theResponse.GetResponseStream());
return sr.ReadToEnd();
}
}
|
|
|
11/20/2012, 01:10
|
#2
|
elite*gold: 26
Join Date: Jul 2011
Posts: 522
Received Thanks: 285
|
He really does hate bins =x
|
|
|
11/20/2012, 02:11
|
#3
|
elite*gold: 28
Join Date: Jun 2010
Posts: 2,225
Received Thanks: 868
|
Quote:
Originally Posted by Execution!
He really does hate bins =x
|
But he has a point, and I think the only reason he actually released this was because the owner stupidly banished him for no reason that breaks any of the chatbox rules.
|
|
|
11/20/2012, 02:37
|
#4
|
elite*gold: 0
Join Date: Jul 2012
Posts: 6
Received Thanks: 2
|
Quote:
Originally Posted by _DreadNought_
But he has a point, and I think the only reason he actually released this was because the owner stupidly banished him for no reason that breaks any of the chatbox rules.
|
Really? i saw that post first, then i banned you and him, and also my reason behind it was because last time he came to our chat he said "I will leave you guys alone" but i guess his words mean nothing.
Either way, keep on wasting your time/potential on cracking CO servers, this does not work anymore either way.
|
|
|
11/20/2012, 03:45
|
#5
|
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,981
|
Love how this thread is going in the wrong direction, being for whatever it is, it is a release, useful for some, not so useful to some others, keep the thread clean please and thank you.
|
|
|
11/20/2012, 09:34
|
#6
|
elite*gold: 0
Join Date: Mar 2005
Posts: 1,430
Received Thanks: 1,586
|
Quote:
Originally Posted by FTBZed
Really? i saw that post first, then i banned you and him, and also my reason behind it was because last time he came to our chat he said "I will leave you guys alone" but i guess his words mean nothing.
Either way, keep on wasting your time/potential on cracking CO servers, this does not work anymore either way.
|
shush eggy noop plz, your lucky i havent crashed ya svr yet
|
|
|
11/20/2012, 22:07
|
#7
|
elite*gold: 0
Join Date: Apr 2008
Posts: 759
Received Thanks: 285
|
owned? xD
good work ^_^
|
|
|
11/21/2012, 00:46
|
#8
|
elite*gold: 0
Join Date: Apr 2008
Posts: 1,152
Received Thanks: 321
|
LOL, this thread... f*ck bins!
|
|
|
11/21/2012, 01:37
|
#9
|
elite*gold: 0
Join Date: Jan 2006
Posts: 1,055
Received Thanks: 296
|
@Ultimation:
your evilness inspires me.. love it.
|
|
|
11/22/2012, 19:34
|
#10
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
One thing...disposing of streams.
|
|
|
11/23/2012, 00:09
|
#11
|
elite*gold: 0
Join Date: Oct 2011
Posts: 9
Received Thanks: 4
|
No More, Bins [ Another Wonderful thread ... Ultimation Owned your *** O.o ]
|
|
|
11/24/2012, 00:59
|
#12
|
elite*gold: 0
Join Date: Mar 2012
Posts: 2
Received Thanks: 0
|
I think you should try to do something more creative than what you do. Isnt that waste of time? anyway good job
|
|
|
11/25/2012, 02:19
|
#13
|
elite*gold: 0
Join Date: Mar 2010
Posts: 8
Received Thanks: 2
|
Ultimate please can u learn me how to make AntiCheat 5165 please bro
|
|
|
11/25/2012, 15:15
|
#14
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
Quote:
Originally Posted by ilovegame
Ultimate please can u learn me how to make AntiCheat 5165 please bro 
|
Ultimation*
Also learn to program as for AC then anything non-.net is recommended. (C, C++, Delphi etc.)
Why? You want your AC to be as hard to reverse as possible.
|
|
|
11/25/2012, 15:20
|
#15
|
elite*gold: 28
Join Date: Jun 2010
Posts: 2,225
Received Thanks: 868
|
Quote:
Originally Posted by I don't have a username
Ultimation*
Also learn to program as for AC then anything non-.net is recommended. (C, C++, Delphi etc.)
Why? You want your AC to be as hard to reverse as possible.
|
Hmmm .net cannot be reversed in OlyDbg.
So really, get a few **** good protectors for the app/dll and
Reflecting is the most appropriate way of reversing any .net application, without that they're in trouble.
|
|
|
 |
|
Similar Threads
|
[HowTo] How To Get around FadeToBlacks 2 Minute Blowfish Key Change
11/19/2012 - CO2 Exploits, Hacks & Tools - 0 Replies
How To
Use the code below in a console app or whatever you prefer to write the key into a unprotected 5065 binary... There key changes every 2 minutes.. So..be quick!
Hint: Server and Client Prefixes are TQServer And TQClient
Code
public string GetBlowFish()
{
|
[how to ] Change blowfish key :D
05/09/2012 - SRO Private Server - 11 Replies
any idea?
|
Change PK2 Blowfish
02/26/2012 - SRO Private Server - 3 Replies
Any idea how to do it? I'm a bit new about this & if i change blowfish in silkroad & sro_client only it will show me pk2 error.
Also, i try to open creddy media.pk2 with the extractor but it gives me this error:
Error: The entry does not exist.
I already changed the blowfish key in pk2extractor.
Any help appreciated.
|
How to change blowfish key (media.pk2)?
10/31/2011 - SRO Private Server - 8 Replies
How can I change my media.pk2's blowfish key, so noobs can't steal my files?
|
All times are GMT +1. The time now is 19:37.
|
|