!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/share/webmin/virtual-server/scripts/   drwxrwxr-x
Free 28.6 GB of 117.98 GB (24.24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     phppgadmin.pl (6.06 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

# script_phppgadmin_desc()
sub script_phppgadmin_desc
{
return "phpPgAdmin";
}

sub script_phppgadmin_uses
{
return ( "php" );
}

# script_phppgadmin_longdesc()
sub script_phppgadmin_longdesc
{
return "A browser-based PostgreSQL database management interface";
}

# script_phppgadmin_versions()
sub script_phppgadmin_versions
{
return ( "7.13.0" );
}

sub script_phppgadmin_release
{
return 2;    # Fix download URL
}

sub script_phppgadmin_category
{
return "Database";
}

sub script_phppgadmin_php_vers
{
return ( 5 );
}

sub script_phppgadmin_testable
{
return 1;
}

sub script_phppgadmin_php_modules
{
return ("pgsql");
}

# Must have at least one existing DB
sub script_phppgadmin_depends
{
local ($d, $ver) = @_;
&has_domain_databases($d, [ "postgres" ], 1) ||
    return ("phpPgAdmin requires a PostgreSQL database");
return ( );
}

sub script_phppgadmin_php_fullver
{
return 7.2;
}

# script_phppgadmin_params(&domain, version, &upgrade-info)
# Returns HTML for table rows for options for installing PHP-NUKE
sub script_phppgadmin_params
{
local ($d, $ver, $upgrade) = @_;
local $rv;
local $hdir = &public_html_dir($d, 1);
if ($upgrade) {
    # Options are fixed when upgrading
    $rv .= &ui_table_row("Default database", $upgrade->{'opts'}->{'db'});
    local $dir = $upgrade->{'opts'}->{'dir'};
    $dir =~ s/^$d->{'home'}\///;
    $rv .= &ui_table_row("Install directory", $dir);
    }
else {
    # Show editable install options
    local @dbs = &domain_databases($d, [ "postgres" ]);
    $rv .= &ui_table_row("Default database to manage",
             &ui_select("db", undef,
            [ [ "template1", "<PostgreSQL default>" ],
              map { [ $_->{'name'} ] } @dbs ]));
    $rv .= &ui_table_row("Install sub-directory under <tt>$hdir</tt>",
                 &ui_opt_textbox("dir", &substitute_scriptname_template("phppgadmin", $d), 30, "At top level"));
    }
return $rv;
}

# script_phppgadmin_parse(&domain, version, &in, &upgrade-info)
# Returns either a hash ref of parsed options, or an error string
sub script_phppgadmin_parse
{
local ($d, $ver, $in, $upgrade) = @_;
if ($upgrade) {
    # Options are always the same
    return $upgrade->{'opts'};
    }
else {
    local $hdir = &public_html_dir($d, 0);
    $in{'dir_def'} || $in{'dir'} =~ /\S/ && $in{'dir'} !~ /\.\./ ||
        return "Missing or invalid installation directory";
    local $dir = $in{'dir_def'} ? $hdir : "$hdir/$in{'dir'}";
    return { 'db' => $in{'db'},
         'dir' => $dir,
         'path' => $in{'dir_def'} ? "/" : "/$in{'dir'}", };
    }
}

# script_phppgadmin_check(&domain, version, &opts, &upgrade-info)
# Returns an error message if a required option is missing or invalid
sub script_phppgadmin_check
{
local ($d, $ver, $opts, $upgrade) = @_;
$opts->{'dir'} =~ /^\// || return "Missing or invalid install directory";
#$opts->{'db'} || return "Missing database";
$opts->{'db'} ||= "template1";
if (-r "$opts->{'dir'}/conf/config.inc.php") {
    return "phpPgAdmin appears to be already installed in the selected directory";
    }
return undef;
}

# script_phppgadmin_files(&domain, version, &opts, &upgrade-info)
# Returns a list of files needed by PHP-Nuke, each of which is a hash ref
# containing a name, filename and URL
sub script_phppgadmin_files
{
local ($d, $ver, $opts, $upgrade) = @_;
local $uver = $ver;
$uver =~ s/\./-/g;
local @files = ( { 'name' => "source",
       'file' => "phpPgAdmin-$ver.tar.gz",
       'url' => "https://github.com/phppgadmin/phppgadmin/archive/REL_$uver.tar.gz" 
    } );
return @files;
}

sub script_phppgadmin_commands
{
return ("tar", "gunzip");
}

# script_phppgadmin_install(&domain, version, &opts, &files, &upgrade-info)
# Actually installs phpPgAdmin, and returns either 1 and an informational
# message, or 0 and an error
sub script_phppgadmin_install
{
local ($d, $version, $opts, $files, $upgrade) = @_;
local ($out, $ex);
local @dbs = split(/\s+/, $opts->{'db'});
local $dbuser = &postgres_user($d);
local $dbpass = &postgres_pass($d, 1);
local $dbhost = &get_database_host("postgres", $d);

# Extract tar file to temp dir and copy to target
local $temp = &transname();
local $err = &extract_script_archive($files->{'source'}, $temp, $d,
                                     $opts->{'dir'}, "phppgadmin-*");
$err && return (0, "Failed to extract source : $err");
local $cfileorig = "$opts->{'dir'}/conf/config.inc.php-dist";
local $cfile = "$opts->{'dir'}/conf/config.inc.php";

# Copy and update the config file
if (!-r $cfile) {
    &run_as_domain_user($d, "cp ".quotemeta($cfileorig)." ".
                      quotemeta($cfile));
    }
local $lref = &read_file_lines_as_domain_user($d, $cfile);
local $l;
foreach $l (@$lref) {
    if ($l =~ /^\s*\$conf\['servers'\]\[0\]\['defaultdb'\]/) {
        $l = "\$conf['servers'][0]['defaultdb'] = '$opts->{'db'}';";
        }
    if ($l =~ /^\s*\$conf\['servers'\]\[0\]\['host'\]/ &&
        $dbhost ne 'localhost') {
        $l = "\$conf['servers'][0]['host'] = '$dbhost';";
        }
    if ($l =~ /^\s*\$conf\['owned_only'\]/) {
        $l = "\$conf['owned_only'] = true;";
        print STDERR "fixed owned_only\n";
        }
    }
&flush_file_lines_as_domain_user($d, $cfile);

# Return a URL for the user
local $url = &script_path_url($d, $opts);
local $rp = $opts->{'dir'};
$rp =~ s/^$d->{'home'}\///;
return (1, "phpPgAdmin installation complete. It can be accessed at <a target=_blank href='$url'>$url</a>.", "Under $rp", $url, $dbuser, $dbpass);
}

# script_phppgadmin_uninstall(&domain, version, &opts)
# Un-installs a phpPgAdmin installation, by deleting the directory.
# Returns 1 on success and a message, or 0 on failure and an error
sub script_phppgadmin_uninstall
{
local ($d, $version, $opts) = @_;

# Remove the contents of the target directory
local $derr = &delete_script_install_directory($d, $opts);
return (0, $derr) if ($derr);

return (1, "phpPgAdmin directory deleted.");
}

# script_phppgadmin_latest(version)
# Returns a URL and regular expression or callback func to get the version
sub script_phppgadmin_latest
{
local ($ver) = @_;
return ( "https://github.com/phppgadmin/phppgadmin/tags",
     sub { my ($d, $v) = @_;
           $d =~ /REL_([0-9\.\-]+)/ || return ();
           my $rv = $1;
           $rv =~ s/\-/\./g;
           return ($rv); } );
}

sub script_phppgadmin_site
{
return 'https://github.com/phppgadmin/phppgadmin';
}

sub script_phppgadmin_gpl
{
return 1;
}

1;


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0032 ]--