Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
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-08-05 17:14
messages
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
after.init
1.1
KB
-rw-r--r--
2025-08-05 17:14
after.rules
1004
B
-rw-r--r--
2025-08-05 17:14
after.rules.md5sum
305
B
-rw-r--r--
2025-08-05 17:14
after6.rules
915
B
-rw-r--r--
2025-08-05 17:14
after6.rules.md5sum
248
B
-rw-r--r--
2025-08-05 17:14
before.init
1.1
KB
-rw-r--r--
2025-08-05 17:14
before.rules
2.48
KB
-rw-r--r--
2025-08-05 17:14
before.rules.md5sum
558
B
-rw-r--r--
2025-08-05 17:14
before6.rules
6.54
KB
-rw-r--r--
2025-08-05 17:14
before6.rules.md5sum
693
B
-rw-r--r--
2025-08-05 17:14
check-requirements
7.48
KB
-rwxr-xr-x
2025-08-05 17:14
ufw.conf
312
B
-rw-r--r--
2025-08-05 17:14
user.rules
307
B
-rw-r--r--
2025-08-05 17:14
user.rules.md5sum
60
B
-rw-r--r--
2025-08-05 17:14
user6.rules
107
B
-rw-r--r--
2025-08-05 17:14
user6.rules.md5sum
61
B
-rw-r--r--
2025-08-05 17:14
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