PHP Classes

Results

Recommend this page to a friend!

      PHP Ghost Crypt  >  All threads  >  Results  >  (Un) Subscribe thread alerts  
Subject:Results
Summary:results from my latest testing
Messages:2
Author:Dave Smith
Date:2015-11-09 00:12:26
 

  1. Results   Reply   Report abuse  
Picture of Dave Smith Dave Smith - 2015-11-09 00:12:26
The array is no longer being built correctly, Line 52 of the class should be...

return implode(PHP_EOL, $return);

The infinite loop was being caused by the $return variable not be reset, so around line 63 you need...

unset($return);
foreach($lines as $key => $line)


I was able to get obfuscated files included in obfuscated files. Took awhile to track that one down and once I found it, I had to smack myself on the forehead... duh!!!

Dave

  2. Re: Results   Reply   Report abuse  
Picture of Nick Daniels Nick Daniels - 2015-11-09 01:47:59 - In reply to message 1 from Dave Smith
Oh my.. That was too simple; How did we actually ever miss that. :z

It does work now yes, perfect. Thank you Dave; you have been helpful. As for the "\n" to PHP_EOL; with the array not being built, I must've copied the wrong file over, As I thought I had fixed that, lol.

Tho I guess I did miss it somehow :)

Again thank you, appreciated.