Waraxe IT Security Portal
Login or Register
June 16, 2025
Menu
Home
Logout
Discussions
Forums
Members List
IRC chat
Tools
Base64 coder
MD5 hash
CRC32 checksum
ROT13 coder
SHA-1 hash
URL-decoder
Sql Char Encoder
Affiliates
y3dips ITsec
Md5 Cracker
User Manuals
AlbumNow
Content
Content
Sections
FAQ
Top
Info
Feedback
Recommend Us
Search
Journal
Your Account
User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144

People Online:
Visitors: 43
Members: 0
Total: 43
Full disclosure
SEC Consult SA-20250604-0 :: Local Privilege Escalation and Default Credentials in INDAMED - MEDICAL OFFICE (Medical practice management) Demo version
Full Disclosure: CVE-2025-31200 & CVE-2025-31201 – 0-Click iMessage Chain ? Secure Enclave Key Theft, Wormable RCE, Crypto Theft
Defense in depth -- the Microsoft way (part 89): user grouppolicies don't deserve tamper protection
CVE-2025-45542: Time-Based Blind SQL Injection in CloudClassroom PHP Project v1.0
ERPNext v15.53.1 Stored XSS in bio Field Allows Arbitrary Script Execution in Profile Page
ERPNext v15.53.1 Stored XSS in user_image Field Allows Script Execution via Injected Image Path
Local information disclosure in apport and systemd-coredump
Stored XSS via File Upload - adaptcmsv3.0.3
IDOR "Change Password" Functionality - adaptcmsv3.0.3
Stored XSS "Send Message" Functionality - adaptcmsv3.0.3
Authenticated File Upload to RCE - adaptcmsv3.0.3
Stored XSS in "Description" Functionality - cubecartv6.5.9
Multiple Vulnerabilities in SAP GuiXT Scripting
CVE-2024-47081: Netrc credential leak in PSF requests library
Exploit CVE-2019-9978: Remote Code Execution in Social Warfare WordPress Plugin (<= 3.5.2)
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> Please Decode
Post new topicReply to topic View previous topic :: View next topic
Please Decode
PostPosted: Fri Feb 14, 2014 8:05 am Reply with quote
devilhunter
Active user
Active user
Joined: Jul 12, 2013
Posts: 35




http://www.pastebin.ca/2640427

Thank You
View user's profile Send private message
:)
PostPosted: Sat Feb 15, 2014 7:12 am Reply with quote
Dm4r
Beginner
Beginner
Joined: Sep 02, 2012
Posts: 3
Location: Dm4r




Code:

<?php
/**
*
* @ This file is created by is-sec.com
* @ Mr.Dm4r (PHP5 Decoder for ionCube Encoder)
*
* @ Version : 1.1.7.0
* @ Author : Mr.Dm4r
* @ Release on : 25.02.2013
* @ Official site : http://is-sec.com
*
*/

function ust_kategorim_ne($catid) {
while ($catid) {
$cat = get_category( $catid );
$catid = $cat->category_parent;
$catParent = $cat->cat_ID;
}

return $catParent;
}

function mytheme_add_admin() {
global $themename;
global $shortname;
global $options;

if ($_GET['page'] == basename( __FILE__ )) {
if ('save' == $_REQUEST['action']) {
foreach ($options as $value) {
update_option( $value['id'], $_REQUEST[$value['id']] );
}

foreach ($options as $value) {

if (isset( $_REQUEST[$value['id']] )) {
update_option( $value['id'], $_REQUEST[$value['id']] );
continue;
}

delete_option( $value['id'] );
}

header( 'Location: admin.php?page=panel.php&saved=true' );
}
else {
if ('reset' == $_REQUEST['action']) {
foreach ($options as $value) {
delete_option( $value['id'] );
}

header( 'Location: admin.php?page=panel.php&reset=true' );
}
}
}

add_menu_page( $themename, $themename, 'administrator', basename( __FILE__ ), 'mytheme_admin' );
}

