This file is indexed.

/usr/src/west-chamber-20100405+svn20111107.r124/extensions/libxt_CUI.c is in west-chamber-dkms 20100405+svn20111107.r124-8.

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
/*
 *	"CUI" target extension for iptables
 *		copied from "DELUDE" target
 *	Copyright © Jan Engelhardt <jengelh [at] medozas de>, 2006 - 2008
 *	Klzgrad <klzgrad@gmail.com>, 2010
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License; either
 *	version 2 of the License, or any later version, as published by the
 *	Free Software Foundation.
 */
#include <stdio.h>

#include <xtables.h>
#include <linux/netfilter/x_tables.h>

static void cui_tg_help(void)
{
	printf("CUI takes no options\n");
}

static int cui_tg_parse(int c, char **argv, int invert, unsigned int *flags,
    const void *entry, struct xt_entry_target **target)
{
	return 0;
}

static struct xtables_target cui_tg_reg = {
	.version       = XTABLES_VERSION,
	.name          = "CUI",
	.revision      = 0,
	.family        = PF_INET,
	.help          = cui_tg_help,
	.parse         = cui_tg_parse,
};

static __attribute__((constructor)) void cui_tg_ldr(void)
{
	xtables_register_target(&cui_tg_reg);
}