You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the API for endpoint verification is /api/{accountid}/v1/AeroAppointments. This endpoint is not appropriate as it might involve COGs.
Pattern Detection
Expected Behavior
The current API key pattern should match the pattern required.
Actual Behavior
The \b at the end of the regex is looking for a word boundary. In this case, the 20-character sequence is immediately followed by a /, which is not a word character. The word boundary \b is expecting a transition from a word character to a non-word character or the end of the string, which doesn't occur here.
Steps to Reproduce
Go to '...'
Click on '....'
Scroll down to '....'
See error
Environment
OS: [e.g. iOS]
Version [e.g. 22]
Additional Context
References
#0000
The text was updated successfully, but these errors were encountered:
Please review the Community Note before submitting
TruffleHog Version
Trace Output
Verification Endpoint
Expected Behavior
Correct API endpoint for verification must be used
/api/{accountid}/me
which aligns with other detector patterns as well.Reference: https://api.aeroworkflow.com/swagger/index.html
Actual Behavior
Currently the API for endpoint verification is
/api/{accountid}/v1/AeroAppointments
. This endpoint is not appropriate as it might involve COGs.Pattern Detection
Expected Behavior
The current API key pattern should match the pattern required.
Actual Behavior
The
\b
at the end of the regex is looking for a word boundary. In this case, the 20-character sequence is immediately followed by a/
, which is not a word character. The word boundary\b
is expecting a transition from a word character to a non-word character or the end of the string, which doesn't occur here.Steps to Reproduce
Environment
Additional Context
References
The text was updated successfully, but these errors were encountered: