Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
NeedRestart /
UI /
[ HOME SHELL ]
Name
Size
Permission
Action
Debconf.pm
6.45
KB
-rw-r--r--
Ubuntu.pm
3.71
KB
-rw-r--r--
stdio.pm
5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Ubuntu.pm
# needrestart - Restart daemons after library updates - Ubuntu backend # # Authors: # Thomas Liske <thomas@fiasko-nw.net> # Simon Chopin <simon.chopin@canonical.com> # # Copyright Holder: # 2013 - 2022 (C) Thomas Liske [http://fiasko-nw.net/~thomas/] # 2024 (C) Canonical Ltd # # License: # 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. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this package; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # package NeedRestart::UI::Ubuntu; use strict; use warnings; use parent qw(NeedRestart::UI); use NeedRestart qw(:ui); use Locale::TextDomain 'needrestart'; needrestart_ui_register(__PACKAGE__, 0); use constant { REBOOT_FILE => '/run/reboot-required' }; sub _write_reboot_file { my $self = shift; my $output = shift; open(my $out_fd, '>', REBOOT_FILE); print $out_fd "*** " . __("System restart required") . " ***\n"; print $out_fd $output; close($out_fd); } sub _announce { my $self = shift; my $message = shift; my %vars = @_; my $output = __x("Pending kernel upgrade!\nRunning kernel version:\n {kversion}\nDiagnostics:\n {message}\n", kversion => $vars{KVERSION}, message => $message, ); $self->wprint(\*STDOUT, '', '', "\n" . $output . __"\nRestarting the system to load the new kernel will not be handled automatically, so you should consider rebooting.\n"); } sub announce_abi { my $self = shift; my %vars = @_; $self->_announce(__ 'The currently running kernel has an ABI compatible upgrade pending.', %vars); } sub announce_ver { my $self = shift; my %vars = @_; $self->_announce(__x("The currently running kernel version is not the expected kernel version {eversion}.", eversion => $vars{EVERSION}, ), %vars); } sub announce_ehint { my $self = shift; my %vars = @_; die "This UI is supposed to be used only while in Ubuntu mode."; } sub announce_ucode { my $self = shift; my %vars = @_; my $output = __x("Pending processor microcode upgrade!\nDiagnostics:\n The currently running processor microcode revision is {current} which is not the expected microcode revision {avail}.\n", current => $vars{CURRENT}, avail => $vars{AVAIL}, ); $self->_write_reboot_file($output); print "\n"; $self->wprint(\*STDOUT, '', '', "\n" . $output . __"\nRestarting the system to load the new kernel will not be handled automatically, so you should consider rebooting.\n"); } sub notice($$) { my $self = shift; my $out = shift; return unless($self->{verbosity}); my $indent = ' '; $indent .= $1 if($out =~ /^(\s+)/); $self->wprint(\*STDOUT, '', $indent, "$out\n"); } sub vspace { my $self = shift; return unless($self->{verbosity}); $self->SUPER::vspace(\*STDOUT); } sub command { my $self = shift; my $out = shift; print "$out\n"; } sub query_pkgs($$$$$$) { my $self = shift; my $out = shift; my $def = shift; my $pkgs = shift; my $overrides = shift; my $cb = shift; die "Interactive mode not supported by this UI."; } sub query_conts($$$$$$) { my $self = shift; die "Interactive mode not supported by this UI."; } 1;
Close