paper-with-me

Papers

Faster Fuzzing: Reinitialization with Deep Neural Models

2017-11-08 · Nicole Nichols, Mark Raugas, Robert Jasper, Nathan Hilliard

We improve the performance of the American Fuzzy Lop (AFL) fuzz testing framework by using Generative Adversarial Network (GAN) models to reinitialize the system with novel seed files. We assess performance based on the temporal rate at which we produce novel and unseen code paths. We compare this approach to seed file generation from a random draw of bytes observed in the training seed files. The code path lengths and variations were not sufficiently diverse to fully replace AFL input generation. However, augmenting native AFL with these additional code paths demonstrated improvements over AFL alone. Specifically, experiments showed the GAN was faster and more effective than the LSTM and out-performed a random augmentation strategy, as measured by the number of unique code paths discovered. GAN helps AFL discover 14.23% more code paths than the random strategy in the same amount of CPU time, finds 6.16% more unique code paths, and finds paths that are on average 13.84% longer. Using GAN shows promise as a reinitialization strategy for AFL to help the fuzzer exercise deep paths in software.

📄 PDF Abstract BibTeX arXiv:1711.02807

Code (0)

등록된 구현이 없습니다.

Tasks

CPUGenerative Adversarial Network

Methods 이 논문이 사용한 방법론

American 설명 없음
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…
Dogecoin Customer Service Number +1-833-534-1729 설명 없음

Similar Papers 제목 키워드 기반

FuzzWiz -- Fuzzing Framework for Efficient Hardware Coverage

2024-10-23 · Deepak Narayan Gadde, Aman Kumar, Djones Lettnin, Sebastian Simon

Ever-increasing design complexity of System-on-Chips (SoCs) led to significant verification challenges. Unlike software, bugs in hardware design are vigorous and eternal i.e., once the hardware is fabricated, it cannot b…

Benchmarking

HFL: Hybrid Fuzzing on the Linux Kernel

2020-02-24 · NDSS 2020 2 · Kyungtae Kim† Dae R. Jeong‡ Chung Hwan Kim¶ Yeongjin Jang§ Insik Shin‡ Byoungyoung Lee∗†

Hybrid fuzzing, combining symbolic execution and fuzzing, is a promising approach for vulnerability discovery because each approach can complement the other. However, we observe that applying hybrid fuzzing to kernel …

CPU

DeFuzz: Deep Learning Guided Directed Fuzzing

2020-10-23 · Xiaogang Zhu, Shigang Liu, Xian Li, Sheng Wen 외

Fuzzing is one of the most effective technique to identify potential software vulnerabilities. Most of the fuzzers aim to improve the code coverage, and there is lack of directedness (e.g., fuzz the specified path in a s…

Deep LearningVulnerability Detection

FIRE: Frobenius-Isometry Reinitialization for Balancing the Stability-Plasticity Tradeoff

2026-02-08 · Isaac Han, Sangyeon Park, Seungwon Oh, Donghu Kim 외 arxiv

Deep neural networks trained on nonstationary data must balance stability (i.e., retaining prior knowledge) and plasticity (i.e., adapting to new tasks). Standard reinitialization methods, which reinitialize weights towa…

Reinforcement LearningAtari Games

Adaptive Grey-Box Fuzz-Testing with Thompson Sampling

2018-08-24 · Siddharth Karamcheti, Gideon Mann, David Rosenberg

Fuzz testing, or "fuzzing," refers to a widely deployed class of techniques for testing programs by generating a set of inputs for the express purpose of finding bugs and identifying security flaws. Grey-box fuzzing, the…

Thompson Sampling