This file is indexed.

/usr/bin/xpra_browser is in xpra 2.1.3+dfsg-1ubuntu1.

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
#! /usr/bin/python2

import sys
from xpra.platform import program_context

with program_context("Xpra-Browser", "Xpra Session Browser"):
    from xpra.client.gtk_base.mdns_gui import main
    sys.exit(main())