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 /
share /
ufw /
Delete
Unzip
Name
Size
Permission
Date
Action
iptables
[ DIR ]
drwxrwxrwx
2021-01-22 12:26
messages
[ DIR ]
drwxrwxrwx
2021-01-22 12:26
after.init
1.1
KB
-rwxrwxrwx
2017-01-10 22:16
after.rules
1004
B
-rwxrwxrwx
2017-01-10 22:16
after.rules.md5sum
305
B
-rwxrwxrwx
2015-07-17 18:02
after6.rules
915
B
-rwxrwxrwx
2017-01-10 22:16
after6.rules.md5sum
248
B
-rwxrwxrwx
2015-07-17 18:02
before.init
1.1
KB
-rwxrwxrwx
2017-01-10 22:16
before.rules
2.6
KB
-rwxrwxrwx
2017-01-10 22:16
before.rules.md5sum
558
B
-rwxrwxrwx
2015-07-17 18:01
before6.rules
6.3
KB
-rwxrwxrwx
2017-01-10 22:16
before6.rules.md5sum
630
B
-rwxrwxrwx
2017-01-08 17:33
check-requirements
7.01
KB
-rwxrwxrwx
2016-02-18 06:26
ufw.conf
312
B
-rwxrwxrwx
2017-01-10 22:16
user.rules
307
B
-rwxrwxrwx
2016-02-18 06:26
user.rules.md5sum
60
B
-rwxrwxrwx
2012-03-17 15:30
user6.rules
107
B
-rwxrwxrwx
2016-02-18 06:26
user6.rules.md5sum
61
B
-rwxrwxrwx
2012-03-17 15:30
Save
Rename
#!/bin/sh # # after.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: after.init {start|stop|flush-all|status}" ;; esac