
14.11.2008, 17:09
|
|
Постоянный
Регистрация: 05.12.2004
Сообщений: 647
С нами:
11278406
Репутация:
818
|
|
Что не так? Отправляю в ИнетКраке ответ получаю с расшифрованым хешем
PHP код:
<?php
$fp = fsockopen("sqlinj.com", 80, $errms, $errno);
if(!$fp) {
echo "$errms : $errno";
} else {
$hash = "d8578edf8458ce06fbc5bb76a58c5ca4";
$query = "hash=".$hash."=%D0%92%D1%81%D0%BF%D0%BE%D0%BC%D0%BD%D0%B8%D1%82%D1%8C+%D0%9F%D0%B0%D1%80%D0%BE%D0%BB%D1%8C";
$data = "";
$out = "POST www.sqlinj.com/md5/index.php HTTP/1.0\r\n";
$out .= "User-Agent: Opera/9.62 (Windows NT 5.1; U; ru) Presto/2.1.1\r\n";
$out .= "Host: sqlinj.com\r\n";
$out .= "Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\n";
$out .= "Accept-Language: ru-RU,ru;q=0.9,en;q=0.8\r\n";
$out .= "Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\n";
$out .= "Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0\r\n";
$out .= "Referer: www.sqlinj.com/md5/\r\n";
$out .= "Proxy-Connection: Keep-Alive\r\n";
$out .= "Content-Length: 136\r\n";
$out .= "Content-Type: application/x-www-form-urlencoded\r\n\r\n";
$out .= $query;
fwrite($fp, $out);
$data = fgets($fp, 136);
echo $data;
}
fclose($fp);
?>
|
|
|