This file is indexed.

/etc/pyroman/01_loopback.py is in pyroman 0.4.6-5build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
"""
We don't want to have any restrictions on the loopback interface,
and want to have the allow rules early in the firewall rules
"""
iptables("INPUT", "-i lo -j ACCEPT")
iptables("OUTPUT", "-o lo -j ACCEPT")