Skip to content

Fix WhatsApp version check in maintained apps ingestion#48504

Draft
sharon-fdm wants to merge 2 commits into
mainfrom
fix-whatsapp-version-check
Draft

Fix WhatsApp version check in maintained apps ingestion#48504
sharon-fdm wants to merge 2 commits into
mainfrom
fix-whatsapp-version-check

Conversation

@sharon-fdm

@sharon-fdm sharon-fdm commented Jun 30, 2026

Copy link
Copy Markdown
Collaborator

Summary

  • WhatsApp changed their version scheme from 2.x.y.z to 26.x.y
  • The WhatsAppVersionShortener was erroring on versions without the legacy 2. prefix, causing the maintained apps ingestion workflow to panic and fail on main
  • Fix: pass through versions that don't have the 2. prefix instead of erroring

Checklist for submitter

  • Changes file added for user-visible changes in changes/, orbit/changes/ or ee/fleetd-chrome/changes.
  • Input data is properly validated, SELECT * is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters.
  • Timeouts are implemented and retries are limited to avoid infinite loops

Testing

  • Added/updated automated tests
  • QA'd all new/changed functionality manually

🤖 Generated with Claude Code

WhatsApp changed their version scheme from "2.x.y.z" to "26.x.y".
The version shortener was erroring on versions without the legacy "2."
prefix, causing the entire maintained apps ingestion to panic.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@codecov

codecov Bot commented Jun 30, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 67.84%. Comparing base (8e94d5e) to head (02b4e0b).
⚠️ Report is 219 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #48504      +/-   ##
==========================================
+ Coverage   67.32%   67.84%   +0.51%     
==========================================
  Files        3657     3667      +10     
  Lines      231264   233255    +1991     
  Branches    12206    12206              
==========================================
+ Hits       155694   158246    +2552     
+ Misses      61601    60745     -856     
- Partials    13969    14264     +295     
Flag Coverage Δ
backend 69.54% <ø> (+0.60%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@qodo-free-for-open-source-projects

Copy link
Copy Markdown

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: test-go (fleetctl, mysql:8.0.44) / test

Failed stage: Run Go Tests [❌]

Failed test name: TestIntegrationsVulnerabilityDataStream

Failure summary:

The job failed because the Go integration test cmd/fleetctl/integrationtest/vuln
TestIntegrationsVulnerabilityDataStream failed.
- In
cmd/fleetctl/integrationtest/vuln/vulnerability_data_stream_test.go:44, the test errored while
downloading the NVD CVE feed from the fleetdm/vulnerabilities GitHub releases.
- The download
attempts hit 404 Not Found for the expected asset URL (e.g.
https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta),
and the API call to list releases failed with 401 Bad credentials (GET
https://api.github.com/repos/fleetdm/vulnerabilities/releases?per_page=10), indicating
missing/invalid GitHub credentials/token for accessing the release assets.
- This single test
failure caused make .run-go-tests to exit non-zero (Makefile:291), which then failed the overall
make test-go step (Makefile:406).

Relevant error logs:
1:  Runner name: 'ubuntu-8core-1000961906'
2:  Runner group name: 'default larger runners'
...

1244:  �[36;1mattempt=1�[0m
1245:  �[36;1m�[0m
1246:  �[36;1mwhile [ $attempt -le $max_attempts ]; do�[0m
1247:  �[36;1m  echo "Attempt $attempt of $max_attempts"�[0m
1248:  �[36;1m�[0m
1249:  �[36;1m  # Try to connect to MySQL�[0m
1250:  �[36;1m  if wait_for_mysql "mysql_test"; then�[0m
1251:  �[36;1m    # If MySQL is ready, try to connect to MySQL replica�[0m
1252:  �[36;1m    if wait_for_mysql "mysql_replica_test"; then�[0m
1253:  �[36;1m      # Both are ready, we're done�[0m
1254:  �[36;1m      echo "All MySQL connections successful"�[0m
1255:  �[36;1m      exit 0�[0m
1256:  �[36;1m    fi�[0m
1257:  �[36;1m  fi�[0m
1258:  �[36;1m�[0m
1259:  �[36;1m  # If we get here, at least one connection failed�[0m
1260:  �[36;1m  echo "Failed to connect to MySQL on attempt $attempt"�[0m
1261:  �[36;1m�[0m
1262:  �[36;1m  if [ $attempt -lt $max_attempts ]; then�[0m
1263:  �[36;1m    echo "Restarting containers and trying again..."�[0m
1264:  �[36;1m    restart_containers�[0m
1265:  �[36;1m  else�[0m
1266:  �[36;1m    echo "Maximum attempts reached. Failing the job."�[0m
1267:  �[36;1m    exit 1�[0m
...

1421:  make .run-go-tests PKG_TO_TEST="./cmd/fleetctl/..."
1422:  make[1]: Entering directory '/home/runner/work/fleet/fleet'
1423:  Running Go tests with gotestsum:
1424:  gotestsum --format=testdox --jsonfile=/tmp/test-output.json -- -tags full,fts5,netgo -run=  -v -race=false -timeout=20m  -parallel 8 -coverprofile=coverage.txt -covermode=atomic -coverpkg=github.com/fleetdm/fleet/v4/... ././cmd/fleetctl/... 
1425:  github.com/fleetdm/fleet/v4/cmd/fleetctl:
1426:  github.com/fleetdm/fleet/v4/cmd/fleetctl/fleetctl/fleetctltest:
1427:  github.com/fleetdm/fleet/v4/cmd/fleetctl/fleetctl/testing_utils:
1428:  github.com/fleetdm/fleet/v4/cmd/fleetctl/integrationtest:
1429:  github.com/fleetdm/fleet/v4/cmd/fleetctl/fleetctl/goquerycmd:
1430:  github.com/fleetdm/fleet/v4/cmd/fleetctl/integrationtest/package:
1431:  �[32m✓�[0m Package (3.64s)
1432:  �[32m✓�[0m Package - -use-sytem-configuration can't be used on installers that aren't pkg (0.00s)
1433:  �[32m✓�[0m Package deb (1.83s)
1434:  github.com/fleetdm/fleet/v4/cmd/fleetctl/integrationtest/preview:
1435:  �[32m✓�[0m Integrations preview (54.12s)
1436:  �[32m✓�[0m Preview fails on invalid license key (0.00s)
1437:  github.com/fleetdm/fleet/v4/cmd/fleetctl/fleetctl:
...

1542:  �[32m✓�[0m Apply specs deprecated keys app config windows updates.grace period days not a number (0.39s)
1543:  �[32m✓�[0m Apply specs deprecated keys app config windows updates.grace period days out of range (0.48s)
1544:  �[32m✓�[0m Apply specs deprecated keys config with FIM values for agent options (#869 9) (0.55s)
1545:  �[32m✓�[0m Apply specs deprecated keys config with blank required org name (0.47s)
1546:  �[32m✓�[0m Apply specs deprecated keys config with blank required server url (0.43s)
1547:  �[32m✓�[0m Apply specs deprecated keys config with invalid agent options command-line flags (0.56s)
1548:  �[32m✓�[0m Apply specs deprecated keys config with invalid agent options data type in dry-run (0.41s)
1549:  �[32m✓�[0m Apply specs deprecated keys config with invalid agent options data type with force (0.52s)
1550:  �[32m✓�[0m Apply specs deprecated keys config with invalid agent options in dry-run (0.42s)
1551:  �[32m✓�[0m Apply specs deprecated keys config with invalid key type (0.49s)
1552:  �[32m✓�[0m Apply specs deprecated keys config with invalid value for agent options command-line flags (0.37s)
1553:  �[32m✓�[0m Apply specs deprecated keys config with unknown key (0.47s)
1554:  �[32m✓�[0m Apply specs deprecated keys config with valid agent options command-line flags (0.45s)
1555:  �[32m✓�[0m Apply specs deprecated keys dry-run set with unsupported spec (0.60s)
1556:  �[32m✓�[0m Apply specs deprecated keys dry-run set with various specs, appconfig warning for legacy (0.43s)
1557:  �[32m✓�[0m Apply specs deprecated keys dry-run set with various specs, no errors (0.57s)
1558:  �[32m✓�[0m Apply specs deprecated keys empty config (0.46s)
...

1561:  �[32m✓�[0m Apply specs deprecated keys invalid agent options dry-run (0.56s)
1562:  �[32m✓�[0m Apply specs deprecated keys invalid agent options field type (0.45s)
1563:  �[32m✓�[0m Apply specs deprecated keys invalid agent options field type in overrides (0.49s)
1564:  �[32m✓�[0m Apply specs deprecated keys invalid agent options for existing team (0.36s)
1565:  �[32m✓�[0m Apply specs deprecated keys invalid agent options for new team (0.39s)
1566:  �[32m✓�[0m Apply specs deprecated keys invalid agent options force (0.47s)
1567:  �[32m✓�[0m Apply specs deprecated keys invalid known key's value type for team cannot be forced (0.77s)
1568:  �[32m✓�[0m Apply specs deprecated keys invalid team agent options command-line flag (0.40s)
1569:  �[32m✓�[0m Apply specs deprecated keys invalid top-level key for team (0.52s)
1570:  �[32m✓�[0m Apply specs deprecated keys macos updates deadline set but minimum version empty (0.41s)
1571:  �[32m✓�[0m Apply specs deprecated keys macos updates minimum version set but deadline empty (0.36s)
1572:  �[32m✓�[0m Apply specs deprecated keys macos updates.deadline with incomplete date (0.41s)
1573:  �[32m✓�[0m Apply specs deprecated keys macos updates.deadline with invalid date (0.47s)
1574:  �[32m✓�[0m Apply specs deprecated keys macos updates.deadline with timestamp (0.43s)
1575:  �[32m✓�[0m Apply specs deprecated keys macos updates.minimum version with build version (0.42s)
1576:  �[32m✓�[0m Apply specs deprecated keys missing required failing policies destination url (0.46s)
1577:  �[32m✓�[0m Apply specs deprecated keys missing required host status days count (0.43s)
...

1585:  �[32m✓�[0m Apply specs deprecated keys team config macos settings.enable disk encryption true (0.39s)
1586:  �[32m✓�[0m Apply specs deprecated keys team config macos settings.enable disk encryption with invalid value type (0.41s)
1587:  �[32m✓�[0m Apply specs deprecated keys team config macos settings.enable disk encryption without a value (0.38s)
1588:  �[32m✓�[0m Apply specs deprecated keys unknown key for team can be forced (0.44s)
1589:  �[32m✓�[0m Apply specs deprecated keys valid team agent options command-line flag (0.54s)
1590:  �[32m✓�[0m Apply specs deprecated keys windows updates unset valid (0.39s)
1591:  �[32m✓�[0m Apply specs deprecated keys windows updates valid (0.44s)
1592:  �[32m✓�[0m Apply specs deprecated keys windows updates.deadline days but grace period empty (0.43s)
1593:  �[32m✓�[0m Apply specs deprecated keys windows updates.deadline days not a number (0.45s)
1594:  �[32m✓�[0m Apply specs deprecated keys windows updates.deadline days out of range (0.47s)
1595:  �[32m✓�[0m Apply specs deprecated keys windows updates.grace period days but deadline empty (0.43s)
1596:  �[32m✓�[0m Apply specs deprecated keys windows updates.grace period days not a number (0.38s)
1597:  �[32m✓�[0m Apply specs deprecated keys windows updates.grace period days out of range (0.54s)
1598:  �[32m✓�[0m Apply specs dry-run set with unsupported spec (0.51s)
1599:  �[32m✓�[0m Apply specs dry-run set with various specs, appconfig warning for legacy (0.40s)
1600:  �[32m✓�[0m Apply specs dry-run set with various specs, no errors (0.41s)
1601:  �[32m✓�[0m Apply specs empty config (0.37s)
...

1604:  �[32m✓�[0m Apply specs invalid agent options dry-run (0.55s)
1605:  �[32m✓�[0m Apply specs invalid agent options field type (0.41s)
1606:  �[32m✓�[0m Apply specs invalid agent options field type in overrides (0.36s)
1607:  �[32m✓�[0m Apply specs invalid agent options for existing team (0.45s)
1608:  �[32m✓�[0m Apply specs invalid agent options for new team (0.46s)
1609:  �[32m✓�[0m Apply specs invalid agent options force (0.48s)
1610:  �[32m✓�[0m Apply specs invalid known key's value type for team cannot be forced (0.36s)
1611:  �[32m✓�[0m Apply specs invalid team agent options command-line flag (0.43s)
1612:  �[32m✓�[0m Apply specs invalid top-level key for team (0.42s)
1613:  �[32m✓�[0m Apply specs macos updates deadline set but minimum version empty (0.37s)
1614:  �[32m✓�[0m Apply specs macos updates minimum version set but deadline empty (0.52s)
1615:  �[32m✓�[0m Apply specs macos updates.deadline with incomplete date (0.38s)
1616:  �[32m✓�[0m Apply specs macos updates.deadline with invalid date (0.37s)
1617:  �[32m✓�[0m Apply specs macos updates.deadline with timestamp (0.37s)
1618:  �[32m✓�[0m Apply specs macos updates.minimum version with build version (0.40s)
1619:  �[32m✓�[0m Apply specs missing required failing policies destination url (0.37s)
1620:  �[32m✓�[0m Apply specs missing required host status days count (0.54s)
...

1639:  �[32m✓�[0m Apply specs windows updates.grace period days not a number (0.38s)
1640:  �[32m✓�[0m Apply specs windows updates.grace period days out of range (0.34s)
1641:  �[32m✓�[0m Apply team specs (0.67s)
1642:  �[32m✓�[0m Apply user roles (0.49s)
1643:  �[32m✓�[0m Apply user roles deprecated (0.72s)
1644:  �[32m✓�[0m Apply windows updates (0.38s)
1645:  �[32m✓�[0m Apply windows updates field omitted (0.00s)
1646:  �[32m✓�[0m Apply windows updates with null values (0.00s)
1647:  �[32m✓�[0m Apply windows updates with values (0.00s)
1648:  �[32m✓�[0m Can apply intervals in nanoseconds (0.59s)
1649:  �[32m✓�[0m Can apply intervals using durations (0.81s)
1650:  �[32m✓�[0m Clean status code err (0.00s)
1651:  �[32m✓�[0m Clean status code err bare wrapped status code err (0.00s)
1652:  �[32m✓�[0m Clean status code err nil (0.00s)
1653:  �[32m✓�[0m Clean status code err outer-wrapped status code err (0.00s)
1654:  �[32m✓�[0m Clean status code err plain error untouched (0.00s)
1655:  �[32m✓�[0m Compute label changes (0.00s)
...

1711:  �[32m✓�[0m Filename functions (0.00s)
1712:  �[32m✓�[0m Filename functions outfile name builds a file name using the name provided + current time (0.00s)
1713:  �[32m✓�[0m Filename functions outfile name with ext builds a file name using the name and extension provided + current time (0.00s)
1714:  �[32m✓�[0m FleetctlUpgradePacks empty packs (0.41s)
1715:  �[32m✓�[0m FleetctlUpgradePacks no pack (0.48s)
1716:  �[32m✓�[0m FleetctlUpgradePacks non empty (0.47s)
1717:  �[32m✓�[0m FleetctlUpgradePacks not admin (0.39s)
1718:  �[32m✓�[0m Format XML (0.00s)
1719:  �[32m✓�[0m Format XML XML with attributes (0.00s)
1720:  �[32m✓�[0m Format XML basic XML (0.00s)
1721:  �[32m✓�[0m Format XML empty XML (0.00s)
1722:  �[32m✓�[0m Format XML invalid XML (0.00s)
1723:  �[32m✓�[0m Format XML nested XML (0.00s)
1724:  �[32m✓�[0m Generate MDM apple (0.79s)
1725:  �[32m✓�[0m Generate MDM apple BM (0.37s)
1726:  �[32m✓�[0m Generate MDM apple CSR API call fails (0.40s)
1727:  �[32m✓�[0m Generate MDM apple successful run (0.39s)
1728:  �[32m✓�[0m Generate MDMVPP tokens (0.00s)
1729:  �[32m✓�[0m Generate MDMVPP tokens get VPP tokens error (0.00s)
1730:  �[32m✓�[0m Generate MDMVPP tokens multiple tokens with different teams (0.00s)
...

1748:  �[32m✓�[0m Generate org settings masked google workspace api key (0.00s)
1749:  �[32m✓�[0m Generate policies (0.00s)
1750:  �[32m✓�[0m Generate policies patch policy orphaned from fleet maintained app (0.00s)
1751:  �[32m✓�[0m Generate queries (0.00s)
1752:  �[32m✓�[0m Generate software (0.00s)
1753:  �[32m✓�[0m Generate software auto update schedule (0.00s)
1754:  �[32m✓�[0m Generate software script packages (0.00s)
1755:  �[32m✓�[0m Generate team settings (0.00s)
1756:  �[32m✓�[0m Generate team settings insecure (0.00s)
1757:  �[32m✓�[0m Generated org settings no SSO (0.00s)
1758:  �[32m✓�[0m Generated org settings okta conditional access not included (0.00s)
1759:  �[32m✓�[0m Get MDM command results (0.53s)
1760:  �[32m✓�[0m Get MDM command results command flag required (0.00s)
1761:  �[32m✓�[0m Get MDM command results command not found (0.01s)
1762:  �[32m✓�[0m Get MDM command results command results empty (0.01s)
1763:  �[32m✓�[0m Get MDM command results command results error (0.01s)
1764:  �[32m✓�[0m Get MDM command results darwin command results (0.00s)
1765:  �[32m✓�[0m Get MDM command results host specific results (0.01s)
1766:  �[32m✓�[0m Get MDM command results windows command results (0.00s)
1767:  �[32m✓�[0m Get MDM commands (0.37s)
1768:  �[32m✓�[0m Get apple BM (1.62s)
1769:  �[32m✓�[0m Get apple BM free license (0.33s)
1770:  �[32m✓�[0m Get apple BM premium license, multiple tokens (0.42s)
1771:  �[32m✓�[0m Get apple BM premium license, no token (0.40s)
1772:  �[32m✓�[0m Get apple BM premium license, single token (0.46s)
1773:  �[32m✓�[0m Get apple MDM (0.39s)
1774:  �[32m✓�[0m Get carve (0.38s)
1775:  �[32m✓�[0m Get carve with error (0.35s)
1776:  �[32m✓�[0m Get carves (0.46s)
...

1790:  �[32m✓�[0m Get hosts MDM get hosts - -mdm - -mdm-pending - (0.00s)
1791:  �[32m✓�[0m Get hosts MDM get hosts - -mdm-pending - -yaml - expected list hosts yaml.yml (0.01s)
1792:  �[32m✓�[0m Get hosts get hosts - -json - -remove-deprecated-keys (0.00s)
1793:  �[32m✓�[0m Get hosts get hosts - -json - expected list hosts json.json (0.00s)
1794:  �[32m✓�[0m Get hosts get hosts - -json test host - expected host detail response json.json (0.00s)
1795:  �[32m✓�[0m Get hosts get hosts - -yaml - expected list hosts yaml.yml (0.00s)
1796:  �[32m✓�[0m Get hosts get hosts - -yaml test host - expected host detail response yaml.yml (0.00s)
1797:  �[32m✓�[0m Get label (0.50s)
1798:  �[32m✓�[0m Get label usage include and exclude allowed (0.00s)
1799:  �[32m✓�[0m Get label usage include and exclude allowed macos (0.00s)
1800:  �[32m✓�[0m Get label usage include and exclude allowed macos# 01 (0.00s)
1801:  �[32m✓�[0m Get label usage include and exclude allowed macos# 02 (0.00s)
1802:  �[32m✓�[0m Get label usage include and exclude allowed windows (0.00s)
1803:  �[32m✓�[0m Get label usage include and exclude allowed windows# 01 (0.00s)
1804:  �[32m✓�[0m Get label usage include and exclude allowed windows# 02 (0.00s)
1805:  �[32m✓�[0m Get label usage include exclude overlap error (0.00s)
1806:  �[32m✓�[0m Get label usage include exclude overlap error macos (0.00s)
1807:  �[32m✓�[0m Get label usage include exclude overlap error macos# 01 (0.00s)
1808:  �[32m✓�[0m Get label usage include exclude overlap error macos# 02 (0.00s)
1809:  �[32m✓�[0m Get label usage include exclude overlap error windows (0.00s)
1810:  �[32m✓�[0m Get label usage include exclude overlap error windows# 01 (0.00s)
1811:  �[32m✓�[0m Get label usage include exclude overlap error windows# 02 (0.00s)
1812:  �[32m✓�[0m Get label usage multiple label keys error (0.00s)
1813:  �[32m✓�[0m Get label usage multiple label keys error macos (0.00s)
1814:  �[32m✓�[0m Get label usage multiple label keys error windows (0.00s)
1815:  �[32m✓�[0m Get label usage policy scopes (0.00s)
...

1831:  �[32m✓�[0m Get queries as observer team observer (0.01s)
1832:  �[32m✓�[0m Get query (0.64s)
1833:  �[32m✓�[0m Get query labels include all (0.42s)
1834:  �[32m✓�[0m Get reports labels include all (0.40s)
1835:  �[32m✓�[0m Get software titles (0.33s)
1836:  �[32m✓�[0m Get software versions (0.47s)
1837:  �[32m✓�[0m Get teams (0.89s)
1838:  �[32m✓�[0m Get teams YAML and apply (0.56s)
1839:  �[32m✓�[0m Get teams by name (0.35s)
1840:  �[32m✓�[0m Get teams expired license (0.46s)
1841:  �[32m✓�[0m Get teams not expired license (0.43s)
1842:  �[32m✓�[0m Get teams software from source of truth (0.43s)
1843:  �[32m✓�[0m Get user roles (0.47s)
1844:  �[32m✓�[0m Git ops ABM (6.36s)
1845:  �[32m✓�[0m Git ops ABM backwards compat (0.65s)
1846:  �[32m✓�[0m Git ops ABM both keys errors (0.55s)
1847:  �[32m✓�[0m Git ops ABM deprecated config with two tokens in the db fails (0.43s)
1848:  �[32m✓�[0m Git ops ABM new key all valid (0.95s)
1849:  �[32m✓�[0m Git ops ABM new key multiple elements (0.81s)
1850:  �[32m✓�[0m Git ops ABM no team is supported (0.55s)
1851:  �[32m✓�[0m Git ops ABM non existent org name fails (0.51s)
1852:  �[32m✓�[0m Git ops ABM not provided teams defaults to no team (0.45s)
1853:  �[32m✓�[0m Git ops ABM renamed new key all valid (0.87s)
1854:  �[32m✓�[0m Git ops ABM using an undefined team errors (0.59s)
1855:  �[32m✓�[0m Git ops EULA setting (4.71s)
...

1858:  �[32m✓�[0m Git ops EULA setting not a PDF file (0.62s)
1859:  �[32m✓�[0m Git ops EULA setting relative path to working dir to pdf file (no existing EULA uploaded) (0.50s)
1860:  �[32m✓�[0m Git ops EULA setting relative path to yaml file to pdf file (no existing EULA uploaded) (0.54s)
1861:  �[32m✓�[0m Git ops EULA setting uploading the same EULA again (0.51s)
1862:  �[32m✓�[0m Git ops EULA setting valid new pdf file (different EULA already uploaded) (0.59s)
1863:  �[32m✓�[0m Git ops EULA setting valid pdf file (no existing EULA uploaded) (0.65s)
1864:  �[32m✓�[0m Git ops MDM auth settings (0.52s)
1865:  �[32m✓�[0m Git ops SMTP settings (0.47s)
1866:  �[32m✓�[0m Git ops SSO server URL (0.48s)
1867:  �[32m✓�[0m Git ops SSO settings (0.59s)
1868:  �[32m✓�[0m Git ops android certificates add (0.74s)
1869:  �[32m✓�[0m Git ops android certificates change (0.53s)
1870:  �[32m✓�[0m Git ops android certificates delete all (0.55s)
1871:  �[32m✓�[0m Git ops android certificates delete one (0.57s)
1872:  �[32m✓�[0m Git ops app store app auto update (0.52s)
1873:  �[32m✓�[0m Git ops app store app auto update invalid auto-update window triggers error and does not call update software title auto update config (0.01s)
1874:  �[32m✓�[0m Git ops app store app auto update no auto update settings and no existing schedule does not call update software title auto update config (0.02s)
1875:  �[32m✓�[0m Git ops app store app auto update update software title auto update config is applied for i OS VPP apps (0.02s)
1876:  �[32m✓�[0m Git ops app store app auto update update software title auto update config is not called when no VPP apps provided (0.02s)
1877:  �[32m✓�[0m Git ops apple OS updates (0.49s)
1878:  �[32m✓�[0m Git ops apple OS updates ios updates (0.01s)
1879:  �[32m✓�[0m Git ops apple OS updates ios updates os updated when existing OS update declaration (0.01s)
1880:  �[32m✓�[0m Git ops apple OS updates ipados updates (0.01s)
1881:  �[32m✓�[0m Git ops apple OS updates ipados updates os updated when existing OS update declaration (0.01s)
1882:  �[32m✓�[0m Git ops apple OS updates macos updates (0.01s)
1883:  �[32m✓�[0m Git ops apple OS updates macos updates os updated when existing OS update declaration (0.01s)
1884:  �[32m✓�[0m Git ops basic global and no team (0.55s)
1885:  �[32m✓�[0m Git ops basic global and no team basic global and no-team.yml (0.06s)
1886:  �[32m✓�[0m Git ops basic global and no team both global and no-team.yml define controls -- should fail (0.02s)
1887:  �[32m✓�[0m Git ops basic global and no team controls only defined in no-team.yml (0.05s)
1888:  �[32m✓�[0m Git ops basic global and no team global DOES NOT define controls -- should fail (0.01s)
1889:  �[32m✓�[0m Git ops basic global and no team global and no-team.yml DO NOT define controls -- should fail (0.01s)
1890:  �[32m✓�[0m Git ops basic global and no team global defines software -- should fail (0.01s)
1891:  �[32m✓�[0m Git ops basic global and no team no-team provided without global -- should fail (0.01s)
1892:  �[32m✓�[0m Git ops basic global and no team no-team.yml defines policy with calendar events enabled -- should fail (0.01s)
1893:  �[32m✓�[0m Git ops basic global and no team unassigned provided without global -- should fail (0.01s)
1894:  �[32m✓�[0m Git ops basic global and team (0.83s)
...

1900:  �[32m✓�[0m Git ops custom settings global macos windows custom settings valid.yml (0.60s)
1901:  �[32m✓�[0m Git ops custom settings global windows custom settings invalid label mix 2 .yml (0.64s)
1902:  �[32m✓�[0m Git ops custom settings global windows custom settings invalid label mix.yml (0.47s)
1903:  �[32m✓�[0m Git ops custom settings global windows custom settings unknown label.yml (0.51s)
1904:  �[32m✓�[0m Git ops custom settings team macos custom settings valid deprecated.yml (0.44s)
1905:  �[32m✓�[0m Git ops custom settings team macos windows custom settings invalid labels mix 2 .yml (0.43s)
1906:  �[32m✓�[0m Git ops custom settings team macos windows custom settings invalid labels mix.yml (0.73s)
1907:  �[32m✓�[0m Git ops custom settings team macos windows custom settings unknown label.yml (0.47s)
1908:  �[32m✓�[0m Git ops custom settings team macos windows custom settings valid.yml (0.43s)
1909:  �[32m✓�[0m Git ops dry run rejects invalid label platform (0.44s)
1910:  �[32m✓�[0m Git ops exception enforcement (0.41s)
1911:  �[32m✓�[0m Git ops exception enforcement free tier (0.39s)
1912:  �[32m✓�[0m Git ops exceptions preserve omitted keys (0.46s)
1913:  �[32m✓�[0m Git ops features (0.51s)
1914:  �[32m✓�[0m Git ops filename validation (0.00s)
1915:  �[32m✓�[0m Git ops fleet failing policies webhook policy IDs (0.56s)
1916:  �[32m✓�[0m Git ops fleet webhooks and tickets enabled (0.48s)
...

2073:  �[32m✓�[0m New basic file structure has expected files (0.00s)
2074:  �[32m✓�[0m New basic file structure replaces and escapes org name template var (0.00s)
2075:  �[32m✓�[0m New basic file structure strips .template. from output filenames (0.00s)
2076:  �[32m✓�[0m New dir flag (0.01s)
2077:  �[32m✓�[0m New existing dir with force (0.01s)
2078:  �[32m✓�[0m New existing dir without force (0.00s)
2079:  �[32m✓�[0m New org name YAML quoting (0.01s)
2080:  �[32m✓�[0m New org name validation (0.01s)
2081:  �[32m✓�[0m New org name validation at max length (0.01s)
2082:  �[32m✓�[0m New org name validation control characters stripped (0.01s)
2083:  �[32m✓�[0m New org name validation only control characters (0.00s)
2084:  �[32m✓�[0m New org name validation only whitespace (0.00s)
2085:  �[32m✓�[0m New org name validation too long (0.00s)
2086:  �[32m✓�[0m New output messages (0.01s)
2087:  �[32m✓�[0m New template stripping (0.01s)
2088:  �[32m✓�[0m Print auth error (0.35s)
2089:  �[32m✓�[0m Print auth error SSO disabled shows default login message (0.00s)
2090:  �[32m✓�[0m Print auth error SSO enabled shows SSO instructions (0.00s)
2091:  �[32m✓�[0m Render template (0.00s)
...

2111:  �[32m✓�[0m Run api command get scripts full path missing (0.00s)
2112:  �[32m✓�[0m Run api command get scripts team (0.00s)
2113:  �[32m✓�[0m Run api command get scripts team no cache (0.00s)
2114:  �[32m✓�[0m Run api command get typo (0.00s)
2115:  �[32m✓�[0m Run api command upload script (0.00s)
2116:  �[32m✓�[0m Run script command (0.53s)
2117:  �[32m✓�[0m Run script command disabled scripts globally (0.00s)
2118:  �[32m✓�[0m Run script command host not found (0.01s)
2119:  �[32m✓�[0m Run script command invalid file type (0.00s)
2120:  �[32m✓�[0m Run script command invalid hashbang (0.00s)
2121:  �[32m✓�[0m Run script command invalid utf 8 (0.00s)
2122:  �[32m✓�[0m Run script command missing one of script-path and script-nqme (0.00s)
2123:  �[32m✓�[0m Run script command output truncated (0.01s)
2124:  �[32m✓�[0m Run script command posix shell hashbang (0.01s)
2125:  �[32m✓�[0m Run script command script empty (0.00s)
2126:  �[32m✓�[0m Run script command script failed (0.01s)
2127:  �[32m✓�[0m Run script command script killed (0.01s)
...

2184:  �[32m✓�[0m Validate git ops group EUA no EUA enabled anywhere is accepted (0.00s)
2185:  �[32m✓�[0m Validate git ops group EUA team enables EU A, global file adds complete id P: accepted (0.00s)
2186:  �[32m✓�[0m Validate git ops group EUA team enables EU A, global file adds id p missing entity id: rejected (0.00s)
2187:  �[32m✓�[0m Validate git ops group EUA team enables EU A, global file omits id P, stored has id P: rejected (overwrite clears) (0.00s)
2188:  �[32m✓�[0m Validate git ops group EUA team enables EU A, stored has id P, no global file: accepted (0.00s)
2189:  �[32m✓�[0m Validate git ops group EUA team enables EU A, stored has no id P, no global file: rejected (0.00s)
2190:  github.com/fleetdm/fleet/v4/cmd/fleetctl/integrationtest/vuln:
2191:  �[31m✖�[0m Integrations vulnerability data stream (345.23s)
2192:  github.com/fleetdm/fleet/v4/cmd/fleetctl/integrationtest/gitops:
2193:  �[32m✓�[0m Git ops VPP (4.86s)
2194:  �[32m✓�[0m Git ops VPP all fleets is supported (0.54s)
2195:  �[32m✓�[0m Git ops VPP all teams is supported (0.53s)
2196:  �[32m✓�[0m Git ops VPP new key all valid (0.79s)
2197:  �[32m✓�[0m Git ops VPP new key multiple elements (0.62s)
2198:  �[32m✓�[0m Git ops VPP no team is supported (0.58s)
2199:  �[32m✓�[0m Git ops VPP non existent location fails (0.54s)
2200:  �[32m✓�[0m Git ops VPP not provided teams defaults to no team (0.72s)
2201:  �[32m✓�[0m Git ops VPP using an undefined team errors (0.53s)
2202:  �[32m✓�[0m Git ops existing team VPP apps with missing team (0.50s)
...

2295:  �[32m✓�[0m Git ops team software installers team software installer with display name.yml (1.55s)
2296:  �[32m✓�[0m Integrations enterprise gitops (317.45s)
2297:  �[32m✓�[0m Integrations enterprise gitops test CA integrations (3.93s)
2298:  �[32m✓�[0m Integrations enterprise gitops test FMA labels include all (6.07s)
2299:  �[32m✓�[0m Integrations enterprise gitops test IPA software installers (10.55s)
2300:  �[32m✓�[0m Integrations enterprise gitops test JSON configuration profile escaping (1.29s)
2301:  �[32m✓�[0m Integrations enterprise gitops test add manual labels (1.54s)
2302:  �[32m✓�[0m Integrations enterprise gitops test configuration profile escaping (1.36s)
2303:  �[32m✓�[0m Integrations enterprise gitops test delete CA with certificate templates (6.01s)
2304:  �[32m✓�[0m Integrations enterprise gitops test delete mac OS setup (4.98s)
2305:  �[32m✓�[0m Integrations enterprise gitops test deleting no team YAML (2.67s)
2306:  �[32m✓�[0m Integrations enterprise gitops test disallow software setup experience (123.75s)
2307:  �[32m✓�[0m Integrations enterprise gitops test disallow software setup experience all VPP with setup experience (1.26s)
2308:  �[32m✓�[0m Integrations enterprise gitops test disallow software setup experience no team VPP (1.14s)
2309:  �[32m✓�[0m Integrations enterprise gitops test disallow software setup experience no team installers (60.50s)
2310:  �[32m✓�[0m Integrations enterprise gitops test disallow software setup experience packages fail (60.67s)
2311:  �[32m✓�[0m Integrations enterprise gitops test dry run mac OS setup script with manual agent install conflict (0.44s)
...

2341:  �[32m✓�[0m Integrations enterprise gitops test omitted top level keys global (2.46s)
2342:  �[32m✓�[0m Integrations enterprise gitops test remove custom settings from default YAML (2.57s)
2343:  �[32m✓�[0m Integrations enterprise gitops test special case teams VPP apps (3.83s)
2344:  �[32m✓�[0m Integrations enterprise gitops test special case teams VPP apps all teams (2.43s)
2345:  �[32m✓�[0m Integrations enterprise gitops test special case teams VPP apps no team (1.24s)
2346:  �[32m✓�[0m Integrations enterprise gitops test unset configuration profile labels (4.94s)
2347:  �[32m✓�[0m Integrations enterprise gitops test unset software installer labels (11.43s)
2348:  �[32m✓�[0m Integrations enterprise starter library (4.99s)
2349:  �[32m✓�[0m Integrations enterprise starter library test apply starter library premium (3.55s)
2350:  �[32m✓�[0m Integrations gitops (2.45s)
2351:  �[32m✓�[0m Integrations gitops test fleet gitops (0.46s)
2352:  �[32m✓�[0m Integrations gitops test fleet gitops DDM fleet vars requires premium (0.11s)
2353:  �[32m✓�[0m Integrations gitops test fleet gitops with fleet secrets (0.25s)
2354:  �[32m✓�[0m Integrations starter library (1.61s)
2355:  �[32m✓�[0m Integrations starter library test apply starter library free (0.18s)
2356:  === �[31mFailed�[0m
2357:  === �[31mFAIL�[0m: cmd/fleetctl/integrationtest/vuln TestIntegrationsVulnerabilityDataStream (345.23s)
2358:  nettest.go:33: network test start: TestIntegrationsVulnerabilityDataStream
2359:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2360:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2361:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2362:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2363:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2364:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2365:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2366:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2367:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2368:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2369:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2370:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2371:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2372:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind_high_contrast-39b6c209db5491c9.css\" /><link data-color-theme=\"light_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia-3822234d6c03b00b.css\" /><link data-color-theme=\"light_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_tritanopia_high_contrast-33857254a8064bf7.css\" /><link data-color-theme=\"dark\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link data-color-theme=\"dark_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"dark_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind-37023bf69d8e0e34.css\" /><link data-color-theme=\"dark_colorblind_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_colorblind_high_contrast-486bd43e01a2c0ec.css\" /><link data-color-theme=\"dark_tritanopia\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia-838ba2a5070c5b09.css\" /><link data-color-theme=\"dark_tritanopia_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_tritanopia_high_contrast-2aa7245dc545d61f.css\" /><link data-color-theme=\"dark_dimmed\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/dark_dimmed-29ef2eb185e7de1c.css\" /><link data-color-theme=\"dark_dimmed_high_contrast\" crossorigin=\"anonymo"
2373:  nettest.go:84: TestIntegrationsVulnerabilityDataStream: retrying error: Error downloading NVD CVE feed: download nvd cve feed: download nvd cve feed: 1 synchronisation error:
2374:  unexpected http response from "https://github.com/fleetdm/vulnerabilities/releases/download/cve-202606291945/nvdcve-1.1-2021.meta" ("404 Not Found"): "\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html\n  lang=\"en\"\n  \n  data-color-mode=\"auto\" data-light-theme=\"light\" data-dark-theme=\"dark\"\n  data-a11y-animated-images=\"system\" data-a11y-link-underlines=\"true\"\n  \n  >\n\n\n\n\n  <head>\n    <meta charset=\"utf-8\">\n  <link rel=\"dns-prefetch\" href=\"https://github.githubassets.com\">\n  <link rel=\"dns-prefetch\" href=\"https://avatars.githubusercontent.com\">\n  <link rel=\"dns-prefetch\" href=\"https://github-cloud.s3.amazonaws.com\">\n  <link rel=\"dns-prefetch\" href=\"https://user-images.githubusercontent.com/\">\n  <link rel=\"preconnect\" href=\"https://github.githubassets.com\" crossorigin>\n  <link rel=\"preconnect\" href=\"https://avatars.githubusercontent.com\">\n\n      <link crossorigin=\"anonymous\" rel=\"preload\" as=\"script\" href=\"https://github.githubassets.com/assets/global-banner-disable-f33ea31fa5ffa501.js\" />\n\n  <link rel=\"preload\" href=\"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n\n\n  <link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark-06381ff23d863842.css\" /><link crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" href=\"https://github.githubassets.com/assets/dark_high_contrast-9023e6605402defb.css\" /><link data-color-theme=\"light\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light-4fded0090af0ad58.css\" /><link data-color-theme=\"light_high_contrast\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_high_contrast-cf8e26bc17e62ebc.css\" /><link data-color-theme=\"light_colorblind\" crossorigin=\"anonymous\" media=\"all\" rel=\"stylesheet\" data-href=\"https://github.githubassets.com/assets/light_colorblind-3a437477a570cc40.css\" /><link data-color-theme=\"light_colorblind_high_c...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant