Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

Errors =_=

$
0
0

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

 


Viewing all articles
Browse latest Browse all 13200

Trending Articles