This file is indexed.

/usr/lib/parallax/parallax-askpass3 is in python3-parallax 1.0.3-1.

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

import os
import sys

parent, bindir = os.path.split(os.path.dirname(os.path.abspath(sys.argv[0])))
if os.path.exists(os.path.join(parent, 'parallax')):
    sys.path.insert(0, parent)

from parallax.askpass_client import askpass_main
askpass_main()