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: 181
Members: 0
Total: 181
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 -> Decoding Ioncube pls?
Post new topicReply to topic View previous topic :: View next topic
Decoding Ioncube pls?
PostPosted: Wed Nov 14, 2012 9:09 pm Reply with quote
toolss
Beginner
Beginner
Joined: Nov 14, 2012
Posts: 2




Can you decode this file? It is ioncube thanks Smile

http://dl.dropbox.com/u/105882470/functions.zip
View user's profile Send private message
PostPosted: Wed Nov 14, 2012 10:14 pm Reply with quote
demon
Moderator
Moderator
Joined: Sep 22, 2010
Posts: 485




Code:
<?php

function ogpanel_ayarlar()
{
global $ayarlar;
if ("ayar_kayit" == $_REQUEST['action']) {
foreach ($ayarlar as $ayar) {
if (!isset($_REQUEST[$ayar['id']])) {
} else {
update_option($ayar['id'], stripslashes($_REQUEST[$ayar['id']]));
}
}
if (stristr($_SERVER['REQUEST_URI'], "&kayit=tamam")) {
$lokasyon = $_SERVER['REQUEST_URI'];
} else {
$lokasyon = $_SERVER['REQUEST_URI'] . "&kayit=tamam";
}
header("Location: {$lokasyon}");
exit();
} else {
if ("ayar_reset" == $_REQUEST['action']) {
foreach ($ayarlar as $ayar) {
delete_option($ayar['id']);
$lokasyon = $_SERVER['REQUEST_URI'] . "&reset=tamam";
}
header("Location: {$lokasyon}");
exit();
}
}
add_theme_page("OGPanel", "OGPanel", 10, "ogpanel", "ogpanel_admin");
}

function ogpanel_admin()
{
global $ayarlar;
echo "<div class=\"wrap\">\r\n <h2 class=\"alignleft\">Tema Ayarları</h2>\r\n <br clear=\"all\" />\r\n ";
if ($_REQUEST['kayit']) {
echo " \t\t<div class=\"updated fade\"><p>";
echo "<s";
echo "trong>Ayarlarınız Kaydedildi !</strong></p></div>\r\n ";
}
echo "<form method=\"post\" id=\"myForm\">\r\n<div id=\"poststuff\" class=\"metabox-holder\">\r\n ";
foreach ($ayarlar as $ayar) {
switch ($ayar['tip']) {
case "input":
echo " <div class=\"ogpanel-bolum og-input\">\r\n <div class=\"ogpanel-baslik\">\r\n \t";
echo $ayar['baslik'];
echo " </div>\r\n <div class=\"ogpanel-ic\">\r\n <input name=\"";
echo $ayar['id'];
echo "\" id=\"";
echo $ayar['id'];
echo "\" type=\"text\" \r\n\t\t\t\tvalue=\"";
get_option($ayar['id']) ? printf(get_option($ayar['id'])) : printf($ayar['varsayilan']);
echo "\" />\r\n </div>\r\n <div class=\"ogpanel-aciklama\">";
echo $ayar['aciklama'];
echo "</div>\r\n </div>";
echo "<s";
echo "pan class=\"ogpanel-t\"></span>\r\n ";
break;
case "textarea":
echo " <div class=\"ogpanel-bolum og-textarea\">\r\n <div class=\"ogpanel-baslik\">\r\n \t";
echo $ayar['baslik'];
echo " </div>\r\n <div class=\"ogpanel-ic\">\r\n \t<textarea class=\"code\" rows=\"4\" cols=\"60\" name=\"";
echo $ayar['id'];
echo "\" \r\n\t\t\tid=\"";
echo $ayar['id'];
echo "\">";
get_option($ayar['id']) ? printf(get_option($ayar['id'])) : printf($ayar['varsayilan']);
echo "</textarea>\r\n </div>\r\n <div class=\"ogpanel-aciklama\">";
echo $ayar['aciklama'];
echo "</div>\r\n </div>";
echo "<s";
echo "pan class=\"ogpanel-t\"></span>\r\n ";
break;
case "acilir":
echo " <div class=\"ogpanel-bolum og-select\">\r\n <div class=\"ogpanel-baslik\">\r\n \t";
echo $ayar['baslik'];
echo " </div>\r\n <div class=\"ogpanel-ic\">\r\n\t\t\t";
echo "<s";
echo "elect name=\"";
echo $ayar['id'];
echo "\" id=\"";
echo $ayar['id'];
echo "\">\r\n\t\t\t\t";
foreach ($ayar['liste'] as $esas) {
echo "\t\t\t\t<option ";
if (get_settings($ayar['id']) == $esas) {
echo "selected=\"selected\"";
}
echo ">";
echo $esas;
echo "</option>";
}
echo "\t\t\t</select>\r\n </div>\r\n <div class=\"ogpanel-aciklama\">";
echo $ayar['aciklama'];
echo "</div>\r\n </div>";
echo "<s";
echo "pan class=\"ogpanel-t\"></span>\r\n ";
break;
case "tik":
do {
echo " <div class=\"ogpanel-bolum og-radio\">\r\n <div class=\"ogpanel-baslik\">\r\n \t";
echo $ayar['baslik'];
echo " </div>\r\n <div class=\"ogpanel-ic\">\r\n\t\t\t";
if (!get_option($ayar['id'])) {
break;
} else {
$tik = "checked=\"checked\"";
}
} while (0);
$tik = "";
echo "\t\t\t<input type=\"checkbox\" name=\"";
echo $ayar['id'];
echo "\" id=\"";
echo $ayar['id'];
echo "\" value=\"true\" ";
echo $tik;
echo " />\r\n </div>\r\n <div class=\"ogpanel-aciklama\">";
echo $ayar['aciklama'];
echo "</div>\r\n </div>";
echo "<s";
echo "pan class=\"ogpanel-t\"></span>\t\r\n ";
break;
case "aciklama":
echo " <div class=\"ogpanel-bolum og-radio\">\r\n <div class=\"ogpanel-baslik\">\r\n \t";
echo $ayar['baslik'];
echo " </div>\r\n <div class=\"ogpanel-ic og-aciklama\">\r\n\t\t\t";
echo $ayar['aciklama'];
echo " </div>\r\n </div>";
echo "<s";
echo "pan class=\"ogpanel-t\"></span>\t\r\n ";
break;
case "bolumac":
echo "\t\t\t<div class=\"stuffbox og-bolumac\">\r\n\t\t\t<h3>";
echo $ayar['baslik'];
echo "</h3>\r\n\t\t\t<div class=\"inside\">\r\n\t\t\t<div class=\"ogpanel\" style=\"width: auto\">\t\r\n ";
break;
case "bolumkapa":
echo "\t\t\t</div ></div></div>\r\n\t\t";
}
}
echo "</div>\r\n<input name=\"ayar_kayit\" type=\"submit\" style=\"float:left\" class=\"button-primary\" value=\"Kaydet\" />\r\n<input type=\"hidden\" name=\"action\" value=\"ayar_kayit\" />\r\n</form>\r\n\r\n<form method=\"post\" style=\"float:right\">\r\n<input name=\"ayar_reset\" type=\"submit\" class=\"button-secondary\" value=\"Reset\" />\r\n<input type=\"hidden\" name=\"action\" value=\"ayar_reset\" />\r\n</form>\r\n</div>\r\n";
}

