[INS-320] Cloudinary detector#4747
Open
MuneebUllahKhan222 wants to merge 12 commits intotrufflesecurity:mainfrom
Open
[INS-320] Cloudinary detector#4747MuneebUllahKhan222 wants to merge 12 commits intotrufflesecurity:mainfrom
MuneebUllahKhan222 wants to merge 12 commits intotrufflesecurity:mainfrom
Conversation
amanfcp
approved these changes
Feb 18, 2026
Contributor
amanfcp
left a comment
There was a problem hiding this comment.
LGTM, just shared a concern which could lead to false negatives.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
rosecodym
approved these changes
Feb 19, 2026
Contributor
rosecodym
left a comment
There was a problem hiding this comment.
🤠 for a new detector. I've created a backlog ticket to separate this codeownership.
shahzadhaider1
approved these changes
Feb 26, 2026
Contributor
shahzadhaider1
left a comment
There was a problem hiding this comment.
please resolve the conflicts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
This PR adds cloudinary detector. It detects cloudinary creds like cloud name, api key and api secret and verifies them.
Checklist:
make test-community)?make lintthis requires golangci-lint)?Note
Medium Risk
Adds a new detector that makes outbound HTTP requests to Cloudinary for credential verification; regex matching and multi-part combination logic can also impact false-positive/false-negative rates and performance.
Overview
Adds a new
cloudinarydetector that extracts CloudinarycloudName,apiKey, andapiSecretfrom source text (including URL-stylecloudinary://key:secret@name) and emits results as a combinedRawV2triple.When verification is enabled, the detector performs a Basic Auth
GETtoapi.cloudinary.com/v1_1/<cloudName>/usageto mark credentials as verified/invalid and records unexpected/transport errors as verification errors.Registers the detector in the default detector list and introduces a new protobuf
DetectorType_Cloudinaryenum value, with unit + integration tests/benchmarks covering match behavior and verification paths.Written by Cursor Bugbot for commit 3b68eaa. This will update automatically on new commits. Configure here.