This file is indexed.

/usr/share/faust/js/jdesc.js is in faust-common 0.9.95~repack1-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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
function getDesc() {
	return '{\
	"name": "karplus",\
	"address": "localhost",\
	"port": "5510",\
	"ui": [\
		{\
			"type": "horizontalslider",\
			"label": "excitation",\
			"address": "/karplus/excitator/excitation",\
			"init": "128",\
			"min": "2",\
			"max": "512",\
			"step": "1"\
		},\
		{\
			"type": "button",\
			"label": "play",\
			"address": "/karplus/excitator/play"\
		},\
		{\
			"type": "horizontalslider",\
			"label": "level",\
			"address": "/karplus/level",\
			"init": "0.5",\
			"min": "0",\
			"max": "1",\
			"step": "0.1"\
		},\
		{\
			"type": "horizontalslider",\
			"label": "attenuation",\
			"address": "/karplus/resonator/attenuation",\
			"init": "0.1",\
			"min": "0",\
			"max": "1",\
			"step": "0.01"\
		},\
		{\
			"type": "horizontalslider",\
			"label": "duration",\
			"address": "/karplus/resonator/duration",\
			"init": "128",\
			"min": "2",\
			"max": "512",\
			"step": "1"\
		}\
	]\
}';
}