This file is indexed.

/usr/share/ettercap/lua/core/ettercap_reg.lua is in ettercap-common 1:0.8.1-3+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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--- This provides a very simple registry 
--
--    Copyright (C) Ryan Linn and Mike Ryan
--
--    This program is free software; you can redistribute it and/or modify
--    it under the terms of the GNU General Public License as published by
--    the Free Software Foundation; either version 2 of the License, or
--    (at your option) any later version.
--
--    This program is distributed in the hope that it will be useful,
--    but WITHOUT ANY WARRANTY; without even the implied warranty of
--    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--    GNU General Public License for more details.
--
--    You should have received a copy of the GNU General Public License
--    along with this program; if not, write to the Free Software
--    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

--

local ettercap_registry = {}

--- Indicates if we have a namespace, or not.
-- @return true or false, depending on if we have a workspace or not.
workspace_exists = function(ns)
  return (not (ettercap_registry[ns] == nil))
end

--- Creates a namespace if it does not already exist, and then returns it.
-- @param ns 
-- @return A table
create_namespace = function(ns)
  local ret = ettercap_registry[ns]
  if ret == nil then
    ret = {}
    ettercap_registry[ns] = ret
  end
  return ret
end

--- Retreives a namespace. Returns nil if the namespace doesn't exist.
-- @param ns
-- @return A table, or nil
get_namespace = function(ns)
  -- Doesn't matter if it exists or not. It's either nil or not, so we just
  -- return.
  return ettercap_registry[ns]
end

--- Delete's a namespace, effectively. 
-- @param ns
delete_namespace = function(ns)
  -- Fun fact, if you set a table entry to nil, it deletes the key as well.
  ettercap_registry[ns] = nil
end

local reg = {}
reg.workspace_exists = workspace_exists
reg.create_namespace = create_namespace
reg.get_namespace = get_namespace
reg.delete_namespace = delete_namespace
return reg