shell bypass 403

GrazzMean Shell

Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 3.15.38.5
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : DBD::Multiplex.3pm
.\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings.  \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote.  \*(C+ will
.\" give a nicer C++.  Capital omega is used to do unbreakable dashes and
.\" therefore won't be available.  \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
.    ds -- \(*W-
.    ds PI pi
.    if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
.    if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\"  diablo 12 pitch
.    ds L" ""
.    ds R" ""
.    ds C` ""
.    ds C' ""
'br\}
.el\{\
.    ds -- \|\(em\|
.    ds PI \(*p
.    ds L" ``
.    ds R" ''
.    ds C`
.    ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD.  Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
.    if \nF \{\
.        de IX
.        tm Index:\\$1\t\\n%\t"\\$2"
..
.        if !\nF==2 \{\
.            nr % 0
.            nr F 2
.        \}
.    \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "DBD::Multiplex 3"
.TH DBD::Multiplex 3 "2010-01-26" "perl v5.26.3" "User Contributed Perl Documentation"
.\" For nroff, turn off justification.  Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
DBD::Multiplex \- A multiplexing driver for the DBI.
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 1
\& use strict;
\&
\& use DBI;
\&
\& my ($dsn1, $dsn2, $dsn3, $dsn4, %attr);
\&
\& # Define four databases, in this case, four Postgres databases.
\& 
\& $dsn1 = \*(Aqdbi:Pg:dbname=aaa;host=10.0.0.1;mx_id=dbaaa1\*(Aq;
\& $dsn2 = \*(Aqdbi:Pg:dbname=bbb;host=10.0.0.2;mx_id=dbbbb2\*(Aq;
\& $dsn3 = \*(Aqdbi:Pg:dbname=ccc;host=10.0.0.3;mx_id=dbccc3\*(Aq;
\& $dsn4 = \*(Aqdbi:Pg:dbname=ddd;host=10.0.0.4;mx_id=dbddd4\*(Aq;
\&
\& # Define a callback error handler.
\& 
\& sub MyErrorProcedure {
\&        my ($mx_id, $error_number, $error_string) = @_;
\&        my ($filepath, $extension) = (\*(Aq/tmp/\*(Aq, \*(Aq.txt\*(Aq);
\&        open (TFH, ">>$filepath$mx_id$extension");
\&        print (TFH "$error_number\et$error_string\en");
\&        close (TFH);
\&        return 1;
\& }
\&
\& # Define the pool of datasources.
\& 
\& %attr = (
\&        \*(Aqmx_dsns\*(Aq => [$dsn1, $dsn2, $dsn3, $dsn4],
\&        \*(Aqmx_master_id\*(Aq => \*(Aqdbaaa1\*(Aq,
\&        \*(Aqmx_connect_mode\*(Aq => \*(Aqignore_errors\*(Aq,
\&        \*(Aqmx_exit_mode\*(Aq => \*(Aqfirst_success\*(Aq,
\&        \*(Aqmx_error_proc\*(Aq => \e&MyErrorProcedure,
\& );
\&
\& # Connect to all four datasources.
\& 
\& $dbh = DBI\->connect("dbi:Multiplex:", \*(Aqusername\*(Aq, \*(Aqpassword\*(Aq, \e%attr); 
\&
\& # See the DBI module documentation for full details.
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
DBD::Multiplex is a Perl module which works with the \s-1DBI\s0 allowing you
to work with multiple datasources using a single \s-1DBI\s0 handle.
.PP
Basically, DBD::Multiplex database and statement handles are parents
that contain multiple child handles, one for each datasource. Method
calls on the parent handle trigger corresponding method calls on
each of the children.
.PP
One use of this module is to mirror the contents of one datasource
using a set of alternate datasources.  For that scenario it can
write to all datasources, but read from only from one datasource.
.PP
Alternatively, where a database already supports replication,
DBD::Multiplex can be used to direct writes to the master and spread
the selects across multiple slaves.
.SH "COMPATIBILITY"
.IX Header "COMPATIBILITY"
A goal of this module is to be compatible with DBD::Proxy / DBI::ProxyServer.
Currently, the 'mx_error_proc' feature generates errors regarding the storage
of \s-1CODE\s0 references within the Storable module used by RPC::PlClient
which in turn is used by DBD::Proxy. Yet it works.
.SH "CONNECTING TO THE DATASOURCES"
.IX Header "CONNECTING TO THE DATASOURCES"
Multiple datasources are specified in the either the \s-1DSN\s0 parameter of
the \s-1DBI\-\s0>\fBconnect()\fR function (separated by the '|' character), 
and/or in the 'mx_dsns' key/value pair (as an array reference) of 
the \e%attr parameter.
.SH "SPECIFIC ATTRIBUTES"
.IX Header "SPECIFIC ATTRIBUTES"
Multiplex attributes are specified in the either the \s-1DSN\s0 parameter of
the \s-1DBI\-\s0>\fBconnect()\fR function (separated from the DSNs by the '#' character), 
and/or in the the \e%attr parameter. Attributes in the \e%attr parameter
will overwrite attributes from the \s-1DSN\s0 parameter.
.PP
The following specific attributes can be set when connecting:
.IP "\fBmx_dsns\fR" 4
.IX Item "mx_dsns"
An array reference of \s-1DSN\s0 strings.
.IP "\fBmx_master_id\fR" 4
.IX Item "mx_master_id"
Specifies which mx_id will be used as the master server for a
master/slave one-way replication scheme.
.IP "\fBmx_connect_mode\fR" 4
.IX Item "mx_connect_mode"
Options available or under consideration:
.Sp
\&\fBreport_errors\fR
.Sp
A failed connection to any of the data sources will generate a \s-1DBI\s0 error.
This is the default.
.Sp
\&\fBignore_errors\fR
.Sp
Failed connections are ignored, forgotten, and therefore, unused.
.IP "\fBmx_exit_mode\fR" 4
.IX Item "mx_exit_mode"
Options available or under consideration:
.Sp
\&\fBfirst_error\fR
.Sp
Execute the requested method against each child handle, stopping 
after the first error, and returning the all of the results.
This is the default.
.Sp
\&\fBfirst_success\fR
.Sp
Execute the requested method against each child handle, stopping after 
the first successful result, and returning only the successful result.
Most appropriate when reading from a set of mirrored datasources.
.Sp
\&\fBfirst_success_random\fR
.Sp
Randomly reorders the list of DSNs, and then connects to them in that order.
Then switches to \fBfirst_success\fR mode. 
You can redefine mx_exit_mode after connecting.
.Sp
.Vb 1
\&         $dbh\->{\*(Aqmx_exit_mode\*(Aq} = \*(Aqlast_result\*(Aq;
.Ve
.Sp
\&\fBlast_result\fR
.Sp
Execute the requested method against each child handle, not stopping after 
any errors, and returning all of the results.
.Sp
\&\fBlast_result_most_common\fR
.Sp
Execute the requested method against each child handle, not stopping after 
the errors, and returning the most common result (eg three-way-voting etc).
Not yet implemented.
.IP "\fBmx_error_proc\fR" 4
.IX Item "mx_error_proc"
A reference to a subroutine which will be executed whenever a \s-1DBI\s0 method 
generates an error when working with a specific datasource. It will be 
passed the \s-1DSN\s0 and 'mx_id' of the datasource, and the \f(CW$DBI::err\fR and \f(CW$DBI::errstr\fR.
.Sp
Define your own subrouine and pass a reference to it, 
or pass a reference to the default error_proc:
.Sp
.Vb 1
\&        \e&DBD::Multiplex::mx_error_subroutine
.Ve
.Sp
Remember that references to subroutines do not include the parentheses.
.PP
In some cases, the exit mode will depend on the method being called.
For example, this module will always execute \f(CW$dbh\fR\->\fBdisconnect()\fR calls 
against each child handle.
.PP
In others, the default will be used, unless the user of the \s-1DBI\s0  
specified the 'mx_exit_mode' when connecting, or later changed 
the 'mx_exit_mode' attribute of a database or statement handle.
.SH "USAGE EXAMPLE"
.IX Header "USAGE EXAMPLE"
Here's an example of using DBD::Multiplex with MySQL's replication scheme.
.PP
MySQL supports one-way replication, which means we run a server as the master 
server and others as slaves which catch up any changes made on the master. 
Any \s-1READ\s0 operations then may be distributed among them (master and slave(s)), 
whereas any \s-1WRITE\s0 operation must \fBonly\fR be directed toward the master. 
Any changes happened on slave(s) will never get synchronized to other servers. 
More detailed instructions on how to arrange such setup can be found at:
.PP
.Vb 1
\& http://dev.mysql.com/doc/mysql/en/Replication.html
.Ve
.PP
Now say we have two servers, one at 10.0.0.1 as a master, and one at 
10.0.0.9 as a slave. The \s-1DSN\s0 for each server may be written like this:
.PP
.Vb 4
\& my (@dsns) = qw{
\&        dbi:mysql:database=test;host=10.0.0.1;mx_id=masterdb
\&        dbi:mysql:database=test;host=10.0.0.9;mx_id=slavedb
\& };
.Ve
.PP
Here we choose easy-to-remember \f(CW\*(C`mx_id\*(C'\fRs: masterdb and slavedb.
You are free to choose alternative names, for example: mst and slv. 
Then we create the \s-1DSN\s0 for DBD::Multiplex by joining them, using the 
pipe character as separator:
.PP
.Vb 3
\& my ($dsn) = \*(Aqdbi:Multiplex:\*(Aq . join(\*(Aq|\*(Aq, @dsns);
\& my ($user) = \*(Aqusername\*(Aq;
\& my ($pass) = \*(Aqpassword\*(Aq;
.Ve
.PP
As a more paranoid practice, configure the 'user's permissions to
allow only SELECTs on the slaves.
.PP
Next, we define the attributes which will affect DBD::Multiplex behaviour:
.PP
.Vb 4
\& my (%attr) = (
\&        \*(Aqmx_exit_mode\*(Aq => \*(Aqfirst_success_random\*(Aq,
\&        \*(Aqmx_master_id\*(Aq => \*(Aqmasterdb\*(Aq,
\& );
.Ve
.PP
These attributes are required for MySQL replication support:
.PP
We set \f(CW\*(C`mx_exit_mode\*(C'\fR to 'first_success_random' which will make
DBD::Multiplex shuffle the \s-1DSN\s0 list order prior to connect,
and afterwards revert to 'first_success'.
.PP
The \f(CW\*(C`mx_master_id\*(C'\fR attribute specifies which \f(CW\*(C`mx_id\*(C'\fR will be recognized
as the master. In our example, this is set to 'masterdb'. This attribute will
ensure that every \s-1WRITE\s0 operation will be executed only on the master server.
Finally, we call \s-1DBI\-\s0>\fBconnect()\fR:
.PP
.Vb 1
\& $dbh = DBI\->connect($dsn, $user, $pass, \e%attr) or die $DBI::errstr;
.Ve
.SH "AUTHORS AND COPYRIGHT"
.IX Header "AUTHORS AND COPYRIGHT"
Copyright (c) 1999,2008, Tim Bunce & Thomas Kishel
.PP
While I defer to Tim Bunce regarding the majority of this module,
feel free to contact me for more information:
.PP
Thomas Kishel
.PP
.Vb 1
\&        tkishel + perl @ gmail . com
.Ve
.PP
(remove spaces)
.PP
You may distribute under the terms of either the \s-1GNU\s0 General Public
License or the Artistic License, as specified in the Perl \s-1README\s0 file.
© 2025 GrazzMean