Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
ufw /
Delete
Unzip
Name
Size
Permission
Date
Action
iptables
[ DIR ]
drwxr-xr-x
2025-04-08 17:13
messages
[ DIR ]
drwxr-xr-x
2025-04-08 17:13
after.init
1.1
KB
-rw-r--r--
2023-05-18 14:03
after.rules
1004
B
-rw-r--r--
2023-05-18 14:03
after.rules.md5sum
305
B
-rw-r--r--
2023-05-16 13:59
after6.rules
915
B
-rw-r--r--
2023-05-18 14:03
after6.rules.md5sum
248
B
-rw-r--r--
2023-05-16 13:59
before.init
1.1
KB
-rw-r--r--
2023-05-18 14:03
before.rules
2.48
KB
-rw-r--r--
2023-05-18 14:03
before.rules.md5sum
558
B
-rw-r--r--
2023-05-16 13:59
before6.rules
6.54
KB
-rw-r--r--
2023-05-18 14:03
before6.rules.md5sum
693
B
-rw-r--r--
2023-05-16 13:59
check-requirements
7.48
KB
-rwxr-xr-x
2023-05-16 14:51
ufw.conf
312
B
-rw-r--r--
2023-05-18 14:03
user.rules
307
B
-rw-r--r--
2018-01-14 19:28
user.rules.md5sum
60
B
-rw-r--r--
2023-05-16 13:59
user6.rules
107
B
-rw-r--r--
2018-01-14 19:28
user6.rules.md5sum
61
B
-rw-r--r--
2023-05-16 13:59
Save
Rename
#!/bin/sh # # before.init: if executable, called by ufw-init. See 'man ufw-framework' for # details. Note that output from these scripts is not seen via the # the ufw command, but instead via ufw-init. # # Copyright 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3, # as published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # set -e case "$1" in start) # typically required ;; stop) # typically required ;; status) # optional ;; flush-all) # optional ;; *) echo "'$1' not supported" echo "Usage: before.init {start|stop|flush-all|status}" ;; esac