OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
ufw
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
after.init
1.1 KB
10/25/2021 05:30:24 PM
rw-r--r--
📄
after.rules
1004 bytes
10/25/2021 05:30:24 PM
rw-r--r--
📄
after.rules.md5sum
305 bytes
08/15/2017 04:47:54 PM
rw-r--r--
📄
after6.rules
915 bytes
10/25/2021 05:30:24 PM
rw-r--r--
📄
after6.rules.md5sum
248 bytes
08/15/2017 04:47:54 PM
rw-r--r--
📄
before.init
1.1 KB
10/25/2021 05:30:24 PM
rw-r--r--
📄
before.rules
2.48 KB
10/25/2021 05:30:24 PM
rw-r--r--
📄
before.rules.md5sum
558 bytes
12/14/2018 05:50:47 PM
rw-r--r--
📄
before6.rules
6.54 KB
10/25/2021 05:30:24 PM
rw-r--r--
📄
before6.rules.md5sum
693 bytes
12/14/2018 05:50:47 PM
rw-r--r--
📄
check-requirements
7.01 KB
09/04/2018 06:48:07 PM
rwxr-xr-x
📁
iptables
-
05/09/2024 07:13:54 AM
rwxr-xr-x
📁
messages
-
05/09/2024 07:13:54 AM
rwxr-xr-x
📄
ufw.conf
312 bytes
10/25/2021 05:30:24 PM
rw-r--r--
📄
user.rules
307 bytes
01/14/2018 07:28:35 PM
rw-r--r--
📄
user.rules.md5sum
60 bytes
08/15/2017 04:47:54 PM
rw-r--r--
📄
user6.rules
107 bytes
01/14/2018 07:28:35 PM
rw-r--r--
📄
user6.rules.md5sum
61 bytes
08/15/2017 04:47:54 PM
rw-r--r--
Editing: after.init
Close
#!/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