From aa6dd9cb9a03e3ae3962c7fa9d37f66029918a1a Mon Sep 17 00:00:00 2001 From: mozamils Date: Tue, 23 Jun 2026 15:27:40 -0600 Subject: [PATCH 1/6] Add fuzzing for ssmctl --- projects/ssmctl/Dockerfile | 8 ++++++++ projects/ssmctl/build.sh | 10 ++++++++++ projects/ssmctl/project.yml | 10 ++++++++++ 3 files changed, 28 insertions(+) create mode 100644 projects/ssmctl/Dockerfile create mode 100644 projects/ssmctl/build.sh create mode 100644 projects/ssmctl/project.yml diff --git a/projects/ssmctl/Dockerfile b/projects/ssmctl/Dockerfile new file mode 100644 index 000000000000..7f69db4b0f74 --- /dev/null +++ b/projects/ssmctl/Dockerfile @@ -0,0 +1,8 @@ +FROM gcr.io/oss-fuzz-base/base-builder-go + +RUN git clone --depth 1 https://github.com/rhysmcneill/ssmctl $GOPATH/src/ssmctl +WORKDIR $GOPATH/src/ssmctl + +COPY build.sh / +RUN chmod +x /build.sh +ENTRYPOINT ["/build.sh"] diff --git a/projects/ssmctl/build.sh b/projects/ssmctl/build.sh new file mode 100644 index 000000000000..24f0d58af2b8 --- /dev/null +++ b/projects/ssmctl/build.sh @@ -0,0 +1,10 @@ +#!/bin/bash -eu + +cd $GOPATH/src/ssmctl + +go mod download + +# Compile all fuzz tests +for fuzz in ShellQuote PowerShellQuote SanitizeBasename RemoteBaseName ParseArg NormalizeWindowsPath AllInstanceIDs NameTag TargetInfoFromInstance FirstInstance NoInstancesFound ListInstancesFiltering DownloadBase64Decoding ParseRemoteFlag; do + compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm "Fuzz${fuzz}" fuzz_ +done diff --git a/projects/ssmctl/project.yml b/projects/ssmctl/project.yml new file mode 100644 index 000000000000..ebe38d48dde5 --- /dev/null +++ b/projects/ssmctl/project.yml @@ -0,0 +1,10 @@ +homepage: "https://github.com/rhysmcneill/ssmctl" +primary_contact: "rhysmcneill7@hotmail.co.uk" +language: "go" +fuzzing_engines: + - libfuzzer +sanitizers: + - address + - memory +vendor_ccs: + - "rhysmcneill7@hotmail.co.uk" From 535a3f62bdc364c6a8040d6088c871a95a0f9ede Mon Sep 17 00:00:00 2001 From: mozamils Date: Tue, 23 Jun 2026 15:27:40 -0600 Subject: [PATCH 2/6] Added license header in `build.sh` --- projects/ssmctl/build.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/projects/ssmctl/build.sh b/projects/ssmctl/build.sh index 24f0d58af2b8..cee17db0451e 100644 --- a/projects/ssmctl/build.sh +++ b/projects/ssmctl/build.sh @@ -1,10 +1,24 @@ #!/bin/bash -eu +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the Apache License, Version 2.0. +# +################################################################################ cd $GOPATH/src/ssmctl go mod download # Compile all fuzz tests -for fuzz in ShellQuote PowerShellQuote SanitizeBasename RemoteBaseName ParseArg NormalizeWindowsPath AllInstanceIDs NameTag TargetInfoFromInstance FirstInstance NoInstancesFound ListInstancesFiltering DownloadBase64Decoding ParseRemoteFlag; do +for fuzz in ShellQuote PowerShellQuote SanitizeBasename RemoteBaseName ParseArg NormalizeWindowsPath AllInstanceIDs NameTag TargetInfoFromInstance FirstInstance NoInstancesFound ListInstancesFiltering DownloadBase64Decoding ParseRemoteFlag ParseS3URL; do compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm "Fuzz${fuzz}" fuzz_ done From 83d3f49e3916a2eb839f0cbdc2f4bf839773b867 Mon Sep 17 00:00:00 2001 From: mozamils Date: Tue, 23 Jun 2026 15:27:40 -0600 Subject: [PATCH 3/6] minor change to re-run CLA workflow --- projects/ssmctl/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ssmctl/build.sh b/projects/ssmctl/build.sh index cee17db0451e..9ab4a6ee0078 100644 --- a/projects/ssmctl/build.sh +++ b/projects/ssmctl/build.sh @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the Apache License, Version 2.0. # -################################################################################ +################################################################################# cd $GOPATH/src/ssmctl From e32abc5d26e066b9ead8d7a7b1e3352ff022d462 Mon Sep 17 00:00:00 2001 From: mozamils Date: Tue, 23 Jun 2026 15:27:41 -0600 Subject: [PATCH 4/6] fix(checkpoint): all tests pass ref forked repo --- projects/ssmctl/Dockerfile | 33 ++++++++++++++++++---- projects/ssmctl/build.sh | 53 ++++++++++++++++++++++++++---------- projects/ssmctl/project.yaml | 10 +++++++ 3 files changed, 76 insertions(+), 20 deletions(-) create mode 100644 projects/ssmctl/project.yaml diff --git a/projects/ssmctl/Dockerfile b/projects/ssmctl/Dockerfile index 7f69db4b0f74..b3d26a857a53 100644 --- a/projects/ssmctl/Dockerfile +++ b/projects/ssmctl/Dockerfile @@ -1,8 +1,31 @@ +# MIT License +# +# Copyright (c) 2026 rhysmcneill +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +############################################################################# + FROM gcr.io/oss-fuzz-base/base-builder-go -RUN git clone --depth 1 https://github.com/rhysmcneill/ssmctl $GOPATH/src/ssmctl -WORKDIR $GOPATH/src/ssmctl +RUN git clone https://github.com/MozamilS/ssmctl $GOPATH/src/github.com/MozamilS/ssmctl && \ + cd $GOPATH/src/github.com/MozamilS/ssmctl && \ + git checkout chore/fuzzing-check + +COPY build.sh /src/ -COPY build.sh / -RUN chmod +x /build.sh -ENTRYPOINT ["/build.sh"] diff --git a/projects/ssmctl/build.sh b/projects/ssmctl/build.sh index 9ab4a6ee0078..3391b88f657f 100644 --- a/projects/ssmctl/build.sh +++ b/projects/ssmctl/build.sh @@ -1,24 +1,47 @@ #!/bin/bash -eu -# Copyright 2026 Google LLC +# MIT License # -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at +# Copyright (c) 2026 rhysmcneill # -# http://www.apache.org/licenses/LICENSE-2.0 +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# Unless required by applicable law or agreed to in writing, WITHOUT WARRANTIES OR -# CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the Apache License, Version 2.0. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. ################################################################################# - -cd $GOPATH/src/ssmctl +cd $GOPATH/src/github.com/MozamilS/ssmctl/ go mod download +go mod tidy + +echo "=== FUZZ FUNCTIONS FOUND ===" +grep -r "^func Fuzz" $GOPATH/src/github.com/MozamilS/ssmctl/internal/ssm/ +echo "=== END FUZZ FUNCTIONS ===" -# Compile all fuzz tests -for fuzz in ShellQuote PowerShellQuote SanitizeBasename RemoteBaseName ParseArg NormalizeWindowsPath AllInstanceIDs NameTag TargetInfoFromInstance FirstInstance NoInstancesFound ListInstancesFiltering DownloadBase64Decoding ParseRemoteFlag ParseS3URL; do - compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm "Fuzz${fuzz}" fuzz_ -done +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzSanitizeBasename fuzz_sanitizebasename +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzRemoteBaseName fuzz_remotebasename +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzDownloadBase64Decoding fuzz_downloadbase64decoding +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzAllInstanceIDs fuzz_allinstanceids +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzFirstInstance fuzz_firstinstance +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzShellQuote fuzz_shellquote +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzPowerShellQuote fuzz_powershellquote +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzNoInstancesFound fuzz_noinstancesfound +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzNormalizeWindowsPath fuzz_normalizewindowspath +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzTargetInfoFromInstance fuzz_targetinfofrommodule +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzParseRemoteFlag fuzz_parseremotsflag +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzNameTag fuzz_nametag +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzParseArg fuzz_parsearg +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzParseS3URL fuzz_parses3url +compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzListInstancesFiltering fuzz_list diff --git a/projects/ssmctl/project.yaml b/projects/ssmctl/project.yaml new file mode 100644 index 000000000000..17430582d281 --- /dev/null +++ b/projects/ssmctl/project.yaml @@ -0,0 +1,10 @@ +homepage: "https://github.com/rhysmcneill/ssmctl" +language: go +primary_contact: "rhysmcneill7@hotmail.co.uk" +fuzzing_engines: + - libfuzzer +sanitizers: + - address +main_repo: 'https://github.com/rhysmcneill/ssmctl.git' +auto_ccs: + - "rhysmcneill7@hotmail.co.uk" From 578490e7402054742d00e7c48addc284dde20d62 Mon Sep 17 00:00:00 2001 From: mozamils Date: Tue, 23 Jun 2026 15:27:41 -0600 Subject: [PATCH 5/6] fix: Added dependency `github.com/AdamKorcz/go-118-fuzz-build/strong` to all fuzzers. Locally ran instance goes through each fuzzer successfully now. --- projects/ssmctl/Dockerfile | 5 ++--- projects/ssmctl/build.sh | 36 ++++++++++++++++-------------------- 2 files changed, 18 insertions(+), 23 deletions(-) diff --git a/projects/ssmctl/Dockerfile b/projects/ssmctl/Dockerfile index b3d26a857a53..c3ed97326204 100644 --- a/projects/ssmctl/Dockerfile +++ b/projects/ssmctl/Dockerfile @@ -23,9 +23,8 @@ FROM gcr.io/oss-fuzz-base/base-builder-go -RUN git clone https://github.com/MozamilS/ssmctl $GOPATH/src/github.com/MozamilS/ssmctl && \ - cd $GOPATH/src/github.com/MozamilS/ssmctl && \ - git checkout chore/fuzzing-check +RUN git clone --depth 1 https://github.com/rhysmcneill/ssmctl $GOPATH/src/github.com/rhysmcneill/ssmctl && \ + cd $GOPATH/src/github.com/rhysmcneill/ssmctl COPY build.sh /src/ diff --git a/projects/ssmctl/build.sh b/projects/ssmctl/build.sh index 3391b88f657f..3afac1a6fa19 100644 --- a/projects/ssmctl/build.sh +++ b/projects/ssmctl/build.sh @@ -21,27 +21,23 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ################################################################################# -cd $GOPATH/src/github.com/MozamilS/ssmctl/ +cd $GOPATH/src/github.com/rhysmcneill/ssmctl/ go mod download go mod tidy -echo "=== FUZZ FUNCTIONS FOUND ===" -grep -r "^func Fuzz" $GOPATH/src/github.com/MozamilS/ssmctl/internal/ssm/ -echo "=== END FUZZ FUNCTIONS ===" - -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzSanitizeBasename fuzz_sanitizebasename -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzRemoteBaseName fuzz_remotebasename -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzDownloadBase64Decoding fuzz_downloadbase64decoding -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzAllInstanceIDs fuzz_allinstanceids -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzFirstInstance fuzz_firstinstance -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzShellQuote fuzz_shellquote -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzPowerShellQuote fuzz_powershellquote -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzNoInstancesFound fuzz_noinstancesfound -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzNormalizeWindowsPath fuzz_normalizewindowspath -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzTargetInfoFromInstance fuzz_targetinfofrommodule -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzParseRemoteFlag fuzz_parseremotsflag -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzNameTag fuzz_nametag -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzParseArg fuzz_parsearg -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzParseS3URL fuzz_parses3url -compile_native_go_fuzzer github.com/MozamilS/ssmctl/internal/ssm FuzzListInstancesFiltering fuzz_list +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzSanitizeBasename fuzz_sanitizebasename +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzRemoteBaseName fuzz_remotebasename +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzDownloadBase64Decoding fuzz_downloadbase64decoding +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzAllInstanceIDs fuzz_allinstanceids +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzFirstInstance fuzz_firstinstance +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzShellQuote fuzz_shellquote +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzPowerShellQuote fuzz_powershellquote +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzNoInstancesFound fuzz_noinstancesfound +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzNormalizeWindowsPath fuzz_normalizewindowspath +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzTargetInfoFromInstance fuzz_targetinfofrommodule +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzParseRemoteFlag fuzz_parseremotsflag +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzNameTag fuzz_nametag +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzParseArg fuzz_parsearg +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzParseS3URL fuzz_parses3url +compile_native_go_fuzzer github.com/rhysmcneill/ssmctl/internal/ssm FuzzListInstancesFiltering fuzz_list From 33744c94924c1512f695bc13ff9c8f990376ac0b Mon Sep 17 00:00:00 2001 From: mozamils Date: Tue, 23 Jun 2026 15:27:41 -0600 Subject: [PATCH 6/6] chore: replaced MIT license with Google license in build.sh and removed license from Dockerfile --- projects/ssmctl/Dockerfile | 23 ----------------------- projects/ssmctl/build.sh | 29 +++++++++++------------------ projects/ssmctl/project.yml | 10 ---------- 3 files changed, 11 insertions(+), 51 deletions(-) delete mode 100644 projects/ssmctl/project.yml diff --git a/projects/ssmctl/Dockerfile b/projects/ssmctl/Dockerfile index c3ed97326204..4f8c043f21c4 100644 --- a/projects/ssmctl/Dockerfile +++ b/projects/ssmctl/Dockerfile @@ -1,26 +1,3 @@ -# MIT License -# -# Copyright (c) 2026 rhysmcneill -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. -############################################################################# - FROM gcr.io/oss-fuzz-base/base-builder-go RUN git clone --depth 1 https://github.com/rhysmcneill/ssmctl $GOPATH/src/github.com/rhysmcneill/ssmctl && \ diff --git a/projects/ssmctl/build.sh b/projects/ssmctl/build.sh index 3afac1a6fa19..d9f84f5d39dd 100644 --- a/projects/ssmctl/build.sh +++ b/projects/ssmctl/build.sh @@ -1,26 +1,19 @@ #!/bin/bash -eu -# MIT License +# Copyright 2026 Google LLC # -# Copyright (c) 2026 rhysmcneill +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +# http://www.apache.org/licenses/LICENSE-2.0 # -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. -################################################################################# +################################################################################ cd $GOPATH/src/github.com/rhysmcneill/ssmctl/ go mod download diff --git a/projects/ssmctl/project.yml b/projects/ssmctl/project.yml deleted file mode 100644 index ebe38d48dde5..000000000000 --- a/projects/ssmctl/project.yml +++ /dev/null @@ -1,10 +0,0 @@ -homepage: "https://github.com/rhysmcneill/ssmctl" -primary_contact: "rhysmcneill7@hotmail.co.uk" -language: "go" -fuzzing_engines: - - libfuzzer -sanitizers: - - address - - memory -vendor_ccs: - - "rhysmcneill7@hotmail.co.uk"