Waraxe IT Security Portal
Login or Register
August 31, 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: 100
Members: 0
Total: 100
Full disclosure
Multi-Protocol Traceroute
SEC Consult SA-20250728-0 :: Stored Cross-Site-Scripting in Optimizely Episerver CMS
SEC Consult SA-20250807-0 :: Race Condition in Shopware Voucher Submission
Insufficient Resource Allocation Limits in nopCommerce v4.10 and v4.80.3 Excel Import Functionality
CSV Injection in nopcommerce v4.10 and 4.80.3
Insufficient Session Cookie Invalidation in nopCommerce v4.10and 4.80.3
Session Fixation Vulnerability in iDempiere WebUI v12.0.0.202508171158
CSV Injection in iDempiere WebUI 12.0.0.202508171158
liblcf v0.8.1 liblcf/lcf2xml: Untrusted LCF data triggers uncaught std::length_error via negative vector resize (DoS)
liblcf v0.8.1 Integer Overflow in liblcf `ReadInt()` Leads to Out-of-Bounds Reads and Denial of Service
Piciorgros TMO-100: Unauthorized configuration change via TFTP (CVE-2025-29617)
Piciorgros TMO-100: Unauthorized log data access
[tool] CRSprober
iOS 18.6 - Undocumented TCC Access to Multiple Privacy Domainsvia preflight=yes
Kigen eUICC issue (custom backdoor vs. FW update bug)
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> fopo.com CRYPTED
Post new topicReply to topic View previous topic :: View next topic
fopo.com CRYPTED
PostPosted: Sun Mar 29, 2015 7:19 am Reply with quote
xlamer
Beginner
Beginner
Joined: Mar 29, 2015
Posts: 1




