This file is indexed.

/etc/pyroman/25_networks.py is in pyroman 0.5.0-1.

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
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
"""
Define the networks available here, or more precisely "hostgroups".
Many of your policy rules will probably target whole subnets.

Common "hostgroups" include your network zones and an "ANY" network which
applies to all hosts.
"""
# First is the internal network, we're using a /24 network here only
# and it's connected to our "internal" interface
#add_host(
#	name="INT",
#	ip="10.0.0.0/24",
#	iface="int"
#)

# you probably will want a 'network' specification like this.
add_host(
	name="ANY",
	ip="0.0.0.0/0 ::/0",
	iface="any"
)