-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsneaky_mod.mod.c
More file actions
48 lines (40 loc) · 1.14 KB
/
Copy pathsneaky_mod.mod.c
File metadata and controls
48 lines (40 loc) · 1.14 KB
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
#include <linux/build-salt.h>
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
BUILD_SALT;
MODULE_INFO(vermagic, VERMAGIC_STRING);
MODULE_INFO(name, KBUILD_MODNAME);
__visible struct module __this_module
__section(.gnu.linkonce.this_module) = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
.arch = MODULE_ARCH_INIT,
};
#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif
static const struct modversion_info ____versions[]
__used __section(__versions) = {
{ 0xb3753869, "module_layout" },
{ 0x5ab5b891, "param_ops_int" },
{ 0xe007de41, "kallsyms_lookup_name" },
{ 0xc5850110, "printk" },
{ 0x8b9200fd, "lookup_address" },
{ 0x754d539c, "strlen" },
{ 0x349cba85, "strchr" },
{ 0xc310b981, "strnstr" },
{ 0xb0e602eb, "memmove" },
{ 0xe2d5255a, "strcmp" },
{ 0x3c3ff9fd, "sprintf" },
{ 0xdecd0b29, "__stack_chk_fail" },
{ 0xb44ad4b3, "_copy_to_user" },
{ 0x2ea2c95c, "__x86_indirect_thunk_rax" },
{ 0x24428be5, "strncpy_from_user" },
{ 0xbdfb6dbb, "__fentry__" },
};
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "A73798C48BB99E4A77670F9");