Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
apport /
package-hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
apache2.py
1.77
KB
-rw-r--r--
2020-07-16 00:33
cloud-init.py
175
B
-rw-r--r--
2021-04-21 00:06
cryptsetup.py
259
B
-rw-r--r--
2017-09-06 12:08
isc-dhcp-client.py
1.75
KB
-rw-r--r--
2016-12-09 18:45
openssh-client.py
1.14
KB
-rw-r--r--
2020-05-27 01:17
openssh-server.py
1011
B
-rw-r--r--
2020-05-27 01:17
postfix.py
2.68
KB
-rw-r--r--
2020-07-28 23:11
source_apparmor.py
2.82
KB
-rw-r--r--
2016-10-04 22:14
source_apport.py
569
B
-rw-r--r--
2016-03-31 16:13
source_apport.pyc
830
B
-rw-r--r--
2025-07-15 07:05
source_byobu.py
417
B
-rw-r--r--
2016-04-08 00:05
source_console-setup.py
374
B
-rw-r--r--
2019-04-10 23:25
source_debian-installer.py
1.86
KB
-rw-r--r--
2025-07-11 17:07
source_debian-installer.pyc
2.04
KB
-rw-r--r--
2025-07-15 07:05
source_ghostscript.py
219
B
-rw-r--r--
2021-01-06 20:23
source_grub2.py
3.69
KB
-rw-r--r--
2020-08-24 10:54
source_linux-meta.py
6.04
KB
-rw-r--r--
2025-07-11 17:07
source_linux-meta.pyc
4.39
KB
-rw-r--r--
2025-07-15 07:05
source_linux-nexus7.py
948
B
-rw-r--r--
2025-07-11 17:07
source_linux-nexus7.pyc
1.11
KB
-rw-r--r--
2025-07-15 07:05
source_linux.py
6.04
KB
-rw-r--r--
2025-07-11 17:07
source_linux.pyc
4.38
KB
-rw-r--r--
2025-07-15 07:05
source_mdadm.py
2.05
KB
-rw-r--r--
2017-11-08 14:18
source_mysql-5.7.py
2.46
KB
-rw-r--r--
2017-02-03 18:32
source_ntp.py
485
B
-rw-r--r--
2020-01-07 16:08
source_plymouth.py
1.26
KB
-rw-r--r--
2018-05-09 13:58
source_samba.py
5.97
KB
-rw-r--r--
2021-04-14 18:00
source_shadow.py
720
B
-rw-r--r--
2019-03-26 20:34
source_sudo.py
1.13
KB
-rw-r--r--
2021-01-20 18:08
source_ubiquity.py
7.38
KB
-rw-r--r--
2025-07-11 17:07
source_ubiquity.pyc
5.98
KB
-rw-r--r--
2025-07-15 07:05
source_ubuntu-release-upgrader.py
2.07
KB
-rw-r--r--
2019-10-02 16:08
source_unattended-upgrades.py
705
B
-rw-r--r--
2021-02-24 02:21
source_update-manager.py
1.21
KB
-rw-r--r--
2019-08-20 13:59
systemd.py
866
B
-rw-r--r--
2021-04-02 17:50
udev.py
455
B
-rw-r--r--
2021-04-02 17:50
ureadahead.py
475
B
-rw-r--r--
2019-04-23 17:22
Save
Rename
'''apport package hook for mdadm (c) 2009-2016 Canonical Ltd. Author: Steve Beattie <sbeattie@ubuntu.com> Based on the ideas in debian's /usr/share/bug/mdadm/script ''' from apport.hookutils import * import os import re import glob import gzip import subprocess import sys def get_initrd_files(pattern): '''Extract listing of files from the current initrd which match a regex. pattern should be a "re" object. ''' (_, _, release, _, _) = os.uname() try: fd = gzip.GzipFile('/boot/initrd.img-' + release, 'rb') # universal_newlines needs to be False here as we're passing # binary data from gzip into cpio, which means we'll need to # decode the bytes into strings later when reading the output cpio = subprocess.Popen(['cpio', '-t'], close_fds=True, stderr=subprocess.STDOUT, stdin=subprocess.PIPE, stdout=subprocess.PIPE, universal_newlines=False) except OSError as e: return 'Error: ' + str(e) out = cpio.communicate(fd.read())[0].decode(sys.stdout.encoding, errors='replace') if cpio.returncode != 0: return 'Error: command %s failed with exit code %i %' % ( 'cpio', cpio.returncode, out) lines = ''.join([l for l in out.splitlines(True) if pattern.search(l)]) return lines def add_info(report): attach_hardware(report) attach_file(report, '/proc/mounts', 'ProcMounts') attach_file_if_exists(report, '/etc/mdadm/mdadm.conf', 'mdadm.conf') attach_file(report, '/proc/mdstat', 'ProcMDstat') attach_file(report, '/proc/partitions', 'ProcPartitions') attach_file(report, '/etc/blkid.tab', 'etc.blkid.tab') attach_file_if_exists(report, '/boot/grub/menu.lst', 'GrubMenu.lst') attach_file_if_exists(report, '/etc/lilo.conf', 'lilo.conf') devices = glob.glob("/dev/[hs]d*") for dev in devices: report['MDadmExamine' + path_to_key(dev)] = command_output(['/sbin/mdadm', '-E', dev]) initrd_re = re.compile('md[a/]') report['initrd.files'] = get_initrd_files(initrd_re)