This file is indexed.

/usr/share/doc/node-ansi/examples/starwars.js is in node-ansi 0.2.1-1.

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
#!/usr/bin/env node

/**
 * A little script to play the ASCII Star Wars, but with a hidden cursor,
 * since over `telnet(1)` the cursor remains visible which is annoying.
 */

process.title = 'starwars'

var net = require('net')
  , cursor = require('../')(process.stdout)
  , color = process.argv[2]

// enable "raw mode" so that keystrokes aren't visible
process.stdin.resume()
if (process.stdin.setRawMode) {
  process.stdin.setRawMode(true)
} else {
  require('tty').setRawMode(true)
}

// connect to the ASCII Star Wars server
var socket = net.connect(23, 'towel.blinkenlights.nl')

socket.on('connect', function () {
  if (color in cursor.fg) {
    cursor.fg[color]()
  }
  cursor.hide()
  socket.pipe(process.stdout)
})

process.stdin.on('data', function (data) {
  if (data.toString() === '\u0003') {
    // Ctrl+C; a.k.a SIGINT
    socket.destroy()
    process.stdin.pause()
  }
})

process.on('exit', function () {
  cursor
    .show()
    .fg.reset()
    .write('\n')
})