Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.138.141.138
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
usr /
share /
perl5 /
Debconf /
FrontEnd /
[ HOME SHELL ]
Name
Size
Permission
Action
Kde
[ DIR ]
drwxr-xr-x
Dialog.pm
7.22
KB
-rw-r--r--
Editor.pm
2.11
KB
-rw-r--r--
Gnome.pm
5.13
KB
-rw-r--r--
Kde.pm
4.31
KB
-rw-r--r--
Noninteractive.pm
734
B
-rw-r--r--
Passthrough.pm
6.29
KB
-rw-r--r--
Readline.pm
3.53
KB
-rw-r--r--
ScreenSize.pm
881
B
-rw-r--r--
Teletype.pm
1.54
KB
-rw-r--r--
Text.pm
155
B
-rw-r--r--
Web.pm
2.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Gnome.pm
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::FrontEnd::Gnome; use strict; use utf8; use Debconf::Gettext; use Debconf::Config; use Debconf::Encoding qw(to_Unicode); use base qw{Debconf::FrontEnd}; our @ARGV_for_gnome=('--sm-disable'); sub create_assistant_page { my $this=shift; $this->assistant_page(Gtk2::VBox->new); $this->assistant->append_page($this->assistant_page); if ($this->logo) { $this->assistant->set_page_header_image($this->assistant_page, $this->logo); } $this->configure_assistant_page; $this->assistant_page->show_all; } sub configure_assistant_page { my $this=shift; $this->assistant->set_page_title($this->assistant_page, to_Unicode($this->title)); if ($this->capb_backup) { $this->assistant->set_page_type($this->assistant_page, 'content'); } else { $this->assistant->set_page_type($this->assistant_page, 'intro'); } $this->assistant->set_page_complete($this->assistant_page, 1); } sub reset_assistant_page { my $this=shift; $this->assistant_page($this->assistant->get_nth_page($this->assistant->get_current_page)); foreach my $element ($this->assistant_page->get_children) { $this->assistant_page->remove($element); } } my $prev_page = 0; sub prepare_callback { my ($assistant, $page, $this) = @_; my $current_page = $assistant->get_current_page; if ($prev_page < $current_page) { $this->goback(0); if (Gtk2->main_level) { Gtk2->main_quit; } } elsif ($prev_page > $current_page) { $this->goback(1); if (Gtk2->main_level) { Gtk2->main_quit; } } $prev_page = $current_page; } sub forward_page_func { my ($current_page, $assistant) = @_; if ($current_page == $assistant->get_n_pages - 1) { return 0; } else { return $current_page + 1; } } sub init { my $this=shift; if (fork) { wait(); # for child if ($? != 0) { die "DISPLAY problem?\n"; } } else { use Gtk2; @ARGV=@ARGV_for_gnome; # temporary change at first Gtk2->init; my $window = Gtk2::Window->new('toplevel'); exit(0); # success } eval q{use Gtk2;}; die "Unable to load Gtk -- is libgtk2-perl installed?\n" if $@; my @gnome_sucks=@ARGV; @ARGV=@ARGV_for_gnome; Gtk2->init; @ARGV=@gnome_sucks; $this->SUPER::init(@_); $this->interactive(1); $this->capb('backup'); $this->need_tty(0); $this->assistant(Gtk2::Assistant->new); $this->assistant->set_position("center"); $this->assistant->set_default_size(600, 400); my $hostname = `hostname`; chomp $hostname; $this->assistant->set_title(to_Unicode(sprintf(gettext("Debconf on %s"), $hostname))); $this->assistant->signal_connect("delete_event", sub { exit 1 }); my $distribution=''; if (system('type lsb_release >/dev/null 2>&1') == 0) { $distribution=lc(`lsb_release -is`); chomp $distribution; } elsif (-e '/etc/debian_version') { $distribution='debian'; } my $logo="/usr/share/pixmaps/$distribution-logo.png"; if (-e $logo) { $this->logo(Gtk2::Gdk::Pixbuf->new_from_file($logo)); } $this->assistant->signal_connect("cancel", sub { exit 1 }); $this->assistant->signal_connect("close", sub { exit 1 }); $this->assistant->signal_connect("prepare", \&prepare_callback, $this); $this->assistant->set_forward_page_func(\&forward_page_func, $this->assistant); $this->create_assistant_page(); $this->assistant->signal_connect("realize", sub { $this->assistant->window->set_functions(["resize","move","maximize"]) }); $this->assistant->get_cancel_button->signal_connect("show", sub { $this->assistant->get_cancel_button->hide }); $this->assistant->show; $this->assistant->get_cancel_button->hide; } sub go { my $this=shift; my @elements=@{$this->elements}; $this->reset_assistant_page; my $interactive=''; foreach my $element (@elements) { next unless $element->hbox; $interactive=1; $this->assistant_page->pack_start($element->hbox, $element->fill, $element->expand, 0); } if ($interactive) { $this->configure_assistant_page; if ($this->assistant->get_current_page == $this->assistant->get_n_pages - 1) { $this->create_assistant_page(); } Gtk2->main; } foreach my $element (@elements) { $element->show; } return '' if $this->goback; return 1; } sub progress_start { my $this=shift; $this->SUPER::progress_start(@_); $this->reset_assistant_page; my $element=$this->progress_bar; $this->assistant_page->pack_start($element->hbox, $element->fill, $element->expand, 0); $this->configure_assistant_page; $this->assistant->set_page_complete($this->assistant_page, 0); $this->assistant->show_all; while (Gtk2->events_pending) { Gtk2->main_iteration; } } sub progress_set { my $this=shift; my $ret=$this->SUPER::progress_set(@_); while (Gtk2->events_pending) { Gtk2->main_iteration; } return $ret; } sub progress_info { my $this=shift; my $ret=$this->SUPER::progress_info(@_); while (Gtk2->events_pending) { Gtk2->main_iteration; } return $ret; } sub progress_stop { my $this=shift; $this->SUPER::progress_stop(@_); while (Gtk2->events_pending) { Gtk2->main_iteration; } if ($this->assistant->get_current_page == $this->assistant->get_n_pages - 1) { $this->create_assistant_page(); } $this->assistant->set_current_page($prev_page + 1); } 1
Close