Mwinelands strace foo

From Cheatsheet
Revision as of 21:14, 25 July 2015 by Admin (talk | contribs) (Created page with "Here is the gold if ( $_SERVER['REMOTE_ADDR'] == '10.30.4.80' ) { $file = 'pid.log'; $current = getmypid(); file_put_contents($file, $current); s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Here is the gold

if ( $_SERVER['REMOTE_ADDR'] == '10.30.4.80' ) {
      $file = 'pid.log';
      $current = getmypid();
      file_put_contents($file, $current);
      sleep(7);
}