|
Menu |
|
|
Home |
| |
|
Discussions |
| |
|
Tools |
| |
|
Affiliates |
| |
|
Content |
| |
|
Info |
| | |
|
|
|
|
|
User Info |
|
Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144
People Online:
Visitors: 163
Members: 0
Total: 163
|
|
|
|
|
|
Full disclosure |
|
|
|
|
|
|
|
|
|
IT Security and Insecurity Portal |
|
|
Please help decode script |
|
Posted: Mon Aug 04, 2008 12:18 am |
|
|
Blazedstars |
Beginner |
|
|
Joined: Aug 04, 2008 |
Posts: 3 |
|
|
|
|
|
|
|
|
|
|
|
Posted: Mon Aug 04, 2008 2:45 am |
|
|
mge |
Valuable expert |
|
|
Joined: Jul 16, 2008 |
Posts: 142 |
|
|
|
|
|
|
|
these scripts require another in order to decrypt: data_bin/aenc.php |
|
|
|
|
Posted: Mon Aug 04, 2008 2:59 am |
|
|
Blazedstars |
Beginner |
|
|
Joined: Aug 04, 2008 |
Posts: 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Posted: Mon Aug 04, 2008 9:18 pm |
|
|
mge |
Valuable expert |
|
|
Joined: Jul 16, 2008 |
Posts: 142 |
|
|
|
|
|
|
|
this is what i got:
add.php
Code: | ?><?PHP
require_once("../db/conn.php");
include_once("data_bin/head.php");
if(!empty($_POST)){
foreach($_POST as $x => $y){
$_POST[$x] = strtr($y, array('\'' => '''));
}
}
if(isset($_POST['pr'])){ //preview message
@$name = stripslashes($_POST['itemname']);
@$num = $_POST['itemnum'];
@$price = $_POST['itemprice'];
@$dir = $_POST['itemdir'];
@$file = $_POST['itemfile'];
@$remurl= $_POST['rem_url'];
@$exp = $_POST['expires'];
@$info = stripslashes(nl2br(trim($_POST['info'])));
print <<<HTM
<table style="text-align:left" width="100%"><tr><td>
Additional Info (HTML preview)
<hr />
<font style="font:normal 9pt Verdana,Tahoma,Arial">$info</font>
<hr>
<form style="margin:0" action="additems.php" method="post">
<input type="hidden" name="itemname" value="$name" />
<input type="hidden" name="itemnum" value="$num" />
<input type="hidden" name="itemprice" value="$price" />
<input type="hidden" name="info" value="$info" />
<input type="hidden" name="itemdir" value="$dir" />
<input type="hidden" name="itemfile" value="$file" />
<input type="hidden" name="rem_url" value="$remurl" />
<input type="hidden" name="expires" value="$exp" />
<input type="submit" value="« Back" />
</form>
</td></tr></table>
<br /><br />
HTM;
exit(include_once("data_bin/foot.php"));
}
$msg_ctype = $aset['msg_ctype'];
if($msg_ctype == '1'){
$fnt = '';
$ctype = 'TEXT';
$pbtn = '<br /><br />';
}
else{
$fnt = 'font:normal 9pt Verdana,Tahoma,Arial;';
$ctype = 'HTML';
$pbtn=' ;; ;;<input style="margin:0" type="submit" name="pr" value="Preview" /> DONOT include <br> or <p> tags!';
}
@$itemname = strip_tags($_POST['itemname']);
@$itemnum = strip_tags($_POST['itemnum']);
@$itemprice = strip_tags($_POST['itemprice']);
@$remurl = strip_tags($_POST['rem_url']);
@$expires = $_POST['expires'];
if($expires == 'never'){$expires = '0';}
if($expires == 'N/A'){$expires = '99';}
@$addinfo = stripslashes(trim($_POST['info']));
if(!empty($addinfo)){$addinfo = str_replace('<br />', '', $addinfo);
}
// Add new item to database //
if (isset($_POST['s_add'])){
if(empty($itemname) || empty($itemnum) || empty($itemprice))
{
$err = '<span style="background-color:white;color:red">* All fields are required *</span>';
}
elseif(eregi('[^a-zA-Z0-9_-]', $itemnum)){
$err = '<span style="background-color:white;color:red">* Item ID contains invalid character(s) *</span>';
}
elseif(!is_numeric($itemprice)){
$err = '<span style="background-color:white;color:red">* Item Price must be numeric format 0.00 *</span>';
}
elseif(empty($_POST['itemdir']) && empty($_POST['itemfile']) && empty($remurl))
{
$err = '<span style="background-color:white;color:red">* You must select an Item Directory/File *</span>';
}
elseif($_POST['itemdir'] != 'N/A' && empty($_POST['itemfile']) && empty($remurl))
{
$err = '<span style="background-color:white;color:red">* You must select an Item File *</span>';
}
elseif(!empty($remurl) && @!fclose(@fopen( $remurl, "r"))) {
$err = '<span style="background-color:white;color:red">* No such file at address in Remote URL field *</span>';
}
else{
$time = (time() + $aset['tz_offset']*3600);
//update the database
if($_POST['itemdir'] == 'N/A' && empty($remurl)){$filename = 'N/A';
}
elseif(!empty($remurl)){
$_POST['itemdir'] = 'rem_url'; $filename = $remurl;
}
else{$filename = $_POST['itemfile'];
}
$q1 = "SELECT itemnum from ipn_items where itemnum = '$itemnum' ";
$r1 = mysql_query($q1) or die(mysql_error());
$q1 = "INSERT into ipn_items set
itemname = '$itemname',
itemnum = '$itemnum',
itemprice = '$itemprice',
addinfo = '$addinfo',
dirname = '$_POST[itemdir]',
filename = '$filename',
expires = '$expires',
addate = '$time',
lastdate = '0',
stat = '0' ";
mysql_query($q1) or die("Duplicate Item ID not allowed!<p align=\"center\"><a href=\"additems.php\">Go Back & Fix Error</a></p>");
print "Item successfully added to database<p align=\"center\"><a href=\"additems.php\">Add another Item</a> - <a href=\"cpanel.php\">Control Panel</a></p>";
exit(include_once("data_bin/end.php"));
}
}
//get the directories & files option list
function dir_files($path){
@$getdir = $_POST['itemdir'];
@$getfile = $_POST['itemfile'];
$dirs = array();
if (is_dir($path)) {
$Select = "<tr><td> ;;*Item Dir/File: </td><td><select name=\"itemdir\" onchange=\"submit()\">\n<option value=''>select dir</option>";
if ($getdir == 'N/A'){$Select .= "<option value='N/A' selected=\"selected\">N/A</option>\n";
}else{$Select .= "<option value='N/A'>N/A</option>\n";}
if ($dh = opendir($path)) {
while (($dir = readdir($dh)) !== false) {
if($dir != "." && $dir != ".." && $dir[0] != "." && !preg_match('([-a-z0-9]+\.)', $dir)){
$dirs[$dir] = ($path."/".$dir);
}}
closedir($dh);
}
if (is_dir($path."/".$dir)) {
ksort($dirs);
foreach($dirs as $dir => $dir){
if ($getdir == $dir){$Select .= "<option value=\"$dir\" selected=\"selected\">$dir</option>\n";
}
else{$Select .= "<option value=\"$dir\">$dir</option>\n";}
}}
$Select .= "</select>";
if($getdir == 'N/A'){return $Select." <font color=\"#7490AA\">(Tangible Item)</font></td></tr>\n";}
}
//get the files option list
$Select .= " ;;<select name=\"itemfile\">\n<option value=\"\">select file</option>\n";
$dir = ($path.'/'.$getdir);
$files = array();
$dir = (substr($dir, -1) == '/') ? substr($dir, 1, -1) : $dir;
if(is_dir($dir)){
if($handle = opendir($dir)){
while(false !== ($file = readdir($handle))){
if($file != "." && $file != ".." && $file[0] != '.'){
$files[$file] = ($dir.'/'.$file);
}}
closedir($handle);
}}
ksort($files);
foreach($files as $file => $file){
$filesize = filesize($dir.'/'.$file);
if($filesize >= 1048576){ $sz = round($filesize / 1048576, 1).'Mb';
}
else { $sz = round($filesize / 1024, 1).'kb';
}
if ($getfile == $file){$Select .= "<option value=\"$file\" selected=\"selected\">$file - $sz</option>\n";
}
else{$Select .= "<option value=\"$file\">$file - $sz</option>\n";}
}
$Select .= "</select></td></tr>\n";
return $Select;
}
// function: Expiry Link selection
function select_days(){
if(empty($_POST['expires']) || $_POST['expires'] == 'N/A'){$exp = '2';}else{$exp = $_POST['expires'];}
$days = array('1','2','3','4','5','6','7','14','30','60','90','never');
if(@$_POST['itemdir'] == 'N/A'){$exp = 'N/A';$days = array('N/A');}
$linkexp = "<select style=\"width:64\" name=\"expires\">\n";
while(list($a, $b) = each($days)){
if($exp == $b){
$linkexp .= "<option value=\"$exp\" selected=\"selected\">$exp</option>\n";}
else{
$linkexp .= "<option value=\"$b\">$b</option>\n";}
}
$linkexp .= "</select>\n";
return $linkexp;
}
?>
<form method="post" action="additems.php">
<table bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr><td><div style="margin:0" align="right"><a href="mngitems.php">Manage Items</a> ;;| ;;<a href="cpanel.php">Control Panel</a> | <a href="data_bin/docs.html#mngitems" target="_new"><img src="img_bin/b_docs.gif" style="border:none" align="middle" alt="Help" /></a> ;;</div>
<fieldset><legend><img src="img_bin/mng_items_sm.gif" border="0" align="middle" alt="" /> ;;Add New Item ;;</legend>
<table style="text-align:left" border="0" width="100%"><tr><td style="padding-top:10px">
<table bgcolor="#F5F7FA" cellspacing="1" border="0" width="100%" style="border:#3F6A93 1px solid;color:#00688F">
<tr><td bgcolor="#3F6A93" colspan="2" width="100%" height="22"> ;;<font color="white"><b>Add Item Data</b> <font size="1"> ;; ;;*required</font></font> ;; ;; ;; ;; ;; ;; ;; ;;<?=@$err?></td></tr>
<tr><td bgcolor="white" colspan="2" height="1"></td></tr>
<tr><td> ;;*Item Name:</td><td width="82%"><input type="text" name="itemname" style="width:250px" maxlength="55" value="<?=stripslashes($itemname)?>" /> <font color="#7490AA">max 55 characters</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;*Item ID:</td><td><input type="text" name="itemnum" style="width:130px" maxlength="15" value="<?=stripslashes($itemnum)?>" /> <font color="#7490AA">max 15 alpha-numeric characters</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;*Item Price:</td><td><input type="text" name="itemprice" style="width:64px" maxlength="8" value="<?=$itemprice?>" /> <font color="#7490AA">- format 0.99</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<?=dir_files($sec_vpath);?>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;Remote URL:</td><td><input type="text" name="rem_url" style="width:450px" value="<?=stripslashes($remurl)?>" /> <font color="#7490AA">include http://</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;Link Expires:</td><td><?=select_days();?> <font color="#7490AA">day(s)</font></td></tr>
<tr bgcolor="#F5F7FA"><td colspan="2" height="2"></td></tr>
<tr bgcolor="#A0B7CD"><td colspan="2" height="1"></td></tr>
<tr bgcolor="#F5F7FA">
<td colspan="2"><p style="margin-top:10px;margin-bottom:2px"> ;; ;;<font color="#00688F"><b>Additional Info</b> (optional <?=$ctype?>)</font> - <span class="dgrey">This info will be added to the customers email message below item data.</span></p>
<textarea style="<?=$fnt?>margin-left:8px;height:120px;width:680px" name="info" cols="" rows="">
<?=stripslashes($addinfo)?>
</textarea><br /><?=$pbtn?></td></tr></table>
<table style="margin-top:4px" border="0" cellspacing="0" width="100%">
<tr><td height="10"></td></tr>
<tr>
<td><input type="reset" value="Clear All" /> ;; ;;<input type="submit" name="s_add" value="Add Item" /> <font color="#00688F">« Save Item to database</font></td></tr></table>
</td></tr></table>
</fieldset>
</td></tr></table>
</form>
<?exit(include_once("data_bin/foot.php"))?> |
edititem.php
Code: | ?><?PHP
require_once("../db/conn.php");
include_once("data_bin/head.php");
if(!empty($_POST)){
foreach($_POST as $x => $y){
$_POST[$x] = strtr($y, array('\'' => '''));
}
}
if(isset($_POST['pr'])){ //preview message
$id = $_GET['id'];
@$name = stripslashes($_POST['itemname']);
@$num = $_POST['itemnum'];
@$price = $_POST['itemprice'];
@$dir = $_POST['itemdir'];
@$file = $_POST['itemfile'];
@$remurl= $_POST['rem_url'];
@$exp = $_POST['expires'];
@$info = stripslashes(nl2br(trim($_POST['info'])));
print <<<HTM
<table style="text-align:left" width="100%"><tr><td>
Additional Info (HTML preview)
<hr />
<font style="font:normal 9pt Verdana,Tahoma,Arial">$info</font>
<hr>
<form style="margin:0" action="edititem.php?cmd=bk&id=$id" method="post">
<input type="hidden" name="itemname" value="$name" />
<input type="hidden" name="itemnum" value="$num" />
<input type="hidden" name="itemprice" value="$price" />
<input type="hidden" name="info" value="$info" />
<input type="hidden" name="itemdir" value="$dir" />
<input type="hidden" name="itemfile" value="$file" />
<input type="hidden" name="rem_url" value="$remurl" />
<input type="hidden" name="expires" value="$exp" />
<input type="submit" value="« Back" />
</form>
</td></tr></table>
<br /><br />
HTM;
exit(include_once("data_bin/foot.php"));
}
$msg_ctype = $aset['msg_ctype'];
if($msg_ctype == '1'){
$fnt = '';
$ctype = 'TEXT';
$pbtn = '<br><br>';
}
else{
$fnt = 'font:normal 9pt Verdana,Tahoma,Arial;';
$ctype = 'HTML';
$pbtn=' ;; ;;<input style="margin:0" type="submit" name="pr" value="Preview" /> DONOT include <br> or <p> tags!';
}
// Edit Item //
if($_GET['cmd'] == 'ed'){$id = $_GET['id'];
$q1 = "SELECT * from ipn_items where itemnum = '$id' ";
$r1 = mysql_query($q1) or die(mysql_error());
$a1 = mysql_fetch_array($r1);
$name = $a1['itemname'];
$num = $a1['itemnum'];
$price = $a1['itemprice'];
$addinfo = $a1['addinfo'];
$getdir = $a1['dirname'];
$getfile = $a1['filename'];
if($getdir == 'rem_url'){$remurl = $getfile;}
else{$remurl = '';}
$expires = $a1['expires'];
if($expires == 'never'){$expires = '0';}
}
elseif($_GET['cmd'] == 'bk'){$id = $_GET['id'];
$name = stripslashes($_POST['itemname']);
$num = $_POST['itemnum'];
$price = $_POST['itemprice'];
$info = stripslashes($_POST['info']);
$addinfo = str_replace('<br />', '', $info);
$getdir = $_POST['itemdir'];
$getfile = $_POST['itemfile'];
$remurl = $_POST['rem_url'];
$expires = $_POST['expires'];
}
elseif($_GET['cmd'] == 'go'){$id = $_GET['id'];
$name = strip_tags($_POST['itemname']);
$num = strip_tags($_POST['itemnum']);
$price = strip_tags($_POST['itemprice']);
$addinfo = stripslashes(trim($_POST['info']));
$getdir = $_POST['itemdir'];
@$getfile = $_POST['itemfile'];
@$remurl = strip_tags($_POST['rem_url']);
@$expires = $_POST['expires'];
if($expires == 'N/A'){$expires = '99';}
// Check for errors //
if (isset($_POST['s_add'])){
if(empty($name) || empty($num) || empty($price))
{
$err = '<span style="background-color:white;color:red">* All fields are required! *</span>';
}
elseif(eregi('[^a-zA-Z0-9_-]', $num)){
$err = '<span style="background-color:white;color:red">* Item ID contains invalid character(s) *</span>';
}
elseif(!is_numeric($price)){
$err = '<span style="background-color:white;color:red">*Item Price must be numeric format 0.00 *</span>';
}
elseif(empty($getdir) && empty($getfile) && empty($remurl))
{
$err = '<span style="background-color:white;color:red">*You must select an Item Directory/File! *</span>';
}
elseif($getdir != 'N/A' && empty($getfile) && empty($remurl))
{
$err = '<span style="background-color:white;color:red">*You must select an Item File! *</span>';
}
elseif(!empty($remurl) && @!fclose(@fopen("$remurl", "r"))) {
$err = '<span style="background-color:white;color:red">* No such file at address in Remote URL field *</span>';
}
else{
//update the database
if(!empty($remurl)){
$getdir = 'rem_url'; $filename = $remurl;
}
else{$filename = $getfile;
}
$q1 = "UPDATE ipn_items set
itemname = '$name',
itemnum = '$num',
itemprice = '$price',
addinfo = '$addinfo',
dirname = '$getdir',
filename = '$filename',
expires = '$expires' where itemnum = '$id' ";
mysql_query($q1) or die("Duplicate Item ID not allowed!<p align=\"center\"><a href=\"javascript:history.back(1)\">Go Back & Fix Error</a></p>");
print "Item successfully updated!<br /><br /><a href=\"mngitems.php\">Manage Items</a> - <a href=\"cpanel.php\">Control Panel</a>";
exit(include_once("data_bin/end.php"));
}
}}
//get the directories & files option list
function dir_files($path,$getdir,$getfile){
$dirs = array();
if (is_dir($path)) {
$Select = "<tr><td> ;;*Item Dir/File: </td><td><select name=\"itemdir\" onchange=\"submit()\">\n<option value=\"\">select dir</option>";
if ($getdir == 'N/A'){$Select .= "<option value=\"N/A\" selected=\"selected\">N/A</option>\n";
}else{$Select .= "<option value=\"N/A\">N/A</option>\n";}
if ($dh = opendir($path)) {
while (($dir = readdir($dh)) !== false) {
if($dir != "." && $dir != ".." && $dir[0] != "." && !preg_match('([-a-z0-9]+\.)', $dir)){
$dirs[$dir] = ($path."/".$dir);
}}
closedir($dh);
}
if (is_dir($path."/".$dir)) {
ksort($dirs);
foreach($dirs as $dir => $dir){
if ($getdir == $dir){$Select .= "<option value=\"$dir\" selected=\"selected\">$dir</option>\n";
}
else{$Select .= "<option value=\"$dir\">$dir</option>\n";}
}}
$Select .= "</select>";
if($getdir == 'N/A'){return $Select." <font color=\"#7490AA\">(Tangible Item)</font></td></tr>\n";}
}
//get the files option list
$Select .= " ;;<select name=\"itemfile\">\n<option value=\"\">select file</option>\n";
$dir = ($path.'/'.$getdir);
$files = array();
$dir = (substr($dir, -1) == '/') ? substr($dir, 1, -1) : $dir;
if(is_dir($dir)){
if($handle = opendir($dir)){
while(false !== ($file = readdir($handle))){
if($file != "." && $file != ".." && $file[0] != '.'){
$files[$file] = ($dir.'/'.$file);
}}
closedir($handle);
}}
ksort($files);
foreach($files as $file => $file){
$filesize = filesize($dir.'/'.$file);
if($filesize >= 1048576){ $sz = round($filesize / 1048576, 1).'Mb';}
else { $sz = round($filesize / 1024, 1).'kb';}
if ($getfile == $file){$Select .= "<option value=\"$file\" selected=\"selected\">$file - $sz</option>\n";}
else{$Select .= "<option value=\"$file\">$file - $sz</option>\n";}}
$Select .= "</select></td></tr>\n";
return $Select;
}
// function: Expiry Link selection
function select_days($getdir,$expires){
if($expires == '0'){$expires = 'never';}
else{$expires = $expires;}
$days = array('1','2','3','4','5','6','7','14','30','60','90','never');
if(@$getdir == 'N/A'){$expires = 'N/A';$days = array('N/A');}
$linkexp = "<select style=\"width:64px\" name=\"expires\">\n";
while(list($a, $b) = each($days)){
if($expires == $b){
$linkexp .= "<option value=\"$expires\" selected=\"selected\">$expires</option>\n";}
else{
$linkexp .= "<option value=\"$b\">$b</option>\n";}
}
$linkexp .= "</select>\n";
return $linkexp;
}
?>
<form method="post" action="edititem.php?cmd=go&id=<?=$id?>">
<table bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr><td><div align="right"><a href="mngitems.php">Manage Items</a> ;;| ;;<a href="cpanel.php">Control Panel</a> ;;</div>
<fieldset><legend><img src="img_bin/mng_items_sm.gif" border="0" align="middle" alt="" /> ;;Edit Item ;;</legend>
<table style="text-align:left" border="0" width="100%"><tr><td style="padding-top:10px">
<table bgcolor="#F5F7FA" cellspacing="1" border="0" width="100%" style="border:#3F6A93 1px solid;color:#00688F">
<tr><td bgcolor="#3F6A93" colspan="2" width="100%" height="22" > ;;<font color="white"><b>Item Data</b> <font size="1"> ;; ;;*required</font></font> ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;;<?=@$err?></td></tr>
<tr><td bgcolor="white" colspan="2" height="1"></td></tr>
<tr><td> ;;*Item Name:</td><td width="82%"><input type="text" name="itemname" style="width:250px" maxlength="55" value="<?=stripslashes($name)?>" /> <font color="#7490AA">max 55 characters</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;*Item ID:</td><td><input type="text" name="itemnum" style="width:130px" maxlength="15" value="<?=stripslashes($num)?>" /> <font color="#7490AA">max 15 characters</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;*Item Price:</td><td><input type="text" name="itemprice" style="width:64px" maxlength="8" value="<?=$price?>" /> ;;<font color="#7490AA">- format 0.99</font></td></tr>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<?=dir_files($sec_vpath,$getdir,$getfile);?>
<?
if($getdir != 'N/A'){
print <<<HTM
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;Remote URL:</td><td><input type="text" name="rem_url" style="width:450px" value="$remurl" /> <font color="#7490AA">include http://</font></td></tr>
HTM;
}
?>
<tr><td bgcolor="white" colspan="2" height="2"></td></tr>
<tr><td> ;;Link Expires:</td><td><?=select_days($getdir,$expires);?> <font color="#7490AA">day(s)</font></td></tr>
<tr bgcolor="#F5F7FA"><td colspan="2" height="2"></td></tr>
<tr bgcolor="#A0B7CD"><td colspan="2" height="1"></td></tr>
<tr bgcolor="#F5F7FA">
<td colspan="2"><p style="margin-top:7px;margin-bottom:3px"> ;; ;;<font color="#3F6A93"><b>Additional Info</b> (optional <?=$ctype?>)</font> - <span class="dgrey">This info will be added to the customers email message.</span></p>
<textarea style="<?=$fnt?>margin-left:8px;height:120px;width:680px" name="info" cols="" rows="">
<?=stripslashes($addinfo)?>
</textarea><br /><?=$pbtn?></td></tr></table>
<table style="margin-top:4px" border="0" cellspacing="0" width="100%">
<tr><td height="10"></td></tr>
<tr>
<td><input type="reset" value="Reset" /> ;; ;;<input type="submit" name="s_add" value="Update" /> <font color="#00688F">« Save changes</font></td></tr></table>
</td></tr></table>
</fieldset>
</td></tr></table>
</form>
<?exit(include_once("data_bin/foot.php"))?> |
should all be correct |
|
|
|
|
|
|
Thank you so much!! |
|
Posted: Tue Aug 05, 2008 3:05 am |
|
|
Blazedstars |
Beginner |
|
|
Joined: Aug 04, 2008 |
Posts: 3 |
|
|
|
|
|
|
|
Everything is perfect. I really appreciate all your efforts and hard work to provide me with the decoded version of the script. Thank you so much! |
|
|
|
|
www.waraxe.us Forum Index -> PHP script decode requests
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
All times are GMT
Page 1 of 1
|
|
|
Powered by phpBB © 2001-2008 phpBB Group
|
|
|
|
|
|