This file is indexed.

/usr/share/pyshared/gozerbot/admin.py is in gozerbot 0.99.1-2.

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
# gozerbot/admin.py
#
#

""" gozerbot admin related funtions. """


from simplejson import loads

try:
    cmndtable = loads(open('gozerdata' + os.sep + 'run' + os.sep + 'cmndtable').read())
except:
    cmndtable = {}

try:
    pluginlist = loads(open('gozerdata' + os.sep + 'run' + os.sep + 'pluginlist').read())
except:
    pluginlist = []