Waraxe IT Security Portal
Login or Register
July 27, 2024
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: 231
Members: 0
Total: 231
Full disclosure
CyberDanube Security Research 20240722-0 | Multiple Vulnerabilities in Perten/PerkinElmer ProcessPlus
[KIS-2024-06] XenForo <= 2.2.15 (Template System) Remote Code Execution Vulnerability
[KIS-2024-05] XenForo <= 2.2.15 (Widget::actionSave) Cross-Site Request Forgery Vulnerability
CVE-2024-33326
CVE-2024-33327
CVE-2024-33328
CVE-2024-33329
CyberDanube Security Research 20240703-0 | Authenticated Command Injection in Helmholz Industrial Router REX100
SEC Consult SA-20240627-0 :: Local Privilege Escalation via MSI installer in SoftMaker Office / FreeOffice
SEC Consult SA-20240626-0 :: Multiple Vulnerabilities in Siemens Power Automation Products
Novel DoS Vulnerability Affecting WebRTC Media Servers
APPLE-SA-06-25-2024-1 AirPods Firmware Update 6A326, AirPods Firmware Update 6F8, and Beats Firmware Update 6F8
40 vulnerabilities in Toshiba Multi-Function Printers
17 vulnerabilities in Sharp Multi-Function Printers
SEC Consult SA-20240624-0 :: Multiple Vulnerabilities allowing complete bypass in Faronics WINSelect (Standard + Enterprise)
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



Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
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.501 Seconds