Package for analyzing Fuzzing set ups.
Project description
Fuzz Introspector Python Package
Library for analysing fuzzer-relevant components of source code.
Example:
from fuzz_introspector.frontends import core
SAMPLE="""void parse(const char *data, size_t size) {
return;
}
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
parse((const char*)data, size)
}
"""
source = core.analyse_source_file(SAMPLE, 'c')
func = source.get_function_node('LLVMFuzzerTestOneInput')
if func:
print(func.callsites())
Running the above:
$ python3 example.py
[('parse', (122, 127))]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fuzz_introspector-0.1.6.tar.gz
(194.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fuzz_introspector-0.1.6.tar.gz.
File metadata
- Download URL: fuzz_introspector-0.1.6.tar.gz
- Upload date:
- Size: 194.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
890d323aa501196aa0cadbff8a0ec0cd30815d6950fc95aa993448cf22ed9eb5
|
|
| MD5 |
8a59ce9798991825b3c8de7c85b2404b
|
|
| BLAKE2b-256 |
44544fbfa69590930647b48d3a02cacc833cfcd0f532c04bf6c053e4295381a1
|
File details
Details for the file fuzz_introspector-0.1.6-py3-none-any.whl.
File metadata
- Download URL: fuzz_introspector-0.1.6-py3-none-any.whl
- Upload date:
- Size: 199.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68455f9a52b071843dac363adbf12d7693dd01b1043febee73fda96b1a402d82
|
|
| MD5 |
36d66282e973524f84dc36e7f59e640c
|
|
| BLAKE2b-256 |
5557437f101d7dd4a197492f9e2974f76142460ae13abbaef45038ef018064d9
|