403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.168
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/thread-self/root/usr/share/apport/package-hooks/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/thread-self/root/usr/share/apport/package-hooks/source_plymouth.py
'''apport package hook for plymouth

Copyright 2010 Canonical Ltd.
Authors: Steve Langasek <steve.langasek@ubuntu.com>,
         Brian Murray <brian@ubuntu.com>
'''

from apport.hookutils import *

import os.path


def _attach_file_filtered(report, path, key=None):
    '''filter out password from grub configuration'''
    if not key:
        key = path_to_key(path)

    if os.path.exists(path):
        with open(path,'r') as f:
            filtered = [l if not l.startswith('password')
                        else '### PASSWORD LINE REMOVED ###'
                        for l in f.readlines()]
            report[key] = ''.join(filtered)


def add_info(report):
    attach_hardware(report)
    attach_file(report, '/proc/fb', 'ProcFB')
    attach_file(report, '/proc/cmdline', 'ProcCmdLine')
    attach_file(report, '/var/log/boot.log', 'BootLog')
    debug_log = '/var/log/plymouth-debug.log'
    if os.path.exists(debug_log):
        attach_root_command_outputs(report,
            {'PlymouthDebug': 'cat %s' % debug_log})
    _attach_file_filtered(report, '/etc/default/grub', 'EtcDefaultGrub')
    default_alternative = '/etc/alternatives/default.plymouth'
    if os.path.exists(default_alternative):
        report['DefaultPlymouth'] = command_output(['readlink', default_alternative])
    text_alternative = '/etc/alternatives/text.plymouth'
    if os.path.exists(text_alternative):
        report['TextPlymouth'] = command_output(['readlink', text_alternative])

Youez - 2016 - github.com/yon3zu
LinuXploit