|
||
|
|||||||
| Razor: The Cutting Edge UO Assistant Razor is an Assistant program (similar to the popular UOAssist) for player run Ultima Online shards. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) | ||
|
RunUO Project Manager
Join Date: Jul 2004
Location: Harrison, OH
Age: 30
Posts: 3,627
|
Some guy named... Dargoth1234 posted the following on the Stratics forum:
Quote:
Quote:
Let's see if hes got what it takes. |
||
|
|
|
|
|
#2 (permalink) |
|
RunUO Project Manager
Join Date: Jul 2004
Location: Harrison, OH
Age: 30
Posts: 3,627
|
The stratics thread which I am sure will get deleted is:
http://boards.stratics.com/php-bin/u...ch=&PHPSESSID= |
|
|
|
|
|
#4 (permalink) | |
|
RunUO Project Manager
Join Date: Jul 2004
Location: Harrison, OH
Age: 30
Posts: 3,627
|
Quote:
Stratics has always been that way ![]() This guy's a moron. |
|
|
|
|
|
|
#5 (permalink) |
|
RunUO Project Manager
Join Date: Jul 2004
Location: Harrison, OH
Age: 30
Posts: 3,627
|
Well anyway...
The thread got whacked... Stratics moved it to an internal board called "Evidence". Which I am glad they did. The guy said he's taking the code to the FBI... which makes me laugh considering Zippy works for a goverment agency. Anyway... today's laugh is over. The guy doenst have a set of nuts, makes shit up and then hides behind lies. |
|
|
|
|
|
#6 (permalink) |
|
Administrator
Join Date: Aug 2002
Location: Baltimore, MD
Age: 25
Posts: 4,868
|
Yeah that's pretty hillarious.
On this reguard, I'll gladly post any section of Razor source anyone requests that's supected of being a back door. Of course, no one will, because such sections do not exist. The only information Razor itself transmits is a randomly generated number in order for statistical tracking. This number is transmitted when Razor checks to see if its the latest version, and thus this can be disabled by disabling the version checking. The source of this segment is posted below for clarity. This is the only code in Razot that communicates with anything other than the client and the OSI/RunUO server connected. Code:
private static void CheckVersion()
{
int uid = 0;
try
{
string str = Config.GetRegString( Microsoft.Win32.Registry.LocalMachine, "UId" );
if ( str != null && str.Length > 0 )
uid = Convert.ToInt32( str, 16 );
}
catch
{
uid = 0;
}
if ( uid == 0 )
{
try
{
uid = Utility.Random( int.MaxValue - 1 );
if ( !Config.SetRegString( Microsoft.Win32.Registry.LocalMachine, "UId", String.Format( "{0:x}", uid ) ) )
uid = 0;
}
catch
{
uid = 0;
}
}
try
{
WebRequest req = WebRequest.Create( String.Format( "http://www.runuo.com/razor/version.php?id={0}", uid ) );
using ( StreamReader reader = new StreamReader( req.GetResponse().GetResponseStream() ) )
{
Version newVer = new Version( reader.ReadToEnd().Trim() );
Version v = Assembly.GetCallingAssembly().GetName().Version;
if ( v.CompareTo( newVer ) < 0 ) // v < newVer
{
if ( MessageBox.Show( Language.GetString( LocString.NewerVersion ), "New Razor Version", MessageBoxButtons.YesNo, MessageBoxIcon.Information ) == DialogResult.Yes )
{
/*
string args = String.Format( "{0} Razor.exe", v.ToString() );//, Process.GetCurrentProcess().ProcessName );
Process.Start( "Patcher.exe", args );
Process.GetCurrentProcess().Kill();
*/
MainForm.LaunchBrowser( "http://www.runuo.com/razor/" );
}
}
}
}
catch //( Exception e )
{
//LogCrash( e );
}
}
__________________
Zippy, Razor Creator and RunUO Core Developer The RunUO Software Team "Intuition, like a flash of lightning, lasts only for a second. It generally comes when one is tormented by a difficult decipherment and when one reviews in his mind the fruitless experiments already tried. Suddenly the light breaks through and one finds after a few minutes what previous days of labor were unable to reveal." ~The Cryptonomicon |
|
|
|
|
|
#7 (permalink) |
|
Join Date: May 2005
Location: Maine
Posts: 783
|
Hmm. . . .maybe he got confused when checking out the "Automatically open doors" option?
I've used both UO Assist and Razor, and Razor certainly does blow UOA away. And it's free. I suppose I've never scrutinized the network activity that Razor produces, but quite honestly, I don't think so many people would use it if it had a hole like that in it. Besides, why would the RunUO staff give a rat's ass about getting people's passwords? AND. . . .these messageboards are way cooler than the tugsoft site. Not that I can talk, I can't make websites for beans :P *these are my opinions, I'm not forcing anyone to believe them. Just trolling ![]() |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|