Hi can u help me with decrypt this files .. i try but cant.. ;(

https://mega.co.nz/#!nAonVDAB!aErCcPPpOU5mZWe_kBJ3reCOylP0WfeQ0UkROsyVPuU
View user's profile Send private message
FOPO decoding (xlamer)
PostPosted: Wed May 06, 2015 6:00 am Reply with quote
kolaz
Advanced user
Advanced user
Joined: May 06, 2015
Posts: 53




add_client.php
=========

<?php include("db.php"); $_SESSION["main_menu"]=1; $_SESSION["sub_menu"]=0; include("header.php"); $grant=true; if ($_USER_ACCESS>1) { $grant=false; } $id=(int)$_POST['id']; $port=(int)$_POST['port']; $ip=pg_escape_string($_POST['iplist']); $name=pg_escape_string($_POST['name']); $address=pg_escape_string($_POST['address']); $street=(int)$_POST['street']; $phone=pg_escape_string($_POST['phone']); $mac=pg_escape_string($_POST['mac']); $note=pg_escape_string($_POST['note']); $paid=pg_escape_string($_POST['paid']); $delete=isset($_POST['delete']); $level=(int)$_POST['level']; $status=(int)$_POST['status']; $maccontrol=pg_escape_string($_POST['nomaccontrol']); $platil=pg_escape_string($_POST['platil']); $plant=pg_escape_string($_POST['plant']); $bulstat=pg_escape_string($_POST['bulstat']); $mol=pg_escape_string($_POST['mol']); $ddsid=pg_escape_string($_POST['ddsid']); $money=floatval($_POST['money']); $bank=pg_escape_string($_POST['bank']); $otkazal=pg_escape_string($_POST['otkazal']); $smokeping=pg_escape_string($_POST['smokeping']); if ($maccontrol != "TRUE") $maccontrol="FALSE"; if ($bank != "TRUE") $bank="FALSE"; if ($otkazal != "TRUE") $otkazal="FALSE"; if ($smokeping != "TRUE") $smokeping="FALSE"; $old_paid=$_SESSION["old_paid"]; $username=$_SERVER['PHP_AUTH_USER']; if (($_USER_ACCESS>0)&&($money==floatval("0"))&&($old_paid!=$paid)) { echo "<br><h3>За нулево плащане се обърнете към администратор!</h3>"; include("footer.php"); exit; } if (isset($_POST['searched'])) $redirectto="index.php"; else $redirectto="clients.php"; $invoice=true; $inv="T"; if ((strtotime($old_paid)==strtotime($paid)) || ($bank=="TRUE")) { $money=0; $invoice=false; $inv="F"; } if ($id!="") { if ($delete) { $sql="BEGIN;
UPDATE clients SET last_editor='$username' WHERE id='$id';
DELETE FROM clients WHERE id='$id';
COMMIT;"; if (!db_query($sql,"host=$dbhost dbname=$dbname user=$dbusername password=$dbpass", $db, $result)) return; db_free($db, $result); if (!$grant) { echo "<br>".$noacc_msg; include("footer.php"); exit; } echo "<br>".$delete_msg."<meta http-equiv='refresh' content='1; url=".$redirectto."?otkazali=".$_POST['otkazali']."&sort=".$_POST['sort']."&port_select=".$_POST['port_select']."&level_select=".$_POST['level_select']."&search_name=".$_POST['search_name']."&search_mac=".$_POST['search_mac']."'>"; } else { $sql="BEGIN;"; $sql.="INSERT INTO paid_log (client_id,old_paid,new_paid,invoice) VALUES('$id','$old_paid','$paid','$inv');"; if ($invoice) { $sql.="INSERT INTO invoices (name, address, phone, bulstat, paid, plan, money, username, ddsid, mol) VALUES('$name', '$address', '$phone', '$bulstat', '$paid', '$plant', '$money', '$username', '$ddsid', '$mol') RETURNING id;"; if ((!db_query($sql,"host=$dbhost dbname=$dbname user=$dbusername password=$dbpass", $db, $result)) || (!($iid=pg_fetch_result($result, 0, "id")))) return; $sql=""; } $sql.="UPDATE clients SET ip='$ip', name='$name', address='$address', phone='$phone', mac='$mac', note='$note', paid='$paid', level='$level', port='$port', status='$status', nomaccontrol='$maccontrol', bulstat='$bulstat', ddsid='$ddsid', mol='$mol', bank='$bank', otkazal='$otkazal', smokeping='$smokeping', street='$street', last_editor='$username', extended=false WHERE id='$id';
COMMIT;"; if (!db_query($sql,"host=$dbhost dbname=$dbname user=$dbusername password=$dbpass", $db, $result)) return; db_free($db, $result); if (!$grant) { echo "<br>".$noacc_msg; include("footer.php"); exit; } if (isset($_POST['B1'])) echo "<br>".$update_msg."<meta http-equiv='refresh' content='1; url=".$redirectto."?otkazali=".$_POST['otkazali']."&sort=".$_POST['sort']."&port_select=".$_POST['port_select']."&level_select=".$_POST['level_select']."&search_name=".$_POST['search_name']."&search_mac=".$_POST['search_mac']."'>"; else echo "<br>".$update_msg."<meta http-equiv='refresh' content='1; url=".$redirectto."?print=".$iid."&otkazali=".$_POST['otkazali']."&sort=".$_POST['sort']."&port_select=".$_POST['port_select']."&level_select=".$_POST['level_select']."&search_name=".$_POST['search_name']."&search_mac=".$_POST['search_mac']."'>"; } } else { $sql = "BEGIN;"; if ($invoice) { $sql.="INSERT INTO invoices (name, address, phone, bulstat, paid, plan, money, username, ddsid, mol) VALUES('$name', '$address', '$phone', '$bulstat', '$paid', '$plant', '$money', '$username', '$ddsid', '$mol') RETURNING id;"; if((!db_query($sql,"host=$dbhost dbname=$dbname user=$dbusername password=$dbpass", $db, $result)) || (!($iid=pg_fetch_result($result, 0, "id")))) return; $sql=""; } $sql .= "INSERT INTO clients (ip, name, address, phone, mac, note, paid, port, level, status, nomaccontrol, bulstat, ddsid, mol, bank, otkazal, smokeping, street, last_editor)
VALUES('$ip', '$name', '$address', '$phone', '$mac', '$note', '$paid', '$port', '$level', '$status', '$maccontrol', '$bulstat', '$ddsid', '$mol', '$bank', '$otkazal', '$smokeping', '$street', '$username');
COMMIT;"; if (!db_query($sql,"host=$dbhost dbname=$dbname user=$dbusername password=$dbpass", $db, $result)) { return; } db_free($db, $result); if (!$grant) { echo "<br>".$noacc_msg; include("footer.php"); exit; } if ((isset($_POST['B1'])) || (!$invoice)) echo "<br>".$update_msg."<meta http-equiv='refresh' content='1;
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Contact me if you want full decoding.
View user's profile Send private message
try this tool
PostPosted: Sat Jun 13, 2015 1:05 am Reply with quote
myg3nx
Advanced user
Advanced user
Joined: Jun 01, 2013
Posts: 72
Location: indonesia




try this tool dude
http://lombokcyber.com/en/detools/decode-fopo
View user's profile Send private message Visit poster's website Yahoo Messenger
fopo.com CRYPTED
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.024 Seconds