function ogpanel_adminhead()
{
echo "\t";
echo "<s";
echo "tyle type=\"text/css\">\r\n\t.ogpanel {}\r\n\t.ogpanel .ogpanel-t {celar:both;display:block;}\r\n\t.ogpanel .ogpanel-bolum {clear:both;width:100%;display:block;overflow:hidden;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #EFEFEF;}\r\n\t.ogpanel .ogpanel-baslik {float:left;width:200px;}\r\n\t.ogpanel .ogpanel-ic {float:left;width:410px;}\r\n\t.ogpanel .ogpanel-aciklama {float:left;width:500px;font-si";
echo "ze:11px;color:#878787;}\r\n\t.ogpanel .ogpanel-ic input,.ogpanel .ogpanel-ic textarea {width:400px;font-family:arial;}\r\n\t\t.ogpanel .ogpanel-ic input[type=checkbox] {float:left;width:20px;}\r\n\t.ogpanel .og-aciklama {width:600px;color:#777;}\r\n\t</style>\r\n";
}

function _resim($w, $h, $ozelalan)
{
global $post;
$boyut = "boyut" . $w . "x" . $h;
if (get_post_meta($post->ID, $ozelalan, true) != "") {
$resim = get_post_meta($post->ID, $ozelalan, true);
echo "\t\t\t<img src=\"";
bloginfo(template_url);
echo "/cache/timthumb.php?src=";
echo $resim;
echo "&amp;w=";
echo $w;
echo "&amp;h=";
echo $h;
echo "&amp;a=t\" class=\"";
echo $boyut;
echo "\" title=\"";
the_title();
echo "\" alt=\"";
the_title();
echo "\" />\r\n\t";
} else if (has_post_thumbnail()) {
echo "\t\t\t<img src=\"";
bloginfo(template_url);
echo "/cache/timthumb.php?src=";
echo wp_get_attachment_url(get_post_thumbnail_id($post->ID, "thumbnail"));
echo "&amp;w=";
echo $w;
echo "&amp;h=";
echo $h;
echo "&amp;zc=1\" class=\"";
echo $boyut;
echo "\" title=\"";
the_title();
echo "\" alt=\"";
the_title();
echo "\" />\r\n\t";
} else {
echo "\t\t\t<img src=\"";
bloginfo(template_url);
echo "/cache/timthumb.php?src=";
echo bloginfo("template_url");
echo "/resim/resimyok.png&amp;w=";
echo $w;
echo "&amp;h=";
echo $h;
echo "&amp;zc=1\" class=\"";
echo $boyut;
echo "\" title=\"";
the_title();
echo "\" alt=\"";
the_title();
echo "\" />\r\n\t";
}
}

