Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.17 KB

README.md

File metadata and controls

26 lines (18 loc) · 1.17 KB

rev-door

rev-door is a small backdoor with only ONE line of PHP code, which takes command from POST data and execute it on server side. It is like other simple GET based backdoor but the only difference is it uses POST request to receive commands.

The difference

The regular GET backdoors are executed with get request like http://www.example.com/get.php?cmd=ls -la But this backdoor cannot be executed by this way, thus it is more secure in a sense to use because at first glance (at least to me) it seems useless backdoor. The link is just http://www.example.com/post.php. No GET parameter.

So how to use it?

I think you have Mozilla Firefox and HackBar addon ready.

  • Now go to your backdoor link. (in my case it is http://localhost/ss.php)
  • Then on HackBar click Load URL
  • Then tick the Enable Post data
  • Now in the Post Data textbox write commandz=ls -la (Because the POST request parameter is "commandz" in the backdoor script)
  • Now click Execute

You see the result????? That's it!

Demo