Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
share /
doc /
BlueJ /
people /
[ HOME SHELL ]
Name
Size
Permission
Action
Database.ctxt
363
B
-rw-r--r--
Database.java
885
B
-rw-r--r--
Person.ctxt
734
B
-rw-r--r--
Person.java
1.22
KB
-rw-r--r--
README.TXT
1
KB
-rw-r--r--
Staff.ctxt
684
B
-rw-r--r--
Staff.java
1.1
KB
-rw-r--r--
Student.ctxt
550
B
-rw-r--r--
Student.java
1000
B
-rw-r--r--
package.bluej
855
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Student.java
/** * A class representing students for a simple BlueJ demo program. * * @author Michael Kölling * @version 1.0, January 1999 */ class Student extends Person { private String SID; // student ID number /** * Create a student with default settings for detail information. */ Student() { super("(unknown name)", 0000); SID = "(unknown ID)"; } /** * Create a student with given name, year of birth and student ID */ Student(String name, int yearOfBirth, String studentID) { super(name, yearOfBirth); SID = studentID; } /** * Return the student ID of this student. */ public String getStudentID() { return SID; } /** * Return a string representation of this object. */ public String toString() // redefined from "Person" { return super.toString() + "Student\n" + "Student ID: " + SID + "\n"; } }
Close