Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Флаги libFuzzer #56

Closed
CourteousSleet opened this issue Feb 9, 2023 · 3 comments
Closed

Флаги libFuzzer #56

CourteousSleet opened this issue Feb 9, 2023 · 3 comments
Labels
enhancement New feature or request

Comments

@CourteousSleet
Copy link

Если возникла потребность запустить цель с такими флагами:

./target.out Corpus/ -detect_leaks=1 -print_final_stats=1 -use_counters=1 -reload=1 -print_coverage=1

Можно ли их как-то отправить внутрь Fuzzer() как строку флагов или можно использовать только опции, указаннные в параметрах?

@thientc
Copy link
Collaborator

thientc commented Feb 9, 2023

Пока передавать в Futag.Fuzzer только такие параметры:

def __init__(self, futag_llvm_package: str, fuzz_driver_path: str = FUZZ_DRIVER_PATH, debug: bool = False, gdb: bool = False, svres: bool = False, fork: int = 1, totaltime: int = 300, timeout: int = 10, memlimit: int = 2048, coverage: bool = False, leak: bool = False, introspect: bool = False):

Могу добавить дополнительный аргумент для пользовательских параметров в новом коммите.

@thientc thientc added the enhancement New feature or request label Feb 9, 2023
@CourteousSleet
Copy link
Author

Было бы здорово

@thientc
Copy link
Collaborator

thientc commented Mar 23, 2023

Добавил, проверьте!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants