mirror of https://github.com/google/oss-fuzz.git
Initial project skeleton for librosa (#11399)
Librosa is a powerful Python library for audio analysis and manipulation. It is used to analyze and manipulate audio files in a variety of formats such as WAV, OGG, MP3, FLAC, etc. It is used to extract features from audio files, manipulate audio in various ways, and build machine learning models for speech recognition, music genre classification and instrument recognition. It has a large user base with nearly 6,500 stars on Github and referenced in numerous research papers. This project is important to be fuzzed as it depends on user input which can be used to exploit crashes in the Python code to achieve malicious ends such as DoS.
This commit is contained in:
parent
d92d425d81
commit
29b1bbe08d
|
@ -0,0 +1,11 @@
|
|||
homepage: "https://librosa.org/doc/latest/index.html"
|
||||
language: python
|
||||
primary_contact: "brian.mcfee@nyu.edu"
|
||||
auto_ccs:
|
||||
- "ennamarie19@gmail.com"
|
||||
fuzzing_engines:
|
||||
- libfuzzer
|
||||
sanitizers:
|
||||
- address
|
||||
- undefined
|
||||
main_repo: "https://github.com/librosa/librosa.git"
|
Loading…
Reference in New Issue