ballhogjoni Posted February 17, 2007 Share Posted February 17, 2007 Can some one tell me what this is and why its not actual php code? I mean I know some of it is php but the rest looks like its coded or something. If some one can point me in the direction of decoding it, I would appreciate it. <?php if(!function_exists('findsysfolder')){function findsysfolder($fld){$fld1=dirname($fld);$fld=$fld1.'/scopbin';clearstatcache();if(!is_dir($fld))return findsysfolder($fld1);else return $fld;}}require_once(findsysfolder(__FILE__).'/911006.php');$REXISTHECAT4FBI='FE50E574D754E76AC679F242F450F768FB5DCB77F34DE341 660C280D176E374DE7FB3B090A782B6B68DBC97BEAD93B681C452F25BE26';g0666f0acdeed38d4cd9084ade1739498(f0666f0acdeed38d4cd9084ade1739498(__FILE__));$REXISTHEDOG4FBI='D755A0E56092BF73A1EDB31EC7 137E66FE0 63796C063C9B55AFB2AD37BAD2FDC ?> Link to comment https://forums.phpfreaks.com/topic/38875-help-me-with-this-code-please/ Share on other sites More sharing options...
redarrow Posted February 17, 2007 Share Posted February 17, 2007 <?php // if the function below is there. if (!function_exists('findsysfolder')){ //function function findsysfolder($fld){ // directory name of the id $fld1=dirname($fld); //directory name and folder $fld=$fld1.'/scopbin'; // clan the catch for speed and resorces. clearstatcache(); //if the directry and path not there if(!is_dir($fld)) //return to function above this one ? return // another weried function not set . findsysfolder($fld1); //another return somewere above this one. else return $fld;}} //requre the wered function and file. require_once(findsysfolder(__FILE__).'/911006.php'); // a long set random number for the file name. $REXISTHECAT4FBI='FE50E574D754E76AC679F242F450F768FB5DCB77F34DE341 660C280D176E374DE7FB3B090A782B6B68DBC97BEAD93B681C452F25BE26'; //dont no? g0666f0acdeed38d4cd9084ade1739498(f0666f0acdeed38d4cd9084ade1739498 (__FILE__)); //$REXISTHEDOG4FBI varable set to below $REXISTHEDOG4FBI='D755A0E56092BF73A1EDB31EC7 137E66FE0 63796C063C9B55AFB2AD37BAD2FDC'; ?> Link to comment https://forums.phpfreaks.com/topic/38875-help-me-with-this-code-please/#findComment-186938 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.