10 lines
218 B
Bash
Executable file
10 lines
218 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p data
|
|
cp ../data/users.db ./data/users.db
|
|
mkdir -p configs
|
|
cp ../configs/config.toml ./configs/config.toml
|
|
|
|
mkdir -p fuzz_out
|
|
|
|
afl-fuzz -V $(( 60 * 5 )) -i fuzz_in -o fuzz_out -- ./authapp_for_afl
|