Waraxe IT Security Portal
Login or Register
November 18, 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: 56
Members: 0
Total: 56
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 -> 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



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.037 Seconds