Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
tasksel /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
debconf
589
B
-rwxrwxrwx
2016-12-24 13:46
default-desktop
884
B
-rwxrwxrwx
2016-12-24 13:46
desktop
2.32
KB
-rwxrwxrwx
2016-12-24 13:46
lang
494
B
-rwxrwxrwx
2016-12-24 13:46
laptop
259
B
-rwxrwxrwx
2016-12-24 13:46
new-install
607
B
-rwxrwxrwx
2016-12-24 13:46
server
190
B
-rwxrwxrwx
2016-12-24 13:46
Save
Rename
#!/bin/sh # # Controls behavior for a task on new install or not. # # To enable this test insert your tasks stanza a keyword like: # # Test-new-install: mark skip # # This will cause the task to be marked for install on new install, and # hidden otherwise. if [ "$NEW_INSTALL" ]; then var=$2 else var=$3 fi case "$var" in install) exit 0 # do not display, but do install task ;; skip) exit 1 # do not display task ;; mark) exit 2 # display task, marked for installation ;; show) exit 3 # display task, not marked for installation ;; *) exit 1 # unknown value, skip the task ;; esac