Waraxe IT Security Portal
Login or Register
November 16, 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: 81
Members: 0
Total: 81
Full disclosure
SEC Consult SA-20241112-0 :: Multiple vulnerabilities in Siemens Energy Omnivise T3000 (CVE-2024-38876, CVE-2024-38877, CVE-2024-38878, CVE-2024-38879)
Security issue in the TX Text Control .NET Server for ASP.NET.
SEC Consult SA-20241107-0 :: Multiple Vulnerabilities in HASOMED Elefant and Elefant Software Updater
Unsafe eval() in TestRail CLI
4 vulnerabilities in ibmsecurity
32 vulnerabilities in IBM Security Verify Access
xlibre Xnest security advisory & bugfix releases
APPLE-SA-10-29-2024-1 Safari 18.1
SEC Consult SA-20241030-0 :: Query Filter Injection in Ping Identity PingIDM (formerly known as ForgeRock Identity Management) (CVE-2024-23600)
SEC Consult SA-20241023-0 :: Authenticated Remote Code Execution in Multiple Xerox printers (CVE-2024-6333)
APPLE-SA-10-28-2024-8 visionOS 2.1
APPLE-SA-10-28-2024-7 tvOS 18.1
APPLE-SA-10-28-2024-6 watchOS 11.1
APPLE-SA-10-28-2024-5 macOS Ventura 13.7.1
APPLE-SA-10-28-2024-4 macOS Sonoma 14.7.1
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.038 Seconds