Filterhead
03-07-2008, 04:17 PM
make a new webbrowser in VB.
the code in form load is WebBrowser1.Navigate ("http://www.myphpchecklinkhere.com")
default password is: ace-x.net
make a new password & copy the code from:
http://www.ace-x.net/public/hack.php
script:
<?php
/*
Author: Filterhead
Site: www.ace-x.net
Date: 22/11/2008
Copyright 2008 - Filterhead
*/
//edit these 2 lines
$title = "Team Ace-X Public Hack";
/*
get password at:
www.ace-x.net/public/hack.php
//default password = ace-x.net
*/
$pass = "1a947202f149e6ee1ccdd88973a3ec222d83baa2";
//Don't edit any lines below without experience
session_start();
$curr_file = basename($_SERVER['REQUEST_URI']);
$filename = preg_replace('/(.+)\..*$/', '$1', $curr_file);
$updater = $filename . ".php";
$file = $filename . ".html";
$redirect = "<meta http-equiv=\"refresh\" content=\"1; URL=".$filename.".php\">";
if($_GET['logout'] == "true"){
$_SESSION = array();
session_destroy();
}
//No password stored in session, ask for password
if (!isset($_SESSION['logged'])){
if (!isset($_POST['SetPass'])){
?>
<form action="<?php echo $updater; ?>" method="POST">
<center>
Please enter a password:
<input type="password" name="pass" />
<input type="submit" name="SetPass" value="Confirm" />
</center>
</form>
<?php
}else{
if ($pass != sha1(md5($_POST['pass']))){
//passwords didn't match
echo "<center>Wrong Password</center>";
echo $redirect;
die;
}else{
//passwords match
$_SESSION['logged'] = 1;
echo "<center>Correct Password!</center>";
//Refresh in 1 second
echo $redirect;
}
}
}else{
if (!isset ($_POST['Confirm'])){
if( file_exists($file) == true ){
$preview = "<iframe src=\"".$filename.".html\" height=\"50\" width=\"200\" frameborder=\"0\" scrolling=\"no\"></iframe>";
}else{
$preview = "Not available.";
}
?>
<form action="<?php echo $updater; ?>" method="POST">
<center>
<font size="+7"><?php echo $title ?></font><br />
<a href="?logout=true">Log out</a><br />
<br />
<select name="Selection">
<option value="1">Detected</option>
<option value="2">Undetected</option>
</select>
<input type="submit" name="Confirm" value="Confirm" /><br />
Preview:<br />
<?php echo $preview; ?><br />
Navigate the browser in your public hack to:<br />
<br />
<?php $link = str_replace(".php", ".html", "http://".$_SERVER['HTTP_HOST'] .$_SERVER['SCRIPT_NAME']);
echo "<a href=\"".$link."\">".$link."</a>"; ?>
</center>
</form>
<?php
}else{
if (file_exists($file)){
unlink($file);
}
$fp = fopen($file, "a");
$detected = $_POST['Selection'];
switch($detected){
case 1: fwrite($fp, "<center><font color='#FF0000'><b>Detected</b></font></center>"); break;
case 2: fwrite($fp, "<center><font color='#00FF00'><b>Undetected</b></font></center>"); break;
}
fclose($fp);
echo "<center>
File updated successfully!<br />
".$redirect."
</center>";
}
}
?>
download file:
http://www.ace-x.net/public/hack.zip
Store the file on a PHP enabled host.
//Updated
I know it's useless...
Do not post this code on any other site without my permission!
© 2008 LiFESTYLE - Mette
the code in form load is WebBrowser1.Navigate ("http://www.myphpchecklinkhere.com")
default password is: ace-x.net
make a new password & copy the code from:
http://www.ace-x.net/public/hack.php
script:
<?php
/*
Author: Filterhead
Site: www.ace-x.net
Date: 22/11/2008
Copyright 2008 - Filterhead
*/
//edit these 2 lines
$title = "Team Ace-X Public Hack";
/*
get password at:
www.ace-x.net/public/hack.php
//default password = ace-x.net
*/
$pass = "1a947202f149e6ee1ccdd88973a3ec222d83baa2";
//Don't edit any lines below without experience
session_start();
$curr_file = basename($_SERVER['REQUEST_URI']);
$filename = preg_replace('/(.+)\..*$/', '$1', $curr_file);
$updater = $filename . ".php";
$file = $filename . ".html";
$redirect = "<meta http-equiv=\"refresh\" content=\"1; URL=".$filename.".php\">";
if($_GET['logout'] == "true"){
$_SESSION = array();
session_destroy();
}
//No password stored in session, ask for password
if (!isset($_SESSION['logged'])){
if (!isset($_POST['SetPass'])){
?>
<form action="<?php echo $updater; ?>" method="POST">
<center>
Please enter a password:
<input type="password" name="pass" />
<input type="submit" name="SetPass" value="Confirm" />
</center>
</form>
<?php
}else{
if ($pass != sha1(md5($_POST['pass']))){
//passwords didn't match
echo "<center>Wrong Password</center>";
echo $redirect;
die;
}else{
//passwords match
$_SESSION['logged'] = 1;
echo "<center>Correct Password!</center>";
//Refresh in 1 second
echo $redirect;
}
}
}else{
if (!isset ($_POST['Confirm'])){
if( file_exists($file) == true ){
$preview = "<iframe src=\"".$filename.".html\" height=\"50\" width=\"200\" frameborder=\"0\" scrolling=\"no\"></iframe>";
}else{
$preview = "Not available.";
}
?>
<form action="<?php echo $updater; ?>" method="POST">
<center>
<font size="+7"><?php echo $title ?></font><br />
<a href="?logout=true">Log out</a><br />
<br />
<select name="Selection">
<option value="1">Detected</option>
<option value="2">Undetected</option>
</select>
<input type="submit" name="Confirm" value="Confirm" /><br />
Preview:<br />
<?php echo $preview; ?><br />
Navigate the browser in your public hack to:<br />
<br />
<?php $link = str_replace(".php", ".html", "http://".$_SERVER['HTTP_HOST'] .$_SERVER['SCRIPT_NAME']);
echo "<a href=\"".$link."\">".$link."</a>"; ?>
</center>
</form>
<?php
}else{
if (file_exists($file)){
unlink($file);
}
$fp = fopen($file, "a");
$detected = $_POST['Selection'];
switch($detected){
case 1: fwrite($fp, "<center><font color='#FF0000'><b>Detected</b></font></center>"); break;
case 2: fwrite($fp, "<center><font color='#00FF00'><b>Undetected</b></font></center>"); break;
}
fclose($fp);
echo "<center>
File updated successfully!<br />
".$redirect."
</center>";
}
}
?>
download file:
http://www.ace-x.net/public/hack.zip
Store the file on a PHP enabled host.
//Updated
I know it's useless...
Do not post this code on any other site without my permission!
© 2008 LiFESTYLE - Mette