__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/python3 # -*- coding: utf-8 -*- '''apport package hook for bluez (c) 2010 Free Software Foundation Author: Baptiste Mille-Mathias <[email protected]> ''' from apport.hookutils import * import re def add_info(report, ui): report['syslog'] = recent_syslog(re.compile(r'bluetooth', re.IGNORECASE)) attach_hardware(report) if command_available('hciconfig'): report['hciconfig'] = command_output('hciconfig') if command_available('rfkill'): report['rfkill'] = command_output(['rfkill','list']) if command_available('getfacl'): report['getfacl'] = command_output(['getfacl','/dev/rfkill']) interesting_modules = ('btusb', 'rfcomm', 'sco', 'bnep', 'l2cap', 'bluetooth') interesting_modules_loaded = [] for line in open('/proc/modules'): module = line.split()[0] if module in interesting_modules: interesting_modules_loaded.append(module) if interesting_modules_loaded: report['InterestingModules'] = ' '.join(interesting_modules_loaded)