003 File Manager
Current Path:
/usr/src/crypto/openssh/regress/misc/fuzz-harness
usr
/
src
/
crypto
/
openssh
/
regress
/
misc
/
fuzz-harness
/
📁
..
📄
Makefile
(729 B)
📄
README
(74 B)
📄
authopt_fuzz.cc
(655 B)
📄
pubkey_fuzz.cc
(283 B)
📄
sig_fuzz.cc
(1.59 KB)
Editing: pubkey_fuzz.cc
#include <stddef.h> #include <stdio.h> #include <stdint.h> extern "C" { #include "sshkey.h" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { struct sshkey *k = NULL; int r = sshkey_from_blob(data, size, &k); if (r == 0) sshkey_free(k); return 0; } } // extern
Upload File
Create Folder