Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.117.129.72
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
np_admin /
[ HOME SHELL ]
Name
Size
Permission
Action
SpryAssets
[ DIR ]
drwxr-xr-x
ckeditor
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
Logout.php
84
B
-rw-r--r--
Session_Update.php
2.58
KB
-rw-r--r--
User_Account.php
12.6
KB
-rw-r--r--
User_Profile.php
8.57
KB
-rw-r--r--
User_Profile_permmion.php
14.71
KB
-rw-r--r--
admin_home.php
2
KB
-rw-r--r--
admin_home_old.php
10.92
KB
-rw-r--r--
attand.php
9.14
KB
-rw-r--r--
college_profile.php
8.56
KB
-rw-r--r--
college_profile_edit.php
7.15
KB
-rw-r--r--
committee_member.php
9.53
KB
-rw-r--r--
committee_member_edit.php
7.74
KB
-rw-r--r--
committee_name.php
7.26
KB
-rw-r--r--
connection.php
177
B
-rw-r--r--
courses.php
8.14
KB
-rw-r--r--
courses_edit.php
6.64
KB
-rw-r--r--
databasebackup.php
3.58
KB
-rw-r--r--
databaserestore.php
2.65
KB
-rw-r--r--
error_log
1.36
KB
-rw-r--r--
foragte_password.php
307
B
-rw-r--r--
gallery.php
8.79
KB
-rw-r--r--
gallery_edit.php
6.94
KB
-rw-r--r--
index.php
2.4
KB
-rw-r--r--
login_2.php
18.94
KB
-rw-r--r--
new_notice.php
9.16
KB
-rw-r--r--
non_teaching.php
10.16
KB
-rw-r--r--
non_teaching_edit.php
8.21
KB
-rw-r--r--
principal_message.php
8.96
KB
-rw-r--r--
principal_message_edit.php
7.35
KB
-rw-r--r--
splash_view.php
7.33
KB
-rw-r--r--
teaching.php
10.14
KB
-rw-r--r--
teaching_edit.php
8.2
KB
-rw-r--r--
teching_edit.php
8.17
KB
-rw-r--r--
tender.php
8.69
KB
-rw-r--r--
update_and_delete.php
4.1
KB
-rw-r--r--
update_attand.php
6.89
KB
-rw-r--r--
update_notice.php
6.9
KB
-rw-r--r--
user_details.php
9.24
KB
-rw-r--r--
user_reg.php
4.26
KB
-rw-r--r--
validateuser.php
685
B
-rw-r--r--
view_notice.php
1.14
KB
-rw-r--r--
welcome.php
821
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user_reg.php
<?php $conn=mysql_connect("localhost","root","") or die("check the connection"); $db=mysql_select_db("vpjitsol_inventory",$conn) or die("check the database"); if(isset($_POST['submit'])) { $query=mysql_query("insert into student_reg set name='".$_POST['user_name']."',password='".$_POST['user_pass']."',varifypass='".$_POST['user_vari_pass']."',phone='".$_POST['user_phone']."',mobile='".$_POST['user_mobile']."',email='".$_POST['user_email']."'"); if($query) { echo "registration succfully"; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <form action="" name="form" method="post" onsubmit="return validate();"> STUDENT REGISTRATION <table bgcolor="#CCCCCC"> <tr> <td>USER NAME</td> <td><input type="text" name="user_name" id="user_name"></td> </tr> <tr> <td>PASSWORD</td> <td><input type="text" name="user_pass" id="user_pass" class="txtbox"></td> </tr> <tr> <td>VARIFY PASSWORD</td> <td><input type="text" name="user_vari_pass" id="user_vari_pass" class="txtbox"></td> </tr> <tr> <td>PHONE NO.</td> <td><input type="text" name="user_phone" id="user_phone" class="txtbox"></td> </tr> <tr> <td>MOBILE NO.</td> <td><input type="text" name="user_mobile" id="user_mobile" class="txtbox"></td> </tr> <tr> <td>EMAIL ID</td> <td><input type="text" name="user_email" id="user_email"></td> </tr> <tr> <td><input type="submit" name="submit" value="submit"></td> </tr> </table> </form> <script> function validate(){ if(document.getElementById('user_name').value==''){ alert("Please Enter your Name"); document.getElementById('user_name').focus(); return false; } if(document.getElementById('user_pass').value==''){ alert("Please Enter your Password"); document.getElementById('user_pass').focus(); return false; } if(document.getElementById('user_vari_pass').value==''){ alert("Please Enter your Varify Password"); document.getElementById('user_vari_pass').focus(); return false; } if(document.getElementById('user_phone').value==''){ alert("Please Enter your Your Phonr Number"); document.getElementById('user_phone').focus(); return false; } else if(!IsNumeric(document.getElementById('user_phone').value)){ alert("Phone No. you entered is not correct"); document.getElementById('user_phone').focus(); return false; } if(document.getElementById('user_mobile').value==''){ alert("Please Enter your Your Mobile Number"); document.getElementById('user_mobile').focus(); return false; } else if(!IsNumeric_1(document.getElementById('user_mobile').value)){ alert("Phone No. you entered is not correct"); document.getElementById('user_mobile').focus(); return false; } if(document.getElementById('user_email').value==''){ alert("Please Enter your Email Address"); document.getElementById('user_email').focus(); return false; } if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.getElementById('user_email').value)) { alert("Invalid E-mail Address! Please re-enter your address.") document.getElementById('user_email').focus(); return false; } } function IsNumeric(strString) // check for valid numeric strings { var strValidChars = "0123456789"; var strChar; var blnResult = true; if (strString.length == 0) return false; // test strString consists of valid characters listed above for (i = 0; i < strString.length && blnResult == true; i++) { strChar = strString.charAt(i); if (strValidChars.indexOf(strChar) == -1) { blnResult = false; } } return blnResult; } function IsNumeric_1(strString) // check for valid numeric strings { var strValidChars = "0123456789"; var strChar; var blnResult = true; if (strString.length == 0) return false; // test strString consists of valid characters listed above for (i = 0; i < strString.length && blnResult == true; i++) { strChar = strString.charAt(i); if (strValidChars.indexOf(strChar) == -1) { blnResult = false; } } return blnResult; } </script> </body> </html>
Close