Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.55
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2025-03-17 23:27
rules.d
[ DIR ]
drwxr-xr-x
2025-03-17 23:27
accelerometer
60.82
KB
-rwxr-xr-x
2024-12-26 12:37
ata_id
48.06
KB
-rwxr-xr-x
2024-12-26 12:37
cdrom_id
56.09
KB
-rwxr-xr-x
2024-12-26 12:37
check-ptp-camera
1.2
KB
-rwxr-xr-x
2017-01-28 00:53
collect
31.54
KB
-rwxr-xr-x
2024-12-26 12:37
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
2021-06-09 20:39
mtd_probe
10.9
KB
-rwxr-xr-x
2024-12-26 12:37
phys-port-name-gen
1.18
KB
-rwxr-xr-x
2024-12-26 12:37
rename_device
15.04
KB
-rwxr-xr-x
2022-08-16 18:11
scsi_id
56.86
KB
-rwxr-xr-x
2024-12-26 12:37
tascam_fpga
913
B
-rwxr-xr-x
2016-11-05 22:04
tascam_fw
1.1
KB
-rwxr-xr-x
2016-11-05 22:04
udev-kvm-check
15.12
KB
-rwxr-xr-x
2022-08-16 18:11
v4l_id
23.3
KB
-rwxr-xr-x
2024-12-26 12:37
Save
Rename
#!/bin/sh # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301 USA # # # check if any interface of this device is a PTP camera interface (06) INTERFACE="${1:-06/01/01}" BASENAME=${DEVPATH##*/} for d in /sys/${DEVPATH}/${BASENAME}:*; do [ -d "${d}" ] || continue INTERFACEID="$(cat "${d}"/bInterfaceClass)" INTERFACEID="${INTERFACEID}/$(cat "${d}"/bInterfaceSubClass)" INTERFACEID="${INTERFACEID}/$(cat "${d}"/bInterfaceProtocol)" #echo ${d}: ${INTERFACEID} if [ "${INTERFACE}" = "${INTERFACEID}" ]; then # Found interface exit 0 fi done exit 1