function _kisalt($t, $l, $x)
{
if (strlen($t) <= $l) {
echo $t;
} else {
$t = mb_substr($t, 0, $l) . $x;
echo $t;
}
}

function cd_add_quote_meta()
{
add_meta_box("quote-meta", "Yazı bilgileri", "cd_quote_meta_cb", "post", "normal", "high");
}

function cd_quote_meta_cb($post)
{
$resim = get_post_meta($post->ID, "resim", true);
wp_nonce_field("save_quote_meta", "kutucuk");
echo " \r\n <p> \r\n <label for=\"resim\">Küçük Resim</label> \r\n <input type=\"text\"name=\"resim\" value=\"";
echo $resim;
echo "\" /> \r\n </p> \r\n ";
}

function cd_quote_meta_save($id)
{
if (defined("DOING_AUTOSAVE") && DOING_AUTOSAVE) {
return;
}
if (!isset($_POST['kutucuk']) || !wp_verify_nonce($_POST['kutucuk'], "save_quote_meta")) {
return;
}
if (!current_user_can("edit_post")) {
return;
}
$allowed = array(
"p" => array()
);
if (isset($_POST['resim'])) {
update_post_meta($id, "resim", esc_attr(strip_tags($_POST['resim'])));
}
}

function _turkce_tarih($tarih = "")
{
if ($tarih == "") {
$tarih = date("Y-m-d H:i:s");
}
$tarihDizi['gunler'] = array(
"Pazar",
"Pazartesi",
"Salı",
"Çarşamba",
"Perşembe",
"Cuma",
"Cumartesi"
);
$tarihDizi['aylar'] = array(
"01" => "Ocak",
"02" => "Şubat",
"03" => "Mart",
"04" => "Nisan",
"05" => "Mayıs",
"06" => "Haziran",
"07" => "Temmuz",
"08" => "Ağustos",
"09" => "Eylül",
"10" => "Ekim",
"11" => "Kasım",
"12" => "Aralık"
);
$zamanExp = explode(" ", $tarih);
$tarihExp = explode("-", $zamanExp[0]);
$haftaninGunu = strftime("%w", strtotime($tarih));
$tarihFormat['ay'] = $tarihDizi['aylar'][$tarihExp[1]];
$tarihFormat['haftanin_gunu'] = $tarihDizi['gunler'][$haftaninGunu];
$tarihFormat['saat'] = $zamanExp[1];
$tarihFormat['format1'] = $tarihExp[2] . " " . $tarihFormat['ay'] . " " . $tarihExp[0];
$tarihFormat['format2'] = $tarihFormat['format1'] . " " . $tarihFormat['saat'];
$tarihFormat['format3'] = $tarihExp[2] . " " . $tarihFormat['ay'] . " " . $tarihExp[0];
$tarihFormat['format4'] = $tarihFormat['format3'] . " " . $tarihFormat['haftanin_gunu'];
return $tarihFormat;
}

function _sayfala($pages = "", $range = 2)
{
$showitems = $range * 2 + 1;
global $paged;
if (empty($paged)) {
$paged = 1;
}
if ($pages == "") {
global $wp_query;
$pages = $wp_query->max_num_pages;
if (!$pages) {
$pages = 1;
}
}
if (1 != $pages) {
echo "<div class='sayfalama'>";
if (2 < $paged && $range + 1 < $paged && $showitems < $pages) {
echo "<a href='" . get_pagenum_link(1) . "'>&laquo;</a>";
}
if (1 < $paged && $showitems < $pages) {
echo "<a href='" . get_pagenum_link($paged - 1) . "'>&lsaquo;</a>";
}
$i = 1;
while ($i <= $pages) {
if (1 != $pages && (!($paged + $range + 1 <= $i || $i <= $paged - $range - 1) || $pages <= $showitems)) {
echo $paged == $i ? "<span class='aktif'>" . $i . "</span>" : "<a href='" . get_pagenum_link($i) . "' class='inaktif' >" . $i . "</a>";
}
++$i;
}
if ($paged < $pages && $showitems < $pages) {
echo "<a href='" . get_pagenum_link($paged + 1) . "'>&rsaquo;</a>";
}
if ($paged < $pages - 1 && $paged + $range - 1 < $pages && $showitems < $pages) {
echo "<a href='" . get_pagenum_link($pages) . "'>&raquo;</a>";
}
echo "</div>\n";
}
}

