This file is indexed.

/usr/share/bug/lsb-release is in lsb-release 4.0-0ubuntu20.

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

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
#!/bin/sh
echo 'lsb_release output' >& 3
echo '-*- -*- -*- -*- -*-'>&3
lsb_release -a >& 3
echo '-*- -*- -*- -*- -*-'>&3
echo '    Apt policy' >&3
echo '-*- -*- -*- -*- -*-'>&3
apt-cache policy >&3
echo '-*- -*- -*- -*- -*-'>&3
echo '   sources.list' >&3
echo '-*- -*- -*- -*- -*-'>&3
if [ -f /etc/apt/sources.list ]; then
    cat /etc/apt/sources.list | grep -v '^\s*#' | grep -v '^\s*$' >&3
else
    echo '- none' >&3
fi
echo '-*- -*- -*- -*- -*-'>&3
echo ' /etc/lsb_release' >&3
echo '-*- -*- -*- -*- -*-'>&3
if [ -f /etc/lsb_release ]; then
    cat /etc/lsb_release >&3
else
    echo '- none' >&3
fi