-
Bug
-
Resolution: Unresolved
-
Major
-
6.19.0
-
1
-
False
-
Important
-
Proton Prioritized Backlog
-
sat-proton
-
None
-
None
-
None
-
None
Steps to Reproduce:
- Configure Red Hat Lightspeed in Satellite 6.19.
- Configure the Insights Client on hosts registered with Satellite.
- Navigate to Satellite WebUI → Red Hat Lightspeed → Vulnerability page. Click Export Data.
- Click Export to JSON and save the JSON file.
- Attempt to parse the exported JSON file using jq:
$ jq '.' cves-2026-02-24T11_06_42.639Z.json
jq: parse error: Invalid numeric literal at line 1, column 8
# Inspecting the file:
$ file cves-2026-02-24T11_06_42.639Z.json
cves-2026-02-24T11_06_42.639Z.json: ASCII text, with very long lines (367), with no line terminators
Observed Behavior:
The exported JSON file cannot be parsed by standard JSON parsers (jq, python3 -m json.tool) due to invalid formatting.
Expected Behavior:
The exported JSON file should be valid and parseable with standard JSON tools.
Notes / Additional Info:
- File contains a single very long line without line breaks.
- Parsing fails immediately at the first few characters, suggesting either invalid content or formatting issue.