Jump to content

lulzs3c

New Members
  • Posts

    4
  • Joined

  • Last visited

lulzs3c's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. $pid = popen( $command,"python Hash_ID_v1.1.py", 'r'); pclose($pid);
  2. see it just returns null PHP Warning: feof() expects parameter 1 to be resource, null given in hash.php on line 51 PHP Warning: fread() expects parameter 1 to be resource, null given inhash.php on line 53
  3. tried popen and it just returned null
  4. long story short i decided to make a php script that can identify hashes and return the type such as MD5,SHA-1,etc i keep getting these same 2 errors PHP Warning: fread() expects parameter 1 to be resource, boolean given in hash.php on line 53 PHP Warning: feof() expects parameter 1 to be resource, boolean given in hash.php on line 51 heres my hash.php file <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Online Hash Identifyer By Lulzs3c</title> <style type='text/css'> body{ background:#000; color: #7FFF00; font-family:'Lucida Console',sans-serif !important; font-size: 12px; } fieldset { border: 0; } </style> <body> <div id="foo" align="center"> <img src="Untitled.png" alt="LulzFiles" /> </div> <form method="post" action="hash.php" name="checkcodes" id="checkcodes"> <fieldset> <label for="username">Enter Hash to identify : </label><input type="text" name="code" id="code" /> <input type="submit" name="register" id="register" value="Submit" required /> </fieldset> <?php if(!empty($_POST['code'])) { $param1 = $_POST['code']; $param1 = str_replace(' ', '',$param1); $filter = '!^[\w @.-]*$!'; $b64pram = base64_encode($param1); $command = "Hash_ID_v1.1.py"; $command .= " $b64pram 2>&1"; header('Content-Type: text/html; charset=utf-8'); echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />'; echo " <button ONCLICK='history.go(-1)'>Back</button><br />"; $pid = fopen( $command,"python Hash_ID_v1.1.py"); echo "<body><pre>"; while( !feof( $pid ) ) { echo fread($pid, 256); flush(); ob_flush(); echo "<script>window.scrollTo(0,99999);</script>"; usleep(100000); } fclose($pid); echo "</pre><script>window.scrollTo(0,99999);</script>"; } ?> and heres my "Hash_ID_v1.1.py" file (had to upload it to pastebin because its too long) http://pastebin.com/txnACi1N it returns those errors and the page just continues to try and load forever with no success, i cant figure out whats wrong with it and ive been up for 2 days trying to fix it with no success
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.