PDA

View Full Version : Paid Project


holyearth
03-21-2008, 01:30 PM
Hello,

Not sure if this is the right section for this post - if not then mods please feel free to move it.

Disclaimer: I know nothing about Linux

I have a commercial application that runs on Linux (CentOS v5) that I need to have "reversed". There are some .so's that accompany the files. The installer is an ".rpm". The .rpm is 6mb.

$1K (US) to the person who can successfully reverse it first. I am available on most instant messengers. PM me to get in contact.

LibX
03-21-2008, 04:04 PM
Try this

private static void ReverseRPM(string Original, string Reversed)
{
byte[] Data = File.ReadAllBytes(Original);
byte[] ReversedData = new byte[Data.Length];
for(int i = Data.Length; i > 0; i--)
{
ReversedData[Data.Length - i] = Data[i - 1];
}
File.WriteAllBytes(Reversed, ReversedData);
}

jhunt
03-22-2008, 03:39 AM
Very compact code :p

holyearth
03-22-2008, 07:56 AM
I have extracted the .rpm - that is not the problem - I am looking to "reverse" a license check.....

Devine9
03-25-2008, 04:09 PM
No crack/reversing requests here.
<end of thread>

-DR