From 29b1bbe08d45b44d48a4f0f220be6001000b9b93 Mon Sep 17 00:00:00 2001 From: ennamarie19 <89044704+ennamarie19@users.noreply.github.com> Date: Tue, 30 Jan 2024 11:09:13 -0500 Subject: [PATCH] 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. --- projects/librosa/project.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 projects/librosa/project.yaml diff --git a/projects/librosa/project.yaml b/projects/librosa/project.yaml new file mode 100644 index 000000000..764411996 --- /dev/null +++ b/projects/librosa/project.yaml @@ -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"