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.5.tar.gz
(167.9 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.5.tar.gz.
File metadata
- Download URL: fuzz_introspector-0.1.5.tar.gz
- Upload date:
- Size: 167.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b6a69f88134e29faee982711d85d2e1ca66f9fb1c77053c8db43ab77e14bf22
|
|
| MD5 |
6ed6fc2b0cf0a8e4fb0423764ae7a3fe
|
|
| BLAKE2b-256 |
2f513e10a4cf6c5abefb5ac1e1659f31590b015f63df2d39dd4d89498deb3162
|
File details
Details for the file fuzz_introspector-0.1.5-py3-none-any.whl.
File metadata
- Download URL: fuzz_introspector-0.1.5-py3-none-any.whl
- Upload date:
- Size: 191.7 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 |
ea11f601a2b501950b965bd20c5e97dfea8112c2409ab667990ad73e4d5d158c
|
|
| MD5 |
ab44b155b4394022642b13d51cdb7ce4
|
|
| BLAKE2b-256 |
34f832d17944446b5cff5364f00637af56a11136310e1b7fcaf04e42114c10c9
|