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 /
Apache /
Session /
Generate /
[ HOME SHELL ]
Name
Size
Permission
Action
MD5.pm
2.79
KB
-rw-r--r--
ModUniqueId.pm
1.35
KB
-rw-r--r--
ModUsertrack.pm
2.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ModUniqueId.pm
package Apache::Session::Generate::ModUniqueId; use strict; use vars qw($VERSION); $VERSION = '0.02'; sub generate { my $session = shift; unless (exists $ENV{UNIQUE_ID}) { require Carp; Carp::croak('Can\'t get UNIQUE_ID env variable. Make sure mod_unique_id is enabled.'); } $session->{data}->{_session_id} = $ENV{UNIQUE_ID}; } sub validate { my $session = shift; $session->{data}->{_session_id} =~ /^[A-Za-z0-9@\-]+$/ or die "invalid session id: $session->{data}->{_session_id}."; } 1; __END__ =head1 NAME Apache::Session::Generate::ModUniqueId - mod_unique_id for session ID generation =head1 SYNOPSIS use Apache::Session::Flex; tie %session, 'Apache::Session::Flex', $id, { Store => 'MySQL', Lock => 'Null', Generate => 'ModUniqueId', Serialize => 'Storable', }; =head1 DESCRIPTION Apache::Session::Generate::ModUniqueId enables you to use unique id generated by mod_unique_id as session id for Apache::Session framework. Using mod_unique_id would ensure higher level uniquess of id. =head1 AUTHOR Tatsuhiko Miyagawa <miyagawa@bulknews.net> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<Apache::Session>, L<Apache::Session::Flex>, mod_unique_id =cut
Close