Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 344 Bytes

File metadata and controls

17 lines (13 loc) · 344 Bytes

SerialFuzzer

a (dumb) fuzzer for serial interfaces.

Usage (a sample script)

import serialfuzzer
import serial
import time

with serial.Serial("/dev/tty.usbmodem1421202", baudrate=115200) as se:
    fuzzer = serialfuzzer.SerialFuzzer(se, 1, 0)
    for _ in range(100):
        input = fuzzer.fuzz()
        time.sleep(0.5)