This file is indexed.

/usr/lib/python2.7/dist-packages/hijack/signals.py is in python-django-hijack 2.0.3-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
from django.dispatch import Signal

post_superuser_login = Signal(providing_args=['user_id'])

post_superuser_logout = Signal(providing_args=['user_id'])

hijack_started = Signal(providing_args=['hijacker_id', 'hijacked_id'])
hijack_ended= Signal(providing_args=['hijacker_id', 'hijacked_id'])