Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2025-62515

pyquokka is Vulnerable to Remote Code Execution by Pickle Deserialization via FlightServer
Back to all
CVE

CVE-2025-62515

pyquokka is Vulnerable to Remote Code Execution by Pickle Deserialization via FlightServer

Description

In the FlightServer class of the pyquokka framework, the do_action() method directly uses pickle.loads() to deserialize action bodies received from Flight clients without any sanitization or validation, which results in a remote code execution vulnerability. The vulnerable code is located in pyquokka/flight.py at line 283, where arbitrary data from Flight clients is directly passed to pickle.loads().

 

Even more concerning, when FlightServer is configured to listen on 0.0.0.0 (as shown in the provided server example at line 339), this allows attackers across the entire network to perform arbitrary remote code execution by sending malicious pickled payloads through the set_configs action.

In addition, the functions cachegarbagecollect, doput, and doget also contain vulnerability points where pickle.loads is used to deserialize untrusted remote data. Please review and fix these issues accordingly. This report uses the set_configs action as an example.

Proof of Concept

 

  • Step 1:

The victim user starts a FlightServer that binds to the network interface, e.g.:

server = FlightServer("0.0.0.0", location = "grpc+tcp://0.0.0.0:5005")
server.serve()
  • Step 2:

The attacker can then send malicious pickle dump data through the Flight client connection. The provided PoC demonstrates how an attacker can execute "ls -l" command:

class RCE:
def __reduce__(self):
 import os
return (os.system, ('ls -l',))
import pickle
action_body = pickle.dumps(RCE())
 action = pyarrow.flight.Action("set_configs", action_body)

When the server receives this payload, the FlightServer.doaction() method calls pickle.loads(action.body.topybytes()) on line 283, which triggers the execution of the malicious code through Python's pickle deserialization mechanism. The provided flight_client.py demonstrates a complete PoC that connects to the vulnerable server and executes arbitrary commands through the pickle deserialization vulnerability.

When the vulnerability is reproduced, python flight.py can be run to init the server and then run flight_client.py. There is an attack demo in the attachment.

Impact

Remote code execution on the victim's machine over the network. Once the victim starts the FlightServer with network binding (especially 0.0.0.0), an attacker on the network can gain arbitrary code execution by connecting to the Flight endpoint and sending crafted pickle payloads through the set_configs action. This vulnerability allows for:

  • Complete system compromise
  • Data exfiltration
  • Lateral movement within the network
  • Denial of service attacks
  • Installation of persistent backdoors

Mitigation

  1. Replace unsafe deserialization: Replace pickle.loads() with safer alternatives such as:
  • JSON serialization for simple data structures
  • Protocol Buffers or MessagePack for complex data
  • If pickle must be used, implement a custom Unpickler with a restricted find_class() method that only allows whitelisted classes
  1. Network security
  • If the service is intended for internal use only, bind to localhost (127.0.0.1) instead of 0.0.0.0
  • Implement authentication and authorization mechanisms
  1. Security warnings: When starting the service on public interfaces, display clear security warnings to inform users about the risks.

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Related Resources

No items found.

References

https://github.com/marsupialtail/quokka/security/advisories/GHSA-f74j-gffq-vm9p, https://nvd.nist.gov/vuln/detail/CVE-2025-62515, https://github.com/marsupialtail/quokka, https://github.com/marsupialtail/quokka/blob/master/pyquokka/flight.py#L283, https://pypi.org/project/pyquokka, https://github.com/advisories/GHSA-f74j-gffq-vm9p

Severity

9.8

CVSS Score
0
10

Basic Information

Base CVSS
9.8
EPSS Probability
0.00761%
EPSS Percentile
0.50894%
Introduced Version
0,0.0.8
Fix Available

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading