This file is indexed.

/usr/share/doc/mongrel2-core/examples/mp3stream/handler.py is in mongrel2-core 1.9.1-6+deb8u1.

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
from mp3stream import ConnectState, Streamer 
from mongrel2 import handler
import glob


sender_id = "9703b4dd-227a-45c4-b7a1-ef62d97962b2"

CONN = handler.Connection(sender_id, "tcp://127.0.0.1:9995",
                          "tcp://127.0.0.1:9994")


STREAM_NAME = "Mongrel2 Radio"

MP3_FILES = glob.glob("*.mp3")

print "PLAYING:", MP3_FILES

CHUNK_SIZE = 8 * 1024

STATE = ConnectState()

STREAMER = Streamer(MP3_FILES, STATE, CONN, CHUNK_SIZE, sender_id)
STREAMER.start()

HEADERS = { 'icy-metaint': CHUNK_SIZE,
            'icy-name': STREAM_NAME}


while True:
    req = CONN.recv()

    if req.is_disconnect():
        print "DISCONNECT", req.headers, req.body, req.conn_id
        STATE.remove(req)
    else:
        print "REQUEST", req.headers, req.body

        if STATE.count() > 20:
            print "TOO MANY", STATE.count()
            CONN.reply_http(req, "Too Many Connected.  Try Later.")
        else:
            STATE.add(req)
            CONN.reply_http(req, "", headers=HEADERS)