!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/5.6.40 

uname -a: Linux cpanel06wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24
01:42:00 EDT 2020 x86_64
 

uid=851(cp949260) gid=853(cp949260) groups=853(cp949260) 

Safe-mode: OFF (not secure)

/usr/share/perl5/   drwxr-xr-x
Free 237.49 GB of 981.82 GB (24.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     finddepth.pl (1.1 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# Usage:
#    require "finddepth.pl";
#
#    &finddepth('/foo','/bar');
#
#    sub wanted { ... }
#        where wanted does whatever you want.  $dir contains the
#        current directory name, and $_ the current filename within
#        that directory.  $name contains "$dir/$_".  You are cd'ed
#        to $dir when the function is called.  The function may
#        set $prune to prune the tree.
#
# This library is primarily for find2perl, which, when fed
#
#   find2perl / -name .nfs\* -mtime +7 -exec rm -f {} \; -o -fstype nfs -prune
#
# spits out something like this
#
#    sub wanted {
#        /^\.nfs.*$/ &&
#        (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) &&
#        int(-M _) > 7 &&
#        unlink($_)
#        ||
#        ($nlink || (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_))) &&
#        $dev < 0 &&
#        ($prune = 1);
#    }


use File::Find ();

*name        = *File::Find::name;
*prune        = *File::Find::prune;
*dir        = *File::Find::dir;
*topdir        = *File::Find::topdir;
*topdev        = *File::Find::topdev;
*topino        = *File::Find::topino;
*topmode    = *File::Find::topmode;
*topnlink    = *File::Find::topnlink;

sub finddepth {
    &File::Find::finddepth(\&wanted, @_);
}

1;

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.1797 ]--