
02.06.2009, 16:38
|
|
Он хакер.
Регистрация: 01.11.2008
Сообщений: 1,756
С нами:
9223466
Репутация:
3171
|
|
Вот,работает,только кодировку сменить придеться похоже ри передаче сообщения.А иначе можеш посмотреть что получаеться у себя в шб.
Код:
PHP код:
<?php
/**
* @author m0hze
* @copyright 2009
*/
if(!isset($_GET['name'])){
$exec = curl_init('http://geforse.my1.ru/gb/');
curl_setopt($exec, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($exec, CURLOPT_USERAGENT, 'Opera/9.25 (Windows NT 5.1; U; ru)');
curl_setopt($exec, CURLOPT_REFERER, 'http://geforse.my1.ru/gb/');
curl_setopt($exec, CURLOPT_HEADER, 1);
$page = curl_exec($exec);
preg_match('#name="seckey" value="([0-9]+)"#', $page, $key);
$seckey = $key[1];
preg_match('#src="http://geforse.my1.ru/secure/\?k=' . $seckey .
';s=gb;tm=(.*)"#', $page, $url_key);
$url = 'http://geforse.my1.ru/secure/?k=' . $seckey . ';s=gb;tm=' . $url_key[1];
echo '<form action="" method="GET">
Введите имя: <input type="text" name="name"><br>
Введите Email: <input type="text" name="email"><br>
Введите WWW: <input type="text" name="url"><br>
Введите сообщение: <input type="text" name="message"><br>
Введите Icon: <input type="text" name="key"><img src="' . $url . '"><br>
<input type="hidden" name="seckey" value="' . $seckey . '">
<input type="submit">';
}elseif(isset($_GET['name'])) {
$curl = curl_init('http://geforse.my1.ru/gb/');
echo $post = 'name=' . $_GET['name'] . '&email=' . $_GET['email'] . '&url=' . $_GET['url'] .
'&message=' . $_GET['message'] . '&code=' . $_GET['key'] . '&seckey=' . $_GET['seckey'] .
'&a=8&sos=752002698';
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_USERAGENT, 'Opera/9.25 (Windows NT 5.1; U; ru)');
curl_setopt($curl, CURLOPT_REFERER, 'http://geforse.my1.ru/gb/');
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
$send = curl_exec($curl);
echo $send;
}
?>
|
|
|