You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once you have a .sqlite file, launch the web interface to explore the diffs:
108
-
```bash
108
+
The autodiff command streamlines patch analysis by automatically fetching binaries (via CVE or manual parameters) and running a diff without manual downloads.
109
+
110
+
**Example 1: Run by CVE**
111
+
112
+
```sh
113
+
diffrays autodiff --cve CVE-2025-29824
114
+
```
115
+
This will:
116
+
- Automatically locate vulnerable and patched binaries related to the CVE with the help of [Winbindex](https://winbindex.m417z.com/).
117
+
- Run the diff engine.
118
+
- Generate a results database.
119
+
120
+
**Example 2: Run by File + Month**
121
+
122
+
```sh
123
+
diffrays autodiff -f clfs.sys -m 2025-09
124
+
```
125
+
126
+
This will:
127
+
- Download `clfs.sys` from the September 2025 update.
128
+
- Locate its prior version and run a diff automatically.
129
+
- Provide a fallback when `--cve` doesn’t correctly identify the vulnerable component (which can happen if the CVE affects multiple binaries or metadata is incomplete).
0 commit comments