This file is indexed.

/etc/freeradius/modules/etc_group is in freeradius 2.1.12+dfsg-1.2.

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
22
23
24
25
26
27
# -*- text -*-
#
#  $Id$

#  "passwd" configuration, for the /etc/group file. Adds a Etc-Group-Name
#  attribute for every group that the user is member of.
#
#  You will have to define the Etc-Group-Name in the 'dictionary' file
#  as a 'string' type.
#
#  The Group and Group-Name attributes are automatically created by
#  the Unix module, and do checking against /etc/group automatically.
#  This means that you CANNOT use Group or Group-Name to do any other
#  kind of grouping in the server.  You MUST define a new group
#  attribute.
#
#  i.e. this module should NOT be used as-is, but should be edited to
#  point to a different group file.
#
passwd etc_group {
	filename = /etc/group
	format = "=Etc-Group-Name:::*,User-Name"
	hashsize = 50
	ignorenislike = yes
	allowmultiplekeys = yes
	delimiter = ":"
}