From eea08d55e18ffe44a9ef478688d9b0fb69271f6d Mon Sep 17 00:00:00 2001 From: ennamarie19 <89044704+ennamarie19@users.noreply.github.com> Date: Thu, 16 Nov 2023 08:57:09 -0700 Subject: [PATCH] Initial Project Skeleton for jc (#11228) jc JSONifies the output of many CLI tools, file-types, and common strings for easier parsing in scripts. In other words, it converts the output of dozens of GNU and non-GNU commands and configuration files to JSON. Instead of everyone needing to create their own custom parsers for these common utilities and files, jc acts as a central clearinghouse of parsing libraries that just need to be written once and can be used by everyone. The project is also a [filter] https://docs.ansible.com/ansible/latest/collections/community/general/docsite/filter_guide_conversions.html#converting-to-json) plugin in the Ansible community.general collection. Ansible has the largest market share of configuration management tools at 30.98% and is the most popular open source automation tool on GitHub today with more than a quarter million downloads per month. Should jc have a critical vulnerability left unnoticed and unresolved, this could leave Ansible, and the 32 thousand plus companies who utilize the tool around the world, vulnerable to attack by malicious actors. --------- Co-authored-by: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Co-authored-by: bcapuano Co-authored-by: Bailey Capuano <32396237+capuanob@users.noreply.github.com> --- projects/jc/project.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 projects/jc/project.yaml diff --git a/projects/jc/project.yaml b/projects/jc/project.yaml new file mode 100644 index 000000000..86358a8d6 --- /dev/null +++ b/projects/jc/project.yaml @@ -0,0 +1,10 @@ +homepage: "https://kellyjonbrazil.github.io/jc/docs/" +language: python +primary_contact: "kellyjonbrazil@gmail.com" +auto_ccs: + - "ennamarie19@gmail.com" +fuzzing_engines: + - libfuzzer +sanitizers: + - address +main_repo: "https://github.com/kellyjonbrazil/jc.git"