Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.137.185.202
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
usr /
share /
apport /
package-hooks /
[ HOME SHELL ]
Name
Size
Permission
Action
cloud-init.py
175
B
-rw-r--r--
isc-dhcp-client.py
1.75
KB
-rw-r--r--
openssh-client.py
1.14
KB
-rw-r--r--
openssh-server.py
1011
B
-rw-r--r--
source_apparmor.py
2.82
KB
-rw-r--r--
source_console-setup.py
374
B
-rw-r--r--
source_shadow.py
720
B
-rw-r--r--
source_sudo.py
1.13
KB
-rw-r--r--
systemd.py
866
B
-rw-r--r--
udev.py
455
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : openssh-server.py
#!/usr/bin/python '''apport hook for openssh-server (c) 2010 Canonical Ltd. Author: Chuck Short <chuck.short@canonical.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See http://www.gnu.org/copyleft/gpl.html for the full text of the license. ''' from apport.hookutils import * def add_info(report, ui): response = ui.yesno("The contents of your /etc/ssh/sshd_config file " "may help developers diagnose your bug more " "quickly. However, it may contain sensitive " "information. Do you want to include it in your " "bug report?") if response == None: # user cancelled raise StopIteration elif response == True: report['SSHDConfig'] = root_command_output(['/usr/sbin/sshd', '-T'])
Close