This file is indexed.

/usr/share/php/Symfony/Bundle/SecurityBundle/Resources/config/console.xml is in php-symfony-security-bundle 3.4.6+dfsg-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
22
23
24
25
26
27
<?xml version="1.0" ?>

<container xmlns="http://symfony.com/schema/dic/services"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

    <services>
        <defaults public="false" />

        <service id="security.command.init_acl" class="Symfony\Bundle\SecurityBundle\Command\InitAclCommand">
            <argument type="service" id="security.acl.dbal.connection" />
            <argument type="service" id="security.acl.dbal.schema" />
            <tag name="console.command" command="init:acl" />
        </service>

        <service id="security.command.set_acl" class="Symfony\Bundle\SecurityBundle\Command\SetAclCommand">
            <argument type="service" id="security.acl.provider" />
            <tag name="console.command" command="acl:set" />
        </service>

        <service id="security.command.user_password_encoder" class="Symfony\Bundle\SecurityBundle\Command\UserPasswordEncoderCommand">
            <argument type="service" id="security.encoder_factory"/>
            <argument type="collection" /> <!-- encoders' user classes -->
            <tag name="console.command" command="security:encode-password" />
        </service>
    </services>
</container>