Waraxe IT Security Portal
Login or Register
August 19, 2026
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: 389
Members: 0
Total: 389
Full disclosure
Security advisory: Pre-authentication RCE (SQL injection) in XPressEntry 3.7.7454 (Telaeris Inc)
Security advisory: Authenticated RCE (SQL injection) in Scrutinizer 19.7.0 (Plixer)
Security advisory: Pre-authentication SYSTEM RCE (Zip-Slip plugin planting) in Output Messenger Server 2.0.x (>= 2.0.63) (Srimax Software (Output Technology))
Security advisory: Pre-authentication RCE (arbitrary file write) in RapidDeploy 5.2.2 (MidVision)
Security advisory: Authenticated RCE (second-order SQL injection) in Lansweeper 12.2.1.0 (web reports 12.2.1.6) (Lansweeper)
Security advisory: Authenticated RCE (command injection) in Kerio Connect 10.0.9 Patch 2 (build 10320) (GFI Software)
Security advisory: Pre-authentication RCE (default credentials + path traversal) in PulseNET Enterprise 6.0.3 (build 6975) (GE Vernova)
Security advisory: Pre-authentication RCE (BinaryFormatter deserialization) in Cinegy Cinegize 2026-02-05 installer (Cinegy GmbH)
Security advisory: Pre-authentication RCE in Wyn Enterprise 9.1.00145.0 (Mescius (GrapeCity))
Security advisory: Pre-authentication RCE (default credentials) in ObjectDB 2.9.5 server mode (ObjectDB Software)
Security advisory: Pre-authentication RCE in nanoDLP stable build #10729 (Nano3Dtech)
Security advisory: Pre-authentication SYSTEM RCE in MAPS SCADA 4.0.5.5 (Adroit Technologies)
Security advisory: Pre-authentication RCE in Confluent Platform (ksqlDB) 7.9.1-ce (Confluent, Inc.)
Security advisory: Pre-authentication SYSTEM RCE in iMonnit Express 4.0.5.5 (Monnit / iMonnit)
Security advisory: Pre-authentication RCE in Ontotext GraphDB 11.4.3 Free edition (Ontotext / Graphwise)
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> i need to decode 2 files please
Post new topicReply to topic View previous topic :: View next topic
i need to decode 2 files please
PostPosted: Sun May 30, 2010 10:28 pm Reply with quote
matrixcoon
Regular user
Regular user
Joined: May 31, 2010
Posts: 5




hello guys
please help me
i have 2 files and i want to decode it
i couldn't know the decoded type

you can download the 2 files here
Rapidshare
http://rapidshare.com/files/393431211/2files.zip
Or Mediafire
http://www.mediafire.com/?dtiqytwljby

i hope somebody can help me
thank you very much
View user's profile Send private message
PostPosted: Mon May 31, 2010 12:05 am Reply with quote
suparman
Active user
Active user
Joined: Apr 18, 2010
Posts: 29




add.inc.php


