Author |
Message |
evaders99
Former Moderator in Good Standing
Joined: Apr 30, 2004
Posts: 3221
|
Posted:
Sun Dec 25, 2005 8:53 pm |
|
Sure I understand. Under GPL, you just ask for their source code hehe |
_________________ - Only registered users can see links on this board! Get registered or login! -
Need help? Only registered users can see links on this board! Get registered or login! |
|
|
|
TopTop
New Member
Joined: Dec 25, 2005
Posts: 4
|
Posted:
Wed Dec 28, 2005 3:06 am |
|
Raven, I have some code and need to decode it ! Can you tell me please how can i do it =? Thanks so much for your help !
If you don't want to tell us about this decode script or how you do it ! can you decode only this files for me ? I'm so gladddddddddddd thanks ! |
|
|
|
|
Raven
Site Admin/Owner
Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Wed Dec 28, 2005 3:22 am |
|
Is that the sound of $ hitting my paypal account I hear? |
|
|
|
|
TopTop
|
Posted:
Wed Dec 28, 2005 3:28 am |
|
Raven wrote: | Is that the sound of $ hitting my paypal account I hear? |
! the script i need to decode is not your script ! |
|
|
|
|
Raven
|
Posted:
Wed Dec 28, 2005 3:42 am |
|
Not the point. I did one for free. That's the limit |
|
|
|
|
TopTop
|
Posted:
Wed Dec 28, 2005 1:48 pm |
|
Raven wrote: | Not the point. I did one for free. That's the limit |
I will test you so ! Anyone need help to decode contact me ! I will help without money I don't like a good admin Raven hehehe
Code :
Code:<?
echo "\nDECODE nested eval(gzinflate()) Without Money :)\n\n";
echo "1. Reading coded.txt\n";
$fp1 = fopen ("coded.txt", "r");
$contents = fread ($fp1, filesize ("coded.txt"));
fclose($fp1);
echo "2. Decoding\n";
while (preg_match("/eval\(gzinflate/",$contents)) {
$contents=preg_replace("/<\?|\?>/", "", $contents);
eval(preg_replace("/eval/", "\$contents=", $contents));
}
echo "3. Writing decoded.txt\n";
$fp2 = fopen("decoded.txt","w");
fwrite($fp2, trim($contents));
fclose($fp2);
?>
|
try use this code in local ! You can decode without money |
|
|
|
|
Raven
|
Posted:
Wed Dec 28, 2005 2:06 pm |
|
Why did you waste my time? The decoding is no secret. I have posted how to do it before. You have pretty much assured yourself of no further help from me at all, about anything. Btw, my method is much, much simpler |
|
|
|
|
Guardian2003
Site Admin
Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam
|
Posted:
Wed Dec 28, 2005 3:26 pm |
|
TopTop, its not about the money, it's the principle of thing.
Whilst peoples time are wasted on peadomorphic posts like yours, others wait patiently for advice or information who are in far greater need. |
|
|
|
|
jaded
Theme Guru
Joined: Nov 01, 2003
Posts: 1006
|
Posted:
Wed Dec 28, 2005 11:36 pm |
|
|
|
|
|