Metadata-Version: 2.4
Name: autofte
Version: 0.2.1
Summary: Local-first crash triage, binary mitigation analysis, and LLM-assisted write-ups for fuzzing runs
Author: Nathan Luevano
License: MIT License
        
        Copyright (c) 2025 Nathan Luevano
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/Nathan-Luevano/AutoFTE
Project-URL: Repository, https://github.com/Nathan-Luevano/AutoFTE
Project-URL: Issues, https://github.com/Nathan-Luevano/AutoFTE/issues
Keywords: fuzzing,afl,crash-triage,binary-analysis,security,reverse-engineering
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Debuggers
Classifier: Environment :: Console
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Dynamic: license-file

# AutoFTE

AutoFTE is a local-first command-line tool for triaging fuzzer crashes. It groups crashes by likely root cause, inspects binary exploit mitigations, and generates Markdown, HTML, JSON, and SARIF reports.

## Install

AutoFTE supports Python 3.9 or newer on Linux. The recommended installation method is [pipx](https://pipx.pypa.io/):

```bash
pipx install autofte
autofte doctor
```

You can also install it with pip:

```bash
python3 -m pip install autofte
```

## Try the demo

```bash
autofte demo
```

The bundled demo builds a small intentionally vulnerable target, triages its sample crashes, and writes the results to `autofte-demo-output/`.

## Basic usage

```bash
autofte pipeline \
  --target-binary ./target \
  --source-file ./target.c \
  --crashes-dir ./crashes
```

AutoFTE uses sanitizer reports when available, falls back to GDB backtraces, and uses exit-signal grouping as a last resort. Run `autofte --help` to see all commands and options.

## Requirements and optional tools

- `readelf`, `objdump`, `nm`, `ldd`, `file`, and `strings` are required for binary analysis.
- GDB, `checksec`, and AFL++ are optional.
- Ollama is optional and is used only for local LLM-generated notes. Core triage and reporting work without it.

Crash data, binaries, and source code stay on your machine. AutoFTE makes no network calls except to an explicitly configured Ollama host.

## Links

- [Full documentation and examples](https://github.com/Nathan-Luevano/AutoFTE#readme)
- [Issue tracker](https://github.com/Nathan-Luevano/AutoFTE/issues)
- [Releases](https://github.com/Nathan-Luevano/AutoFTE/releases)
- [Security policy](https://github.com/Nathan-Luevano/AutoFTE/security/policy)

AutoFTE is licensed under the MIT License.
