This file is indexed.

/usr/lib/neard/tools/dump-record is in neard-tools 0.11-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
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /usr/bin/python

import sys
import dbus

def extract_list(list):
	val = "["
	for i in list:
		val += " " + str(i)
	val += " ]"
	return val

bus = dbus.SystemBus()

record = dbus.Interface(bus.get_object("org.neard", sys.argv[1]),
						"org.neard.Record")

properties = record.GetProperties()

print "[ %s ]" % (sys.argv[1])

for key in properties.keys():
    val = str(properties[key])
    print "      %s = %s" % (key, val)