This file is indexed.

/usr/share/lua/5.1/supple.lua is in lua-supple 1.0.8-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
-- lib/supple.lua
--
-- Sandbox (for) Untrusted Procedure Partitioning (in) Lua Engine
--
-- Copyright 2012 Daniel Silverstone <dsilvers@digital-scurf.org>
--
-- For licence terms, see COPYING
--

--- Sandbox, for Untrusted Procedure Partitioning in Lua, Engine.
--
-- Supple is a mechanism for partitioning untrusted Lua code into a separate
-- process wherein it is run sandboxed from the environment in an attempt to
-- reduce the attack surface to a level at which administrators will be
-- prepared to run arbitrary code from untrusted (or even expected-malicious)
-- third parties.
--
-- * To see how to use supple, start at `supple.host.run`.

local capi = require 'supple.capi'
local request = require 'supple.request'
local objects = require 'supple.objects'
local comms = require 'supple.comms'
local sandbox = require 'supple.sandbox'
local host = require 'supple.host'
local track = require 'supple.track'

local _VERSION = 1
local _ABI = 1

local VERSION = "Supple Version " .. tostring(_VERSION)

return {
   capi = capi,
   request = request,
   objects = objects,
   comms = comms,
   sandbox = sandbox,
   host = host,
   track = track,
   _VERSION = _VERSION,
   VERSION = VERSION,
   _ABI = _ABI,
   ABI = ABI,
}