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: 340
Members: 0
Total: 340
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 -> 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.028 Seconds