This file is indexed.

/usr/share/ofono/scripts/receive-sms is in ofono-scripts 1.17.bzr6912+16.04.20160314.3-0ubuntu1.

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
25
26
27
28
29
30
31
32
33
#!/usr/bin/python3

from gi.repository import GLib

import dbus
import dbus.mainloop.glib

def incoming_message(message, details, path, interface):
	print("%s" % (message.encode('utf-8')))

	for key in details:
		val = details[key]
		print("    %s = %s" % (key, val))

if __name__ == '__main__':
	dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)

	bus = dbus.SystemBus()

	bus.add_signal_receiver(incoming_message,
					bus_name="org.ofono",
					signal_name = "ImmediateMessage",
						path_keyword="path",
						interface_keyword="interface")

	bus.add_signal_receiver(incoming_message,
					bus_name="org.ofono",
					signal_name = "IncomingMessage",
						path_keyword="path",
						interface_keyword="interface")

	mainloop = GLib.MainLoop()
	mainloop.run()