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.10.tar.gz
(203.7 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.10.tar.gz.
File metadata
- Download URL: fuzz_introspector-0.1.10.tar.gz
- Upload date:
- Size: 203.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be790caa2671b1bf964522092926beb8b24bb1ab32869c3aeaab3c98343e04be
|
|
| MD5 |
8aaecc788818646fe459a5565f59f9b8
|
|
| BLAKE2b-256 |
5f46fe8ba7eabb586dcf62bea92209cf29c9c38cc05a80a35f63814bf07f8747
|
File details
Details for the file fuzz_introspector-0.1.10-py3-none-any.whl.
File metadata
- Download URL: fuzz_introspector-0.1.10-py3-none-any.whl
- Upload date:
- Size: 214.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a50b2ff3ecf62c9aafe20fd61b03e6ed007f239aacdf9a3dae556939251bd84d
|
|
| MD5 |
33faf8e1640343a1913b076b6d9c04d1
|
|
| BLAKE2b-256 |
00825eba934c9ec2ccad19ebb60c397dac667f98565f5e2e5110905e94f3fec2
|