<?php
if (md5(md5(sha1(ereg_replace('www.', '', $_SERVER['HTTP_HOST']))) ^ md5(('hyipguyzpayfeefirstsallyntwang'))) == $settings['pfftalcode']) {
session_start();
function notify_about_addition($row)
{
global $settings;
$row['withdrawal_type'] = ($row['withdrawal_type'] == 1 ? 'Manual' : ($row['withdrawal_type'] == 2 ? 'Instant' : 'Automatic'));
send_mail('listing_added', $settings['admin_email'], $settings['system_email'], $row);
}
if ($frm['display'] == 'added') {
$smarty->assign('lid', $frm['lid']);
$smarty->assign('name', $frm['name']);
$smarty->assign('fee', $frm['fee']);
$smarty->assign('ip', $_SERVER['REMOTE_ADDR']);
$smarty->assign('email', $frm['email']);
$smarty->display('listing_added.tpl');
exit();
}
if ($frm['display'] == 'confirm') {
$smarty->display('listing_confirm.tpl');
exit();
}
if ($frm['action'] == 'confirm') {
$success = 0;
if ($frm['code']) {
$q = 'select * from hl_listings where confirm = \'' . quote($frm['code']) . '\' limit 0, 1';
$sth = mysql_query($q);
$row = mysql_fetch_array($sth);
if ($row['id']) {
$q = 'update hl_listings set confirm = \'0\' where confirm = \'' . quote($frm['code']) . '\'';
$sth = mysql_query($q);
$success = 1;
if ($settings['notify_about_addition']) {
$q = 'select * from hl_groups where id = ' . $row['group_id'];
($sth = mysql_query($q) or print mysql_error());
$group = mysql_fetch_array($sth);
$row['group'] = $group['name'];
notify_about_addition($row);
}
}
}
$smarty->assign('success', $success);
$smarty->display('listing_confirmed.tpl');
exit();
}
$batch_no = intval($frm['batch_no']);
$groups = array();
$frm['type'] = intval($frm['type']);
$q = 'select * from hl_groups where status = 1 and reg_enabled = 1 and id = ' . $frm['type'];
($sth = mysql_query($q) or print mysql_error());
$group = mysql_fetch_array($sth);
if (!$group) {
header('Location: ?a=advertise');
exit();
}
$smarty->assign('group', $group);
$payments = preg_split('/\\s*,\\s*/', $settings['payments']);
$errors = array();
if ($frm['action'] == 'save') {
if (1 == 1) {
$batch = quote(intval($frm['batch']));
$q = 'select * from hl_batch where batchid="' . $batch . '"';
$sth = mysql_query($q);
$row = mysql_fetch_array($sth);
if (mysql_num_rows($sth) == 0) {
array_push($errors, array('name' => 'wrong_type_batchno'));
} else {
$batchid = $row['batchid'];
$typeid = $row['type'];
$amountid = $row['amount'];
$usedid = $row['used'];
$fee2 = $settings[strtolower($group['type']) . 'monitorfees'] + $settings[strtolower($group['type']) . 'listingfees'];
$fee3 = $fee2 + $settings['paidsticky'];
if ($amountid == $fee3) {
$psy = 1;
}
if (intval($frm['type']) != $typeid) {
if ($typeid == 1) {
array_push($errors, array('name' => 'wrong_type_exclusive'));
}
if ($typeid == 2) {
array_push($errors, array('name' => 'wrong_type_premium'));
}
if ($typeid == 3) {
array_push($errors, array('name' => 'wrong_type_normal'));
}
if ($typeid == 4) {
array_push($errors, array('name' => 'wrong_type_trial'));
}
}
if ($usedid == 1) {
array_push($errors, array('name' => 'wrong_type_used'));
}
if (!(($fee2 == $amountid) || ($fee3 == $amountid))) {
array_push($errors, array('name' => 'wrong_type_amount'));
}
}
}
if (!$frm['name']) {
array_push($errors, array('name' => 'name'));
}
if (!$frm['url']) {
array_push($errors, array('name' => 'url'));
}
if (!$frm['email']) {
array_push($errors, array('name' => 'email'));
} else {
if (!preg_match('/^[^\\@]+\\@[^\\@]+\\.\\w{2,4}$/', $frm['email'])) {
array_push($errors, array('name' => 'invalid_email'));
}
}
if (!$errors) {
$inserts = array();
array_push($inserts, 'name = \'' . quote($frm['name']) . '\'');
array_push($inserts, 'group_id = \'' . intval($frm['type']) . '\'');
array_push($inserts, 'status = \'1\'');
array_push($inserts, 'hyip_status = \'2\'');
if ($psy) {
array_push($inserts, 'paidsticky = \'1\'');
array_push($inserts, 'paidsticky_date = \'' . date("Y-m-d", strtotime('31 days')) . '\'');
}
array_push($inserts, 'url = \'' . quote($frm['url']) . '\'');
array_push($inserts, 'percents = \'' . quote($frm['percents']) . '\'');
array_push($inserts, 'min_spend = \'' . quote($frm['min_spend']) . '\'');
array_push($inserts, 'max_spend = \'' . quote($frm['max_spend']) . '\'');
array_push($inserts, 'referral = \'' . quote($frm['referral']) . '\'');
array_push($inserts, 'withdrawal_type = \'' . intval($frm['withdrawal_type']) . '\'');
array_push($inserts, 'email = \'' . quote($frm['email']) . '\'');
array_push($inserts, 'support_email = \'' . quote($frm['support_email']) . '\'');
array_push($inserts, 'support_form = \'' . quote($frm['support_form']) . '\'');
array_push($inserts, 'support_forum = \'' . quote($frm['support_forum']) . '\'');
array_push($inserts, 'support_phone = \'' . quote($frm['support_phone']) . '\'');
array_push($inserts, 'support_aim = \'' . quote($frm['support_aim']) . '\'');
array_push($inserts, 'date_added = now()');
array_push($inserts, 'date_closed = \'0000-00-00\'');
array_push($inserts, 'expiration = \'' . abs(intval($group['expiration'])) . '\'');
$add_payments = array();
if ($frm['payments']) {
foreach (array_keys($frm['payments']) as $paysystem) {
if (in_array($paysystem, $payments)) {
array_push($add_payments, $paysystem);
continue;
}
}
}
$frm['pay_systems'] = join(',', $add_payments);
array_push($inserts, 'pay_systems = \'' . quote($frm['pay_systems']) . '\'');
array_push($inserts, 'description = \'' . quote($frm['description']) . '\'');
array_push($inserts, 'date_updated = now()');
$confirm_code = gen_confirm_code(10);
if ($settings['listing_confirmation_require']) {
array_push($inserts, 'confirm = \'' . $confirm_code . '\'');
}
$q = 'insert into hl_listings set ' . join(',', $inserts);
if (!($sth = mysql_query($q))) {
exit(mysql_error());
}
$q = 'update hl_batch set used=1 where batchid=' . $batch;
mysql_query($q);
if ($settings['listing_confirmation_require']) {
$info = array();
$info['confirm_code'] = $confirm_code;
$info['listing_name'] = $frm['name'];
send_mail('listing_confirm', $frm['email'], $settings['system_email'], $info);
header('Location: ?a=add&display=confirm');
} else {
if ($settings['notify_about_addition']) {
$frm['date_added'] = date('Y-m-d h:i:s');
$frm['group'] = $group['name'] . '\r\nIP:' . $_SERVER['REMOTE_ADDR'];
notify_about_addition($frm);
}
$q = 'SELECT max(`id`) as id FROM `hl_listings`';
if (!($sth = mysql_query($q))) {
exit(mysql_error());
}
$listing = mysql_fetch_array($sth);
$fee = $settings[strtolower($group['type']) . 'monitorfees'] + $settings[strtolower($group['type']) . 'listingfees'];
if ($fee < 1) {
$fee = 0.1;
}
header('Location: ?a=add&display=added&lid=' . $listing['id']);
}
exit();
}
}
$paysystems = array();
$selected = $frm['payments'];
if (!$selected) {
$selected = array();
}
foreach ($payments as $payment) {
array_push($paysystems, array('name' => $payment, 'selected' => in_array($payment, array_keys($selected))));
}
$q = 'select count(*) as p_c from hl_listings where paidsticky = 1 and (paidsticky_date > current_date) and status=1 and group_id<7 and hyip_status in (1,2)';
$sth = mysql_query($q);
$row = mysql_fetch_array($sth);
$p_c = $row['p_c'];
if ($p_c < $settings['paidsticky_c'])
$pc = 1;
$smarty->assign('pc', $pc);
$smarty->assign('batch_no', $batch_no);
$smarty->assign('payments', $paysystems);
$smarty->assign('errors', $errors);
$smarty->display('add_' . strtolower($group['type']) . '.tpl');
} else {
echo 'Contact YM sallynt_wang if you want to actived this function';
}
?>



