Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.144.137.236
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
2024-02-16 18:50
messages
[ DIR ]
drwxr-xr-x
2024-02-16 18:50
after.init
1.1
KB
-rw-r--r--
2023-07-17 13:55
after.rules
1004
B
-rw-r--r--
2023-07-17 13:55
after.rules.md5sum
305
B
-rw-r--r--
2021-09-19 05:07
after6.rules
915
B
-rw-r--r--
2023-07-17 13:55
after6.rules.md5sum
248
B
-rw-r--r--
2021-09-19 05:07
before.init
1.1
KB
-rw-r--r--
2023-07-17 13:55
before.rules
2.48
KB
-rw-r--r--
2023-07-17 13:55
before.rules.md5sum
558
B
-rw-r--r--
2021-09-19 05:07
before6.rules
6.54
KB
-rw-r--r--
2023-07-17 13:55
before6.rules.md5sum
693
B
-rw-r--r--
2021-09-19 05:07
check-requirements
7.47
KB
-rwxr-xr-x
2023-07-17 13:55
ufw.conf
312
B
-rw-r--r--
2023-07-17 13:55
user.rules
307
B
-rw-r--r--
2018-01-14 19:28
user.rules.md5sum
60
B
-rw-r--r--
2021-09-19 05:07
user6.rules
107
B
-rw-r--r--
2018-01-14 19:28
user6.rules.md5sum
61
B
-rw-r--r--
2021-09-19 05:07
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