This file is indexed.

/usr/share/upstart/sessions/untrusted-helper.conf is in ubuntu-app-launch 0.5+15.10.20150817-0ubuntu3.

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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
description "Untrusted Helpers installed from Click Packages"

start on untrusted-helper-start
stop on untrusted-helper-end or desktop-end

instance ${HELPER_TYPE}:${INSTANCE_ID}:${APP_ID}

env APP_ID
env APP_EXEC="echo Error"
env HELPER_TYPE
env INSTANCE_ID=""
env APP_URIS

env UBUNTU_APP_LAUNCH_ARCH="x86_64-linux-gnu"
export UBUNTU_APP_LAUNCH_ARCH

apparmor switch ${APP_ID}
cgroup freezer
oom score 800

# This is unconfined
pre-start script
	if [ -x "/usr/lib/x86_64-linux-gnu/ubuntu-app-launch/${HELPER_TYPE}/exec-tool" ] ; then
		/usr/lib/x86_64-linux-gnu/ubuntu-app-launch/${HELPER_TYPE}/exec-tool
	else
		echo "Unable to find exec tool for ${HELPER_TYPE}"
		exit -1
	fi
end script

# Remember, this is confined
exec /usr/lib/x86_64-linux-gnu/ubuntu-app-launch/exec-line-exec

post-stop exec /usr/lib/x86_64-linux-gnu/ubuntu-app-launch/cgroup-reap-all