Skip to content

Commit

Permalink
Add: Shopify, Sidekiq
Browse files Browse the repository at this point in the history
  • Loading branch information
Sambit003 committed Sep 16, 2024
1 parent d58ae51 commit d06b385
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 5 deletions.
25 changes: 22 additions & 3 deletions packages/secret-scan/src/denylist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ import {
square_OAuth,
stripe,
telegram_token,
twilio, dropbox, duffel, dynatrace,
twilio,
dropbox,
duffel,
dynatrace,
easypost,
facebook,
flutterwave,
Expand All @@ -53,7 +56,19 @@ import {
infracost,
intra42,
// kubernetes,
linear, lob, planetscale, postman, prefect, pulumi, readme, rubygems, scalingo, sendinblue, shippo
linear,
lob,
planetscale,
postman,
prefect,
pulumi,
readme,
rubygems,
scalingo,
sendinblue,
shippo,
shopify,
sidekiq
} from '@/rules'

const denylist: SecretConfig = {
Expand Down Expand Up @@ -190,7 +205,11 @@ const denylist: SecretConfig = {

sendinblue: sendinblue(),

shippo: shippo()
shippo: shippo(),

shopify: shopify(),

sidekiq: sidekiq()
}

export default denylist
6 changes: 5 additions & 1 deletion packages/secret-scan/src/rules/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ import rubygems from './rubygems'
import scalingo from './scalingo'
import sendinblue from './sendinblue'
import shippo from './shippo'
import shopify from './shopify'
import sidekiq from './sidekiq'

export {
private_key,
Expand Down Expand Up @@ -133,5 +135,7 @@ export {
rubygems,
scalingo,
sendinblue,
shippo
shippo,
shopify,
sidekiq
}
55 changes: 55 additions & 0 deletions packages/secret-scan/src/rules/shopify.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// keyshade-ignore-all
import type { TestCase }from '@/types'

export default function shopify(): RegExp[] {
return [
// Shopify Shared Secret regex
/shpss_[a-fA-F0-9]{32}/,

// Shopify Access Token Regex
/shpat_[a-fA-F0-9]{32}/,

// Shopify Custom Access Token Regex
/shpca_[a-fA-F0-9]{32}/,

// Shopify Private App Access Token
/shppa_[a-fA-F0-9]{32}/
]
}

const testcase: TestCase[] = [
{
input: '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',
expected: true
},
{
input: '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',
expected: true
},
{
input: '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',
expected: true
},
{
input: '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',
expected: true
},
{
input: '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',
expected: true
},
{
input: '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',
expected: true
},
{
input: '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',
expected: true
},
{
input: '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',
expected: true
}
]

shopify.testcases = testcase
33 changes: 33 additions & 0 deletions packages/secret-scan/src/rules/sidekiq.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// keyshade-ignore-all
import type { TestCase }from '@/types'

export default function sidekiq(): RegExp[] {
return [
// Sidekiq Secret regex
/BUNDLE_ENTERPRISE__CONTRIBSYS__COM|BUNDLE_GEMS__CONTRIBSYS__COM( = |=)[^\n]*[a-f0-9]{8}:[a-f0-9]{8}/,

// Sidekiq Sensitive URL Regex
/\bhttps?:\/\/([a-f0-9]{8}:[a-f0-9]{8})@(gems\.contribsys\.com|enterprise\.contribsys\.com)(?:[\/|#|?|:]|$)/i
]
}

const testcase: TestCase[] = [
{
input: 'BUNDLE_GEMS__CONTRIBSYS__COM=UBrkb/_"6,a,:,xH:}L02N[LFDkqM9+rLk.q~X%+\'zZP>vku<0eaYlV9Uj+YGh]; y%fiMj9j0ba92c069:de1f9899',
expected: true
},
{
input: 'BUNDLE_ENTERPRISE__CONTRIBSYS__COM',
expected: true
},
{
input: 'http://f85e09bd:[email protected]/',
expected: true
},
{
input: 'http://70310b59:[email protected]',
expected: true
}
]

sidekiq.testcases = testcase
10 changes: 9 additions & 1 deletion packages/secret-scan/src/test/secret.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ import {
rubygems,
scalingo,
sendinblue,
shippo
shippo,
shopify,
sidekiq
} from '@/rules'
import type { TestCase } from '@/types'
import secretDetector from '@/index'
Expand Down Expand Up @@ -306,4 +308,10 @@ describe('Detect Secrets from string', () => {
it(testcaseTitleTemplate('Shippo Key'), () => {
testSecret(shippo.testcases)
});
it(testcaseTitleTemplate('Shopify Key'), () => {
testSecret(shopify.testcases)
});
it(testcaseTitleTemplate('Sidekiq Key'), () => {
testSecret(sidekiq.testcases)
});
})

0 comments on commit d06b385

Please sign in to comment.