!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/   drwxrwxr-x
Free 28.26 GB of 117.98 GB (23.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     move_form.cgi (1.85 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display server re-parent form

require './virtual-server-lib.pl';
&ReadParse();
$d = &get_domain($in{'dom'});
&can_move_domain($d) || &error($text{'move_ecannot'});
&ui_print_header(&domain_in($d), $text{'move_title'}, "", "move");

if ($d->{'alias'}) {
    print "$text{'move_desc3'}<p>\n";
    }
elsif (!$d->{'parent'}) {
    print "$text{'move_desc'}<p>\n";
    }
else {
    print "$text{'move_desc2'}<p>\n";
    }
print &ui_form_start("move.cgi");
print &ui_hidden("dom", $d->{'id'}),"\n";
print &ui_table_start($text{'move_header'}, undef, 2);

# Domain being moved
print &ui_table_row($text{'move_dom'},
    "<tt>".&show_domain_name($d)."</tt>");

if ($d->{'alias'}) {
    # New alias target
    @pdoms = sort { lc($a->{'dom'}) cmp lc($b->{'dom'}) }
              grep { !$_->{'alias'} && can_config_domain($_) }
               &list_domains();
    print &ui_table_row($text{'move_target2'},
        &ui_select("parent", undef,
        [ map { [ $_->{'id'}, &show_domain_name($_) ] } @pdoms ]));
}
else {
    # New parent
    @pdoms = sort { lc($a->{'dom'}) cmp lc($b->{'dom'}) }
              grep { !$_->{'parent'} && &can_config_domain($_) }
                   &list_visible_domains();
    if ($d->{'parent'}) {
        @pdoms = grep { $_->{'id'} ne $d->{'parent'} } @pdoms;
        }
    else {
        @pdoms = grep { $_->{'id'} ne $d->{'id'} } @pdoms;
        }
    print &ui_table_row($text{'move_target'},
        &ui_select("parent", undef,
        [ $d->{'parent'} ? ( [ 0, $text{'move_up'} ] ) : ( ),
          map { [ $_->{'id'}, &show_domain_name($_) ] } @pdoms ]));

    # Options for making a new parent domain
    if ($d->{'parent'}) {
        print &ui_table_row($text{'move_newuser'},
            &ui_textbox("newuser", $d->{'user'}, 20));

        print &ui_table_row($text{'move_newpass'},
            &ui_password("newpass", $d->{'pass'}, 20));
        }
    }

print &ui_table_end();
print &ui_form_end([ [ "move", $text{'move_ok'} ] ]);

&ui_print_footer(&domain_footer_link($d),
         "", $text{'index_return'});

:: 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.0037 ]--