function mytheme_admin() {
global $themename;
global $shortname;
global $options;

$i = 436;
echo '
<div class="wrap rm_wrap">
<h2>';
echo $themename;
echo ' Ayarlar</h2><div class="clearfix"></div><br />

<div class="rm_opts">
<form method="post">
';
foreach ($options as $value) {
switch ($value['type']) {
case 'open': {
break;
}

case 'close': {
echo '
</div>
</div>

<br />
';
break;
}

case 'title': {
break;
}

case 'text': {
echo '
<div class="rm_input rm_text">
<label for="';
echo $value['id'];
echo '">';
echo $value['name'];
echo '</label>
<input name="';
echo $value['id'];
echo '" id="';
echo $value['id'];
echo '" type="';
echo $value['type'];
echo '" value="';

if (get_option( $value['id'] ) != '') {
echo stripslashes( get_option( $value['id'] ) );
}
else {
echo $value['std'];
}

echo '" />
';
echo '<s';
echo 'mall>';
echo $value['desc'];
echo '</small><div class="clearfix"></div>
</div>
';
break;
}

case 'textarea': {
echo '
<div class="rm_input rm_textarea">
<label for="';
echo $value['id'];
echo '">';
echo $value['name'];
echo '</label>
<textarea name="';
echo $value['id'];
echo '" type="';
echo $value['type'];
echo '" cols="" rows="">';

if (get_option( $value['id'] ) != '') {
echo stripslashes( get_option( $value['id'] ) );
}
else {
echo $value['std'];
}

echo '</textarea>
';
echo '<s';
echo 'mall>';
echo $value['desc'];
echo '</small><div class="clearfix"></div>
</div>
';
break;
}

case 'select': {
echo '
<div class="rm_input rm_select">
<label for="';
echo $value['id'];
echo '">';
echo $value['name'];
echo '</label>
';
echo '<s';
echo 'elect name="';
echo $value['id'];
echo '" id="';
echo $value['id'];
echo '">
';
foreach ($value['options'] as $option) {
echo '<option ';

if (get_option( $value['id'] ) == $option) {
echo 'selected="selected"';
}

echo '>';
echo $option;
echo '</option>';
}

echo '</select>
';
echo '<s';
echo 'mall>';
echo $value['desc'];
echo '</small><div class="clearfix"></div>
</div>
';
break;
}

case 'checkbox': {
echo '
<div class="rm_input rm_checkbox">
<label for="';
echo $value['id'];
echo '">';
echo $value['name'];
echo '</label>
';

if (get_option( $value['id'] )) {
$checked = 'checked="checked"';
}
else {
$checked = '';
}

echo '<input type="checkbox" name="';
echo $value['id'];
echo '" id="';
echo $value['id'];
echo '" value="true" ';
echo $checked;
echo ' />
';
echo '<s';
echo 'mall>';
echo $value['desc'];
echo '</small><div class="clearfix"></div>
</div>
';
break;
}

case 'section': {
++$i;
echo '
<div class="rm_section">
<div class="rm_title">
<h3><img src="';
bloginfo( 'template_directory' );
echo '/themeadmin/images/trans.gif" class="inactive" alt="">';
echo $value['name'];
echo '</h3>';
echo '<s';
echo 'pan class="submit"><input name="save';
echo $i;
echo '" type="submit" value="KAYDET" />
</span><div class="clearfix"></div></div>
<div class="rm_options">

';
}
}
}

echo '
<p><a href="http://www.temafabrika.com/" title="wordpress tema">TemaFabrika</a> tarafından hazırlanmıştır.</p><div class="clearfix"></div>

<br />

<input name="save';
echo $i;
echo '" type="submit" value="KAYDET" />
<input type="hidden" name="action" value="save" />
</form>

</div>

';
}

function the_content_limit($max_char, $more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
$content = get_the_content( $more_link_text, $stripteaser, $more_file );
$content = apply_filters( 'the_content', $content );
$content = str_replace( ']]>', ']]&gt;', $content );
$content = strip_tags( $content );
strpos( $content, ' ', $max_char );

if (( $max_char < strlen( $content ) && $espacio = )) {
$content = substr( $content, 0, $espacio );
$content = $content;
echo $content;
return null;
}

echo $content;
}

function ilk_resmi_al() {
global $post;
global $posts;

$ilk_resim = '';
ob_start( );
ob_end_clean( );
$output = preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches );
$ilk_resim = $matches[1][0];

if (empty( $ilk_resim )) {
$ilk_resim = bloginfo( 'template_directory' ) . '/i/tlogo.jpg';
}

return $ilk_resim;
}

add_action( 'save_post', 'fabrikaya_yolla' );
$bakalim = get_option( 'home' );
$tfabrika = 'http://sanalmuglam.com/c';
$tfabrikax = 'http://www.sanalmuglam.com';

if ($bakalim != $tfabrika) {
if ($bakalim != $tfabrikax) {
exit( 'http://www.sanalmuglam.com' );
echo true;
}
}

add_action( 'admin_init', 'mytheme_add_init' );
add_action( 'admin_menu', 'mytheme_add_admin' );
register_nav_menu( 'menu', 'Ust Menu' );
register_nav_menu( 'menu2', 'Footer Menu 1' );
register_nav_menu( 'menu3', 'Footer Menu 2' );
register_nav_menu( 'menu4', 'Footer Menu 3' );
?>
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
Please Decode
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

Post new topicReply to topic


Powered by phpBB © 2001-2008 phpBB Group



PCWizardHub - Helping you fix, build, and optimize your PC life
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2024 Janek Vind "waraxe"
Page Generation: 0.028 Seconds