Jump to content

RickyHill18

Member
  • Posts

    10
  • Joined

  • Last visited

Posts posted by RickyHill18

  1. I can see the hex codes from this but can't decode them.

    <?php

    $handle = @fopen("Emboar.pkm", "r");

    if ($handle) {

    while (!feof($handle)) {

    $hex = bin2hex(fread ($handle , 4 ));

    print $hex."\n";

    }

    fclose($handle);

    }

    ?>

×
×
  • Create New...