Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
doc /
Auth_HTTP /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
sample.sql
730
B
-rw-r--r--
test_basic_simple.php
590
B
-rw-r--r--
test_digest_get.php
780
B
-rw-r--r--
test_digest_post.php
731
B
-rw-r--r--
test_digest_simple.php
613
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sample.sql
-- SQLite schema for permission administration -- usage: sqlite /tmp/user.db < sample.sql CREATE TABLE auth ( username VARCHAR(50) NOT NULL, -- username password VARCHAR(50) NOT NULL -- password ); -- plain password --INSERT INTO auth VALUES ('taro','secret'); --INSERT INTO auth VALUES ('jiro','secret'); -- md5 hash password: secret --INSERT INTO auth VALUES ('taro','5ebe2294ecd0e0f08eab7690d2a6ee69'); --INSERT INTO auth VALUES ('jiro','5ebe2294ecd0e0f08eab7690d2a6ee69'); -- a1 (md5(username:realm:password)) for http digest authentication -- realm: sample, password: secret INSERT INTO auth VALUES ('taro','d0f7c5ba4f2f2ed16f2a714332633ad5'); INSERT INTO auth VALUES ('jiro','d41438d297ee671f2249cc0d6c1f3997');
Close