done.inc.php



<?php
if (md5(md5(sha1(ereg_replace('www.', '', $_SERVER['HTTP_HOST']))) ^ md5(('hyipguyzpayfeefirstsallyntwang'))) == $settings['pfftalcode']) {
if ($frm['action'] == 'checkpayment') {
$batch = quote(intval($frm['lr_transfer']));
$type = quote(intval($frm['type']));
$amount = quote(($frm['lr_amnt']));
$q = 'insert into hl_batch set used=0,batchid = ' . $batch . ',type=' . $type . ',amount=round(' . $amount . ',2)';
if (!($sth = mysql_query($q))) {
exit(mysql_error());
}
header('Location: /index.php?a=add&type=' . $type . '&batch_no=' . $batch);
}
if ($frm['say'] == 'pmok') {
$batch = quote(intval($frm['PAYMENT_BATCH_NUM']));
$type = quote(intval($frm['type']));
$amount = quote(($frm['PAYMENT_AMOUNT']));
$q = 'insert into hl_batch set used=0,batchid = ' . $batch . ',type=' . $type . ',amount=round(' . $amount . ',2)';
if (!($sth = mysql_query($q))) {
exit(mysql_error());
}
}
if ($frm['say'] == 'pmsuccess') {
$q = 'select * from hl_batch order by id desc limit 0,1';
($sth = mysql_query($q) or print mysql_error());
$row = mysql_fetch_array($sth);
$type = $row['type'];
$batch = $row['batchid'];
header('Location: /index.php?a=add&type=' . $type . '&batch_no=' . $batch);
}
} else {
echo 'Contact YM sallynt_wang if you want to actived this function';
}
?>
View user's profile Send private message Send e-mail
PostPosted: Mon May 31, 2010 10:50 am Reply with quote
matrixcoon
Regular user
Regular user
Joined: May 31, 2010
Posts: 5




thank you very very much suparman

can you tell me please , what is this type of encoded ?

thank you so much or your help

My Best Regards
View user's profile Send private message
i need to decode 2 files please
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.039 Seconds