⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hunter.mod.c

📁 Linux下面截获以态网数据包!是在内核态下面运行的驱动程序
💻 C
字号:
#include <linux/module.h>#include <linux/vermagic.h>#include <linux/compiler.h>MODULE_INFO(vermagic, VERMAGIC_STRING);#undef unixstruct module __this_module__attribute__((section(".gnu.linkonce.this_module"))) = { .name = __stringify(KBUILD_MODNAME), .init = init_module,#ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module,#endif};static const struct modversion_info ____versions[]__attribute_used____attribute__((section("__versions"))) = {	{ 0xf3d5f8af, "struct_module" },	{ 0xa09e54eb, "kmem_cache_destroy" },	{ 0x8ce16b3f, "__kmalloc" },	{ 0x42b34e64, "complete_and_exit" },	{ 0x70885d12, "__kfree_skb" },	{ 0xd6ee688f, "vmalloc" },	{ 0x349cba85, "strchr" },	{ 0xb5f8ad4b, "malloc_sizes" },	{ 0x94beda0e, "dev_get_by_name" },	{ 0x7d0d9aa5, "dput" },	{ 0x7c067e8c, "filp_close" },	{ 0x756e6992, "strnicmp" },	{ 0x2fd1d81c, "vfree" },	{ 0x1d26aa98, "sprintf" },	{ 0x9925ce9c, "__might_sleep" },	{ 0xe2d5255a, "strcmp" },	{ 0x1e310fb9, "vfs_rmdir" },	{ 0x2077bc9c, "lookup_hash" },	{ 0xb1426c76, "wait_for_completion" },	{ 0x3fa03a97, "memset" },	{ 0xc16fe12d, "__memcpy" },	{ 0xdd132261, "printk" },	{ 0x859204af, "sscanf" },	{ 0xd97ff961, "kmem_cache_free" },	{ 0xccd52b12, "__down_failed_interruptible" },	{ 0x1e6d26a8, "strstr" },	{ 0x27045326, "dev_remove_pack" },	{ 0x7fbfd08a, "path_release" },	{ 0xd79b5a02, "allow_signal" },	{ 0xcb0d98f0, "kmem_cache_alloc" },	{ 0xd3db4f65, "path_lookup" },	{ 0xd62c833f, "schedule_timeout" },	{ 0x1000e51, "schedule" },	{ 0xec7a7a54, "register_chrdev" },	{ 0x385eb1df, "vfs_mkdir" },	{ 0xfed8bd77, "vfs_unlink" },	{ 0x713159e6, "kmem_cache_create" },	{ 0x72270e35, "do_gettimeofday" },	{ 0x934b8991, "iput" },	{ 0xbfa6380c, "dev_set_promiscuity" },	{ 0x37a0cba, "kfree" },	{ 0x932da67e, "kill_proc" },	{ 0xc192d491, "unregister_chrdev" },	{ 0x7ca341af, "kernel_thread" },	{ 0x1042cbb5, "__up_wakeup" },	{ 0x99ecaa5d, "dev_add_pack" },	{ 0x71005ee, "generic_file_read" },	{ 0x7a7ef853, "__down_failed" },	{ 0xdc43a9c8, "daemonize" },	{ 0x30f99c1f, "vfs_write" },	{ 0xe914e41e, "strcpy" },	{ 0x9a076577, "filp_open" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -