File size: 1,184 Bytes
8325dd1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SwarmAudit Example Report Excerpt

Repository: `https://github.com/psf/requests`

This excerpt comes from a local smoke test using the mock-first MVP pipeline.

## Summary

- Files scanned: `41`
- Files skipped: `122`
- Total findings: `217`
- Findings displayed: `34`
- Hidden lower-priority findings: `183`

## Severity Summary

- CRITICAL: `0`
- HIGH: `4`
- MEDIUM: `121`
- LOW: `92`

## Agent Summary

- Security Agent: `4`
- Performance Agent: `115`
- Quality Agent: `48`
- Docs Agent: `50`

## Example Finding

### [HIGH] TLS certificate verification disabled

- File: `tests/test_requests.py:2908-2908`
- Agent: `Security Agent`

Disabling TLS verification can allow man-in-the-middle attacks.

**Why it matters:** Attackers often search repos for exposed credentials and unsafe execution paths.

**Suggested fix:**

```text
Remove verify=False and use a trusted CA bundle if needed.
```

## Display Policy

SwarmAudit preserves full finding totals but displays a prioritized subset for readability. High-severity findings are shown first, repeated low-severity findings are summarized, and report warnings explain when lower-priority findings are hidden from the demo view.