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 /
Unicode /
Stringprep /
[ HOME SHELL ]
Name
Size
Permission
Action
BiDi.pm
5.59
KB
-rw-r--r--
Mapping.pm
60.75
KB
-rw-r--r--
Prohibited.pm
4.32
KB
-rw-r--r--
Unassigned.pm
5.2
KB
-rw-r--r--
_Common.pm
1.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _Common.pm
package Unicode::Stringprep::_Common; require 5.008_003; use strict; use utf8; use warnings; use Exporter; our $VERSION = "1.10"; $VERSION = eval { $VERSION }; our @ISA = ('Exporter'); our @EXPORT = ('_mk_set', '_mk_map'); sub _mk_set { my @data = (); foreach my $line (split /\n/, shift) { my($from,$comment) = split /;/, $line; $from =~ s/[^0-9A-Z-]//gi; ($from,my $to) = split(/-/, $from, 2); push @data, (hex($from), ($to ? hex($to) : undef)); } return @data; }; sub _mk_map { my @data = (); foreach my $line (split /\n/, shift) { my($from,$to,$comment) = split /;/, $line; $from =~ s/[^0-9A-F]//gi; $to =~ s/[^0-9A-F ]//gi; push @data, hex($from), join('',map { $_ eq '' ? '' : chr(hex($_)) } split(' ', $to)); } return @data; }; 1; =head1 NAME Unicode::Stringprep::_Common - Internal functions for C<Unicode::Stringprep::*> =head1 AUTHOR Claus FE<auml>rber E<lt>CFAERBER@cpan.orgE<gt> =head1 LICENSE Copyright 2007-2009 Claus FE<auml>rber. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Close