function f()
{
echo "</div><!--/kapsa-->\r\n<div id=\"footer\">\r\n\t<p>";
echo og_ayar("alt");
echo "</p>\r\n\t<p><a href=\"http://haberlerimiz.org/\" target=\"_blank\" title=\"ygs,lys,ösym haberleri\">ygs,lys,ösym haberleri</a></p>\r\n</div>\r\n";
}

$kategoriler = array();
$options_categories_obj = get_categories();
$kategoriler[''] = "Kategori seçiniz:";
foreach ($options_categories_obj as $category) {
$kategoriler[$category->cat_ID] = $category->cat_name;
}
$ayarlar = array(
array(
"baslik" => "Genel Ayarlar",
"tip" => "bolumac"
),
array(
"baslik" => "Logo",
"aciklama" => "Lütfen logo adresinizi giriniz.Logo yoksa site başlığı görünecektir.",
"id" => "logo",
"varsayilan" => "",
"tip" => "input"
),
array(
"baslik" => "Anasayfa slider kategorisini seçiniz",
"aciklama" => "Seçmezseniz son yazılar görüncektir",
"id" => "manset",
"liste" => $kategoriler,
"tip" => "acilir"
),
array(
"baslik" => "Anasayfada bölüm 1 kategorisini seçiniz",
"aciklama" => "Seçmezseniz son yazılar görüncektir",
"id" => "bolumbir",
"liste" => $kategoriler,
"tip" => "acilir"
),
array(
"baslik" => "Anasayfada bölüm 2 kategorisini seçiniz",
"aciklama" => "Seçmezseniz son yazılar görüncektir",
"id" => "bolumiki",
"liste" => $kategoriler,
"tip" => "acilir"
),
array(
"baslik" => "Anasayfada bölüm 3 kategorisini seçiniz",
"aciklama" => "Seçmezseniz son yazılar görüncektir",
"id" => "bolumuc",
"liste" => $kategoriler,
"tip" => "acilir"
),
array(
"baslik" => "Sağ kısımda 1.resimli liste kategori idsi",
"aciklama" => "Bu yazılar anasayfa hariç heryerde görünür.",
"id" => "sagkatbir",
"liste" => $kategoriler,
"tip" => "acilir"
),
array(
"baslik" => "Sağ kısımda 3.resimli liste kategori idsi",
"aciklama" => "Bu yazılar anasayfa hariç heryerde görünür.",
"id" => "sagkatiki",
"liste" => $kategoriler,
"tip" => "acilir"
),
array(
"baslik" => "Alt solda ne yazsın?",
"aciklama" => "",
"id" => "alt",
"tip" => "textarea"
),
array(
"tip" => "bolumkapa"
),
array(
"baslik" => "Diğer Ayarlar",
"tip" => "bolumac"
),
array(
"baslik" => "Ãœst reklam kodunuz.",
"aciklama" => "HTML,adsense kodları vs olabilir",
"id" => "ur",
"tip" => "textarea"
),
array(
"baslik" => "Sağ blok reklam kodunuz.(300px genişliğinde)",
"aciklama" => "HTML,adsense kodları vs olabilir",
"id" => "sr",
"tip" => "textarea"
),
array(
"baslik" => "Yazı içi reklam kodunuz - Sola yaslanır",
"aciklama" => "HTML,adsense kodları vs olabilir",
"id" => "yr",
"tip" => "textarea"
),
array(
"baslik" => "Yazı içi reklam kodunuz - Yazının altında görünür",
"aciklama" => "HTML,adsense kodları vs olabilir",
"id" => "y2r",
"tip" => "textarea"
),
array(
"baslik" => "Açıklama ",
"aciklama" => "Bu tema <a href='http://ozergul.net' target='_blank'>Özer Gül</a> tarafından yapılmıştır.Ãœcretsiz dağıtılmaktadır,satılamaz.",
"tip" => "aciklama"
),
array(
"tip" => "bolumkapa"
)
);
if (!function_exists("og_ayar")) {
}
add_action("admin_menu", "ogpanel_ayarlar");
add_action("admin_head", "ogpanel_adminhead");
add_theme_support("post-thumbnails");
add_action("add_meta_boxes", "cd_add_quote_meta");
add_action("save_post", "cd_quote_meta_save");
add_action("wp_footer", "f");
?>

_________________
Go BIG or go HOME !
View user's profile Send private message
PostPosted: Thu Nov 15, 2012 1:22 pm Reply with quote
toolss
Beginner
Beginner
Joined: Nov 14, 2012
Posts: 2




thank you so much. Smile
View user's profile Send private message
Decoding Ioncube pls?
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.302 Seconds