|
|
|
|
Menu |
|
|
Home |
| |
|
Discussions |
| |
|
Tools |
| |
|
Affiliates |
| |
|
Content |
| |
|
Info |
| | |
|
|
|
|
|
User Info |
|
Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144
People Online:
Visitors: 100
Members: 0
Total: 100
|
|
|
|
|
|
Full disclosure |
|
|
|
|
|
|
|
|
|
IT Security and Insecurity Portal |
|
|
Can anyone help me, decode base64 this 2 files |
|
Posted: Thu Nov 11, 2010 6:20 am |
|
|
sterseo |
Beginner |
|
|
Joined: Nov 11, 2010 |
Posts: 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Posted: Thu Nov 11, 2010 6:44 am |
|
|
tsabitah |
Valuable expert |
|
|
Joined: Jul 07, 2010 |
Posts: 328 |
Location: surabaya |
|
|
|
|
|
|
http://pastebin.com/wimsxbMq
Code: | <?php
session_start();
require_once("../config.php");
require_once("../classes/manipulate.php");
require_once("../classes/misc.func.php");
$data = new DataManipulator();
get_status_license();
if ($_POST) {
$post_array = $_POST;
$post_array["psd_password"] = md5($post_array["psd_password"]);
$admin_detail = $data->select("Admins", "*", array("AdminEmail" => addslashes($post_array["txtEmailAddress"]), "AdminPassword" => $post_array["psd_password"]));
if (!empty($admin_detail)) {
$admin_detail = $admin_detail[0];
$_SESSION["login_admin_id"] = intval($admin_detail["AdminID"]);
$_SESSION["login_admin_email"] = $admin_detail["AdminEmail"];
$_SESSION["admin_rights"]["r_home"] = intval($admin_detail["IsSite_Manage"]);
$_SESSION["admin_rights"]["r_category"] = intval($admin_detail["IsCategory_Manage"]);
$_SESSION["admin_rights"]["r_ad"] = intval($admin_detail["IsAd_Manage"]);
$_SESSION["admin_rights"]["r_account"] = intval($admin_detail["IsAccount_Manage"]);
$_SESSION["admin_rights"]["r_payment"] = intval($admin_detail["IsPayment_Manage"]);
$_SESSION["admin_rights"]["r_page"] = intval($admin_detail["IsPage_Manage"]);
header("location:home.php");
exit();
}
}
header("location:index.php");
?> |
|
|
|
|
|
|
|
|
|
Posted: Thu Nov 11, 2010 6:48 am |
|
|
tsabitah |
Valuable expert |
|
|
Joined: Jul 07, 2010 |
Posts: 328 |
Location: surabaya |
|
|
|
|
|
|
http://pastebin.com/nbhG9Qpc
Code: | <?php
require_once("../config.php");
if (intval($_SESSION["login_admin_id"]) == 0) {
header("location:index.php");
exit();
}
require_once("../classes/misc.func.php");
require_once("../classes/manipulate.php");
$data = new DataManipulator();
$title = $data->select("SiteManager", "*", array("SiteVariable" => "SiteName"));
$title = $title[0];
?> |
|
|
|
|
|
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
|
|
|
|
|
|
|