gitleaks.toml 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  1. # This file has been auto-generated. Do not edit manually.
  2. # If you would like to contribute new rules, please use
  3. # cmd/generate/config/main.go and follow the contributing guidelines
  4. # at https://github.com/zricethezav/gitleaks/blob/master/CONTRIBUTING.md
  5. # This is the default gitleaks configuration file.
  6. # Rules and allowlists are defined within this file.
  7. # Rules instruct gitleaks on what should be considered a secret.
  8. # Allowlists instruct gitleaks on what is allowed, i.e. not a secret.
  9. title = "gitleaks config"
  10. [allowlist]
  11. description = "global allow lists"
  12. paths = [
  13. '''gitleaks.toml''',
  14. '''(.*?)(jpg|gif|doc|docx|zip|xls|pdf|bin|svg|socket)$''',
  15. '''(go.mod|go.sum)$''',
  16. '''node_modules''',
  17. '''vendor''',
  18. ]
  19. [[rules]]
  20. description = "Adafruit API Key"
  21. id = "adafruit-api-key"
  22. regex = '''(?i)(?:adafruit)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9_-]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  23. secretGroup = 1
  24. keywords = [
  25. "adafruit",
  26. ]
  27. [[rules]]
  28. description = "Adobe Client ID (OAuth Web)"
  29. id = "adobe-client-id"
  30. regex = '''(?i)(?:adobe)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  31. secretGroup = 1
  32. keywords = [
  33. "adobe",
  34. ]
  35. [[rules]]
  36. description = "Adobe Client Secret"
  37. id = "adobe-client-secret"
  38. regex = '''(?i)\b((p8e-)(?i)[a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  39. keywords = [
  40. "p8e-",
  41. ]
  42. [[rules]]
  43. description = "Age secret key"
  44. id = "age secret key"
  45. regex = '''AGE-SECRET-KEY-1[QPZRY9X8GF2TVDW0S3JN54KHCE6MUA7L]{58}'''
  46. keywords = [
  47. "age-secret-key-1",
  48. ]
  49. [[rules]]
  50. description = "Airtable API Key"
  51. id = "airtable-api-key"
  52. regex = '''(?i)(?:airtable)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{17})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  53. secretGroup = 1
  54. keywords = [
  55. "airtable",
  56. ]
  57. [[rules]]
  58. description = "Algolia API Key"
  59. id = "algolia-api-key"
  60. regex = '''(?i)(?:algolia)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  61. keywords = [
  62. "algolia",
  63. ]
  64. [[rules]]
  65. description = "Alibaba AccessKey ID"
  66. id = "alibaba-access-key-id"
  67. regex = '''(?i)\b((LTAI)(?i)[a-z0-9]{20})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  68. keywords = [
  69. "ltai",
  70. ]
  71. [[rules]]
  72. description = "Alibaba Secret Key"
  73. id = "alibaba-secret-key"
  74. regex = '''(?i)(?:alibaba)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{30})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  75. secretGroup = 1
  76. keywords = [
  77. "alibaba",
  78. ]
  79. [[rules]]
  80. description = "Asana Client ID"
  81. id = "asana-client-id"
  82. regex = '''(?i)(?:asana)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9]{16})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  83. secretGroup = 1
  84. keywords = [
  85. "asana",
  86. ]
  87. [[rules]]
  88. description = "Asana Client Secret"
  89. id = "asana-client-secret"
  90. regex = '''(?i)(?:asana)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  91. secretGroup = 1
  92. keywords = [
  93. "asana",
  94. ]
  95. [[rules]]
  96. description = "Atlassian API token"
  97. id = "atlassian-api-token"
  98. regex = '''(?i)(?:atlassian|confluence|jira)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{24})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  99. secretGroup = 1
  100. keywords = [
  101. "atlassian","confluence","jira",
  102. ]
  103. [[rules]]
  104. description = "AWS"
  105. id = "aws-access-token"
  106. regex = '''(A3T[A-Z0-9]|AKIA|AGPA|AIDA|AROA|AIPA|ANPA|ANVA|ASIA)[A-Z0-9]{16}'''
  107. keywords = [
  108. "akia","agpa","aida","aroa","aipa","anpa","anva","asia",
  109. ]
  110. [[rules]]
  111. description = "Beamer API token"
  112. id = "beamer-api-token"
  113. regex = '''(?i)(?:beamer)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(b_[a-z0-9=_\-]{44})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  114. secretGroup = 1
  115. keywords = [
  116. "beamer",
  117. ]
  118. [[rules]]
  119. description = "Bitbucket Client ID"
  120. id = "bitbucket-client-id"
  121. regex = '''(?i)(?:bitbucket)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  122. secretGroup = 1
  123. keywords = [
  124. "bitbucket",
  125. ]
  126. [[rules]]
  127. description = "Bitbucket Client Secret"
  128. id = "bitbucket-client-secret"
  129. regex = '''(?i)(?:bitbucket)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  130. secretGroup = 1
  131. keywords = [
  132. "bitbucket",
  133. ]
  134. [[rules]]
  135. description = "Bittrex Access Key"
  136. id = "bittrex-access-key"
  137. regex = '''(?i)(?:bittrex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  138. secretGroup = 1
  139. keywords = [
  140. "bittrex",
  141. ]
  142. [[rules]]
  143. description = "Bittrex Secret Key"
  144. id = "bittrex-secret-key"
  145. regex = '''(?i)(?:bittrex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  146. secretGroup = 1
  147. keywords = [
  148. "bittrex",
  149. ]
  150. [[rules]]
  151. description = "Clojars API token"
  152. id = "clojars-api-token"
  153. regex = '''(?i)(CLOJARS_)[a-z0-9]{60}'''
  154. keywords = [
  155. "clojars",
  156. ]
  157. [[rules]]
  158. description = "Codecov Access Token"
  159. id = "codecov-access-token"
  160. regex = '''(?i)(?:codecov)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  161. secretGroup = 1
  162. keywords = [
  163. "codecov",
  164. ]
  165. [[rules]]
  166. description = "Coinbase Access Token"
  167. id = "coinbase-access-token"
  168. regex = '''(?i)(?:coinbase)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9_-]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  169. secretGroup = 1
  170. keywords = [
  171. "coinbase",
  172. ]
  173. [[rules]]
  174. description = "Confluent Access Token"
  175. id = "confluent-access-token"
  176. regex = '''(?i)(?:confluent)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{16})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  177. secretGroup = 1
  178. keywords = [
  179. "confluent",
  180. ]
  181. [[rules]]
  182. description = "Confluent Secret Key"
  183. id = "confluent-secret-key"
  184. regex = '''(?i)(?:confluent)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  185. secretGroup = 1
  186. keywords = [
  187. "confluent",
  188. ]
  189. [[rules]]
  190. description = "Contentful delivery API token"
  191. id = "contentful-delivery-api-token"
  192. regex = '''(?i)(?:contentful)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{43})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  193. secretGroup = 1
  194. keywords = [
  195. "contentful",
  196. ]
  197. [[rules]]
  198. description = "Databricks API token"
  199. id = "databricks-api-token"
  200. regex = '''(?i)\b(dapi[a-h0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  201. keywords = [
  202. "dapi",
  203. ]
  204. [[rules]]
  205. description = "Datadog Access Token"
  206. id = "datadog-access-token"
  207. regex = '''(?i)(?:datadog)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  208. secretGroup = 1
  209. keywords = [
  210. "datadog",
  211. ]
  212. [[rules]]
  213. description = "Discord API key"
  214. id = "discord-api-token"
  215. regex = '''(?i)(?:discord)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  216. secretGroup = 1
  217. keywords = [
  218. "discord",
  219. ]
  220. [[rules]]
  221. description = "Discord client ID"
  222. id = "discord-client-id"
  223. regex = '''(?i)(?:discord)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9]{18})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  224. secretGroup = 1
  225. keywords = [
  226. "discord",
  227. ]
  228. [[rules]]
  229. description = "Discord client secret"
  230. id = "discord-client-secret"
  231. regex = '''(?i)(?:discord)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  232. secretGroup = 1
  233. keywords = [
  234. "discord",
  235. ]
  236. [[rules]]
  237. description = "Doppler API token"
  238. id = "doppler-api-token"
  239. regex = '''(dp\.pt\.)(?i)[a-z0-9]{43}'''
  240. keywords = [
  241. "doppler",
  242. ]
  243. [[rules]]
  244. description = "Droneci Access Token"
  245. id = "droneci-access-token"
  246. regex = '''(?i)(?:droneci)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  247. secretGroup = 1
  248. keywords = [
  249. "droneci",
  250. ]
  251. [[rules]]
  252. description = "Dropbox API secret"
  253. id = "dropbox-api-token"
  254. regex = '''(?i)(?:dropbox)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{15})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  255. secretGroup = 1
  256. keywords = [
  257. "dropbox",
  258. ]
  259. [[rules]]
  260. description = "Dropbox long lived API token"
  261. id = "dropbox-long-lived-api-token"
  262. regex = '''(?i)(?:dropbox)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{11}(AAAAAAAAAA)[a-z0-9\-_=]{43})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  263. keywords = [
  264. "dropbox",
  265. ]
  266. [[rules]]
  267. description = "Dropbox short lived API token"
  268. id = "dropbox-short-lived-api-token"
  269. regex = '''(?i)(?:dropbox)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(sl\.[a-z0-9\-=_]{135})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  270. keywords = [
  271. "dropbox",
  272. ]
  273. [[rules]]
  274. description = "Duffel API token"
  275. id = "duffel-api-token"
  276. regex = '''duffel_(test|live)_(?i)[a-z0-9_\-=]{43}'''
  277. keywords = [
  278. "duffel",
  279. ]
  280. [[rules]]
  281. description = "Dynatrace API token"
  282. id = "dynatrace-api-token"
  283. regex = '''dt0c01\.(?i)[a-z0-9]{24}\.[a-z0-9]{64}'''
  284. keywords = [
  285. "dynatrace",
  286. ]
  287. [[rules]]
  288. description = "EasyPost API token"
  289. id = "easypost-api-token"
  290. regex = '''EZAK(?i)[a-z0-9]{54}'''
  291. keywords = [
  292. "ezak",
  293. ]
  294. [[rules]]
  295. description = "EasyPost test API token"
  296. id = "easypost-test-api-token"
  297. regex = '''EZTK(?i)[a-z0-9]{54}'''
  298. keywords = [
  299. "eztk",
  300. ]
  301. [[rules]]
  302. description = "Etsy Access Token"
  303. id = "etsy-access-token"
  304. regex = '''(?i)(?:etsy)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{24})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  305. secretGroup = 1
  306. keywords = [
  307. "etsy",
  308. ]
  309. [[rules]]
  310. description = "Facebook"
  311. id = "facebook"
  312. regex = '''(?i)(?:facebook)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  313. secretGroup = 1
  314. keywords = [
  315. "facebook",
  316. ]
  317. [[rules]]
  318. description = "Fastly API key"
  319. id = "fastly-api-token"
  320. regex = '''(?i)(?:fastly)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  321. secretGroup = 1
  322. keywords = [
  323. "fastly",
  324. ]
  325. [[rules]]
  326. description = "Finicity API token"
  327. id = "finicity-api-token"
  328. regex = '''(?i)(?:finicity)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  329. secretGroup = 1
  330. keywords = [
  331. "finicity",
  332. ]
  333. [[rules]]
  334. description = "Finicity Client Secret"
  335. id = "finicity-client-secret"
  336. regex = '''(?i)(?:finicity)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{20})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  337. secretGroup = 1
  338. keywords = [
  339. "finicity",
  340. ]
  341. [[rules]]
  342. description = "Finnhub Access Token"
  343. id = "finnhub-access-token"
  344. regex = '''(?i)(?:finnhub)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{20})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  345. secretGroup = 1
  346. keywords = [
  347. "finnhub",
  348. ]
  349. [[rules]]
  350. description = "Flickr Access Token"
  351. id = "flickr-access-token"
  352. regex = '''(?i)(?:flickr)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  353. secretGroup = 1
  354. keywords = [
  355. "flickr",
  356. ]
  357. [[rules]]
  358. description = "Flutterwave Encryption Key"
  359. id = "flutterwave-encryption-key"
  360. regex = '''FLWSECK_TEST-(?i)[a-h0-9]{12}'''
  361. keywords = [
  362. "flwseck_test",
  363. ]
  364. [[rules]]
  365. description = "Finicity Public Key"
  366. id = "flutterwave-public-key"
  367. regex = '''FLWPUBK_TEST-(?i)[a-h0-9]{32}-X'''
  368. keywords = [
  369. "flwpubk_test",
  370. ]
  371. [[rules]]
  372. description = "Flutterwave Secret Key"
  373. id = "flutterwave-secret-key"
  374. regex = '''FLWSECK_TEST-(?i)[a-h0-9]{32}-X'''
  375. keywords = [
  376. "flwseck_test",
  377. ]
  378. [[rules]]
  379. description = "Frame.io API token"
  380. id = "frameio-api-token"
  381. regex = '''fio-u-(?i)[a-z0-9\-_=]{64}'''
  382. keywords = [
  383. "fio-u-",
  384. ]
  385. [[rules]]
  386. description = "Freshbooks Access Token"
  387. id = "freshbooks-access-token"
  388. regex = '''(?i)(?:freshbooks)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  389. secretGroup = 1
  390. keywords = [
  391. "freshbooks",
  392. ]
  393. [[rules]]
  394. description = "GCP API key"
  395. id = "gcp-api-key"
  396. regex = '''(?i)\b(AIza[0-9A-Za-z\\-_]{35})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  397. secretGroup = 1
  398. keywords = [
  399. "aiza",
  400. ]
  401. [[rules]]
  402. description = "Generic API Key"
  403. id = "generic-api-key"
  404. regex = '''(?i)(?:key|api|token|secret|client|passwd|password|auth|access)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9a-z\-_.=]{10,150})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  405. secretGroup = 1
  406. entropy = 3.5
  407. keywords = [
  408. "key","api","token","secret","client","passwd","password","auth","access",
  409. ]
  410. [rules.allowlist]
  411. stopwords= [
  412. "client",
  413. "endpoint",
  414. "vpn",
  415. "_ec2_",
  416. "aws_",
  417. "authorize",
  418. "author",
  419. "define",
  420. "config",
  421. "credential",
  422. "setting",
  423. "sample",
  424. "xxxxxx",
  425. "000000",
  426. "buffer",
  427. "delete",
  428. "aaaaaa",
  429. "fewfwef",
  430. "getenv",
  431. "env_",
  432. "system",
  433. "example",
  434. "ecdsa",
  435. "sha256",
  436. "sha1",
  437. "sha2",
  438. "md5",
  439. "alert",
  440. "wizard",
  441. "target",
  442. "onboard",
  443. "welcome",
  444. "page",
  445. "exploit",
  446. "experiment",
  447. "expire",
  448. "rabbitmq",
  449. "scraper",
  450. "widget",
  451. "music",
  452. "dns_",
  453. "dns-",
  454. "yahoo",
  455. "want",
  456. "json",
  457. "action",
  458. "script",
  459. "fix_",
  460. "fix-",
  461. "develop",
  462. "compas",
  463. "stripe",
  464. "service",
  465. "master",
  466. "metric",
  467. "tech",
  468. "gitignore",
  469. "rich",
  470. "open",
  471. "stack",
  472. "irc_",
  473. "irc-",
  474. "sublime",
  475. "kohana",
  476. "has_",
  477. "has-",
  478. "fabric",
  479. "wordpres",
  480. "role",
  481. "osx_",
  482. "osx-",
  483. "boost",
  484. "addres",
  485. "queue",
  486. "working",
  487. "sandbox",
  488. "internet",
  489. "print",
  490. "vision",
  491. "tracking",
  492. "being",
  493. "generator",
  494. "traffic",
  495. "world",
  496. "pull",
  497. "rust",
  498. "watcher",
  499. "small",
  500. "auth",
  501. "full",
  502. "hash",
  503. "more",
  504. "install",
  505. "auto",
  506. "complete",
  507. "learn",
  508. "paper",
  509. "installer",
  510. "research",
  511. "acces",
  512. "last",
  513. "binding",
  514. "spine",
  515. "into",
  516. "chat",
  517. "algorithm",
  518. "resource",
  519. "uploader",
  520. "video",
  521. "maker",
  522. "next",
  523. "proc",
  524. "lock",
  525. "robot",
  526. "snake",
  527. "patch",
  528. "matrix",
  529. "drill",
  530. "terminal",
  531. "term",
  532. "stuff",
  533. "genetic",
  534. "generic",
  535. "identity",
  536. "audit",
  537. "pattern",
  538. "audio",
  539. "web_",
  540. "web-",
  541. "crud",
  542. "problem",
  543. "statu",
  544. "cms-",
  545. "cms_",
  546. "arch",
  547. "coffee",
  548. "workflow",
  549. "changelog",
  550. "another",
  551. "uiview",
  552. "content",
  553. "kitchen",
  554. "gnu_",
  555. "gnu-",
  556. "gnu.",
  557. "conf",
  558. "couchdb",
  559. "client",
  560. "opencv",
  561. "rendering",
  562. "update",
  563. "concept",
  564. "varnish",
  565. "gui_",
  566. "gui-",
  567. "gui.",
  568. "version",
  569. "shared",
  570. "extra",
  571. "product",
  572. "still",
  573. "not_",
  574. "not-",
  575. "not.",
  576. "drop",
  577. "ring",
  578. "png_",
  579. "png-",
  580. "png.",
  581. "actively",
  582. "import",
  583. "output",
  584. "backup",
  585. "start",
  586. "embedded",
  587. "registry",
  588. "pool",
  589. "semantic",
  590. "instagram",
  591. "bash",
  592. "system",
  593. "ninja",
  594. "drupal",
  595. "jquery",
  596. "polyfill",
  597. "physic",
  598. "league",
  599. "guide",
  600. "pack",
  601. "synopsi",
  602. "sketch",
  603. "injection",
  604. "svg_",
  605. "svg-",
  606. "svg.",
  607. "friendly",
  608. "wave",
  609. "convert",
  610. "manage",
  611. "camera",
  612. "link",
  613. "slide",
  614. "timer",
  615. "wrapper",
  616. "gallery",
  617. "url_",
  618. "url-",
  619. "url.",
  620. "todomvc",
  621. "requirej",
  622. "party",
  623. "http",
  624. "payment",
  625. "async",
  626. "library",
  627. "home",
  628. "coco",
  629. "gaia",
  630. "display",
  631. "universal",
  632. "func",
  633. "metadata",
  634. "hipchat",
  635. "under",
  636. "room",
  637. "config",
  638. "personal",
  639. "realtime",
  640. "resume",
  641. "database",
  642. "testing",
  643. "tiny",
  644. "basic",
  645. "forum",
  646. "meetup",
  647. "yet_",
  648. "yet-",
  649. "yet.",
  650. "cento",
  651. "dead",
  652. "fluentd",
  653. "editor",
  654. "utilitie",
  655. "run_",
  656. "run-",
  657. "run.",
  658. "box_",
  659. "box-",
  660. "box.",
  661. "bot_",
  662. "bot-",
  663. "bot.",
  664. "making",
  665. "sample",
  666. "group",
  667. "monitor",
  668. "ajax",
  669. "parallel",
  670. "cassandra",
  671. "ultimate",
  672. "site",
  673. "get_",
  674. "get-",
  675. "get.",
  676. "gen_",
  677. "gen-",
  678. "gen.",
  679. "gem_",
  680. "gem-",
  681. "gem.",
  682. "extended",
  683. "image",
  684. "knife",
  685. "asset",
  686. "nested",
  687. "zero",
  688. "plugin",
  689. "bracket",
  690. "mule",
  691. "mozilla",
  692. "number",
  693. "act_",
  694. "act-",
  695. "act.",
  696. "map_",
  697. "map-",
  698. "map.",
  699. "micro",
  700. "debug",
  701. "openshift",
  702. "chart",
  703. "expres",
  704. "backend",
  705. "task",
  706. "source",
  707. "translate",
  708. "jbos",
  709. "composer",
  710. "sqlite",
  711. "profile",
  712. "mustache",
  713. "mqtt",
  714. "yeoman",
  715. "have",
  716. "builder",
  717. "smart",
  718. "like",
  719. "oauth",
  720. "school",
  721. "guideline",
  722. "captcha",
  723. "filter",
  724. "bitcoin",
  725. "bridge",
  726. "color",
  727. "toolbox",
  728. "discovery",
  729. "new_",
  730. "new-",
  731. "new.",
  732. "dashboard",
  733. "when",
  734. "setting",
  735. "level",
  736. "post",
  737. "standard",
  738. "port",
  739. "platform",
  740. "yui_",
  741. "yui-",
  742. "yui.",
  743. "grunt",
  744. "animation",
  745. "haskell",
  746. "icon",
  747. "latex",
  748. "cheat",
  749. "lua_",
  750. "lua-",
  751. "lua.",
  752. "gulp",
  753. "case",
  754. "author",
  755. "without",
  756. "simulator",
  757. "wifi",
  758. "directory",
  759. "lisp",
  760. "list",
  761. "flat",
  762. "adventure",
  763. "story",
  764. "storm",
  765. "gpu_",
  766. "gpu-",
  767. "gpu.",
  768. "store",
  769. "caching",
  770. "attention",
  771. "solr",
  772. "logger",
  773. "demo",
  774. "shortener",
  775. "hadoop",
  776. "finder",
  777. "phone",
  778. "pipeline",
  779. "range",
  780. "textmate",
  781. "showcase",
  782. "app_",
  783. "app-",
  784. "app.",
  785. "idiomatic",
  786. "edit",
  787. "our_",
  788. "our-",
  789. "our.",
  790. "out_",
  791. "out-",
  792. "out.",
  793. "sentiment",
  794. "linked",
  795. "why_",
  796. "why-",
  797. "why.",
  798. "local",
  799. "cube",
  800. "gmail",
  801. "job_",
  802. "job-",
  803. "job.",
  804. "rpc_",
  805. "rpc-",
  806. "rpc.",
  807. "contest",
  808. "tcp_",
  809. "tcp-",
  810. "tcp.",
  811. "usage",
  812. "buildout",
  813. "weather",
  814. "transfer",
  815. "automated",
  816. "sphinx",
  817. "issue",
  818. "sas_",
  819. "sas-",
  820. "sas.",
  821. "parallax",
  822. "jasmine",
  823. "addon",
  824. "machine",
  825. "solution",
  826. "dsl_",
  827. "dsl-",
  828. "dsl.",
  829. "episode",
  830. "menu",
  831. "theme",
  832. "best",
  833. "adapter",
  834. "debugger",
  835. "chrome",
  836. "tutorial",
  837. "life",
  838. "step",
  839. "people",
  840. "joomla",
  841. "paypal",
  842. "developer",
  843. "solver",
  844. "team",
  845. "current",
  846. "love",
  847. "visual",
  848. "date",
  849. "data",
  850. "canva",
  851. "container",
  852. "future",
  853. "xml_",
  854. "xml-",
  855. "xml.",
  856. "twig",
  857. "nagio",
  858. "spatial",
  859. "original",
  860. "sync",
  861. "archived",
  862. "refinery",
  863. "science",
  864. "mapping",
  865. "gitlab",
  866. "play",
  867. "ext_",
  868. "ext-",
  869. "ext.",
  870. "session",
  871. "impact",
  872. "set_",
  873. "set-",
  874. "set.",
  875. "see_",
  876. "see-",
  877. "see.",
  878. "migration",
  879. "commit",
  880. "community",
  881. "shopify",
  882. "what'",
  883. "cucumber",
  884. "statamic",
  885. "mysql",
  886. "location",
  887. "tower",
  888. "line",
  889. "code",
  890. "amqp",
  891. "hello",
  892. "send",
  893. "index",
  894. "high",
  895. "notebook",
  896. "alloy",
  897. "python",
  898. "field",
  899. "document",
  900. "soap",
  901. "edition",
  902. "email",
  903. "php_",
  904. "php-",
  905. "php.",
  906. "command",
  907. "transport",
  908. "official",
  909. "upload",
  910. "study",
  911. "secure",
  912. "angularj",
  913. "akka",
  914. "scalable",
  915. "package",
  916. "request",
  917. "con_",
  918. "con-",
  919. "con.",
  920. "flexible",
  921. "security",
  922. "comment",
  923. "module",
  924. "flask",
  925. "graph",
  926. "flash",
  927. "apache",
  928. "change",
  929. "window",
  930. "space",
  931. "lambda",
  932. "sheet",
  933. "bookmark",
  934. "carousel",
  935. "friend",
  936. "objective",
  937. "jekyll",
  938. "bootstrap",
  939. "first",
  940. "article",
  941. "gwt_",
  942. "gwt-",
  943. "gwt.",
  944. "classic",
  945. "media",
  946. "websocket",
  947. "touch",
  948. "desktop",
  949. "real",
  950. "read",
  951. "recorder",
  952. "moved",
  953. "storage",
  954. "validator",
  955. "add-on",
  956. "pusher",
  957. "scs_",
  958. "scs-",
  959. "scs.",
  960. "inline",
  961. "asp_",
  962. "asp-",
  963. "asp.",
  964. "timeline",
  965. "base",
  966. "encoding",
  967. "ffmpeg",
  968. "kindle",
  969. "tinymce",
  970. "pretty",
  971. "jpa_",
  972. "jpa-",
  973. "jpa.",
  974. "used",
  975. "user",
  976. "required",
  977. "webhook",
  978. "download",
  979. "resque",
  980. "espresso",
  981. "cloud",
  982. "mongo",
  983. "benchmark",
  984. "pure",
  985. "cakephp",
  986. "modx",
  987. "mode",
  988. "reactive",
  989. "fuel",
  990. "written",
  991. "flickr",
  992. "mail",
  993. "brunch",
  994. "meteor",
  995. "dynamic",
  996. "neo_",
  997. "neo-",
  998. "neo.",
  999. "new_",
  1000. "new-",
  1001. "new.",
  1002. "net_",
  1003. "net-",
  1004. "net.",
  1005. "typo",
  1006. "type",
  1007. "keyboard",
  1008. "erlang",
  1009. "adobe",
  1010. "logging",
  1011. "ckeditor",
  1012. "message",
  1013. "iso_",
  1014. "iso-",
  1015. "iso.",
  1016. "hook",
  1017. "ldap",
  1018. "folder",
  1019. "reference",
  1020. "railscast",
  1021. "www_",
  1022. "www-",
  1023. "www.",
  1024. "tracker",
  1025. "azure",
  1026. "fork",
  1027. "form",
  1028. "digital",
  1029. "exporter",
  1030. "skin",
  1031. "string",
  1032. "template",
  1033. "designer",
  1034. "gollum",
  1035. "fluent",
  1036. "entity",
  1037. "language",
  1038. "alfred",
  1039. "summary",
  1040. "wiki",
  1041. "kernel",
  1042. "calendar",
  1043. "plupload",
  1044. "symfony",
  1045. "foundry",
  1046. "remote",
  1047. "talk",
  1048. "search",
  1049. "dev_",
  1050. "dev-",
  1051. "dev.",
  1052. "del_",
  1053. "del-",
  1054. "del.",
  1055. "token",
  1056. "idea",
  1057. "sencha",
  1058. "selector",
  1059. "interface",
  1060. "create",
  1061. "fun_",
  1062. "fun-",
  1063. "fun.",
  1064. "groovy",
  1065. "query",
  1066. "grail",
  1067. "red_",
  1068. "red-",
  1069. "red.",
  1070. "laravel",
  1071. "monkey",
  1072. "slack",
  1073. "supported",
  1074. "instant",
  1075. "value",
  1076. "center",
  1077. "latest",
  1078. "work",
  1079. "but_",
  1080. "but-",
  1081. "but.",
  1082. "bug_",
  1083. "bug-",
  1084. "bug.",
  1085. "virtual",
  1086. "tweet",
  1087. "statsd",
  1088. "studio",
  1089. "path",
  1090. "real-time",
  1091. "frontend",
  1092. "notifier",
  1093. "coding",
  1094. "tool",
  1095. "firmware",
  1096. "flow",
  1097. "random",
  1098. "mediawiki",
  1099. "bosh",
  1100. "been",
  1101. "beer",
  1102. "lightbox",
  1103. "theory",
  1104. "origin",
  1105. "redmine",
  1106. "hub_",
  1107. "hub-",
  1108. "hub.",
  1109. "require",
  1110. "pro_",
  1111. "pro-",
  1112. "pro.",
  1113. "ant_",
  1114. "ant-",
  1115. "ant.",
  1116. "any_",
  1117. "any-",
  1118. "any.",
  1119. "recipe",
  1120. "closure",
  1121. "mapper",
  1122. "event",
  1123. "todo",
  1124. "model",
  1125. "redi",
  1126. "provider",
  1127. "rvm_",
  1128. "rvm-",
  1129. "rvm.",
  1130. "program",
  1131. "memcached",
  1132. "rail",
  1133. "silex",
  1134. "foreman",
  1135. "activity",
  1136. "license",
  1137. "strategy",
  1138. "batch",
  1139. "streaming",
  1140. "fast",
  1141. "use_",
  1142. "use-",
  1143. "use.",
  1144. "usb_",
  1145. "usb-",
  1146. "usb.",
  1147. "impres",
  1148. "academy",
  1149. "slider",
  1150. "please",
  1151. "layer",
  1152. "cros",
  1153. "now_",
  1154. "now-",
  1155. "now.",
  1156. "miner",
  1157. "extension",
  1158. "own_",
  1159. "own-",
  1160. "own.",
  1161. "app_",
  1162. "app-",
  1163. "app.",
  1164. "debian",
  1165. "symphony",
  1166. "example",
  1167. "feature",
  1168. "serie",
  1169. "tree",
  1170. "project",
  1171. "runner",
  1172. "entry",
  1173. "leetcode",
  1174. "layout",
  1175. "webrtc",
  1176. "logic",
  1177. "login",
  1178. "worker",
  1179. "toolkit",
  1180. "mocha",
  1181. "support",
  1182. "back",
  1183. "inside",
  1184. "device",
  1185. "jenkin",
  1186. "contact",
  1187. "fake",
  1188. "awesome",
  1189. "ocaml",
  1190. "bit_",
  1191. "bit-",
  1192. "bit.",
  1193. "drive",
  1194. "screen",
  1195. "prototype",
  1196. "gist",
  1197. "binary",
  1198. "nosql",
  1199. "rest",
  1200. "overview",
  1201. "dart",
  1202. "dark",
  1203. "emac",
  1204. "mongoid",
  1205. "solarized",
  1206. "homepage",
  1207. "emulator",
  1208. "commander",
  1209. "django",
  1210. "yandex",
  1211. "gradle",
  1212. "xcode",
  1213. "writer",
  1214. "crm_",
  1215. "crm-",
  1216. "crm.",
  1217. "jade",
  1218. "startup",
  1219. "error",
  1220. "using",
  1221. "format",
  1222. "name",
  1223. "spring",
  1224. "parser",
  1225. "scratch",
  1226. "magic",
  1227. "try_",
  1228. "try-",
  1229. "try.",
  1230. "rack",
  1231. "directive",
  1232. "challenge",
  1233. "slim",
  1234. "counter",
  1235. "element",
  1236. "chosen",
  1237. "doc_",
  1238. "doc-",
  1239. "doc.",
  1240. "meta",
  1241. "should",
  1242. "button",
  1243. "packet",
  1244. "stream",
  1245. "hardware",
  1246. "android",
  1247. "infinite",
  1248. "password",
  1249. "software",
  1250. "ghost",
  1251. "xamarin",
  1252. "spec",
  1253. "chef",
  1254. "interview",
  1255. "hubot",
  1256. "mvc_",
  1257. "mvc-",
  1258. "mvc.",
  1259. "exercise",
  1260. "leaflet",
  1261. "launcher",
  1262. "air_",
  1263. "air-",
  1264. "air.",
  1265. "photo",
  1266. "board",
  1267. "boxen",
  1268. "way_",
  1269. "way-",
  1270. "way.",
  1271. "computing",
  1272. "welcome",
  1273. "notepad",
  1274. "portfolio",
  1275. "cat_",
  1276. "cat-",
  1277. "cat.",
  1278. "can_",
  1279. "can-",
  1280. "can.",
  1281. "magento",
  1282. "yaml",
  1283. "domain",
  1284. "card",
  1285. "yii_",
  1286. "yii-",
  1287. "yii.",
  1288. "checker",
  1289. "browser",
  1290. "upgrade",
  1291. "only",
  1292. "progres",
  1293. "aura",
  1294. "ruby_",
  1295. "ruby-",
  1296. "ruby.",
  1297. "polymer",
  1298. "util",
  1299. "lite",
  1300. "hackathon",
  1301. "rule",
  1302. "log_",
  1303. "log-",
  1304. "log.",
  1305. "opengl",
  1306. "stanford",
  1307. "skeleton",
  1308. "history",
  1309. "inspector",
  1310. "help",
  1311. "soon",
  1312. "selenium",
  1313. "lab_",
  1314. "lab-",
  1315. "lab.",
  1316. "scheme",
  1317. "schema",
  1318. "look",
  1319. "ready",
  1320. "leveldb",
  1321. "docker",
  1322. "game",
  1323. "minimal",
  1324. "logstash",
  1325. "messaging",
  1326. "within",
  1327. "heroku",
  1328. "mongodb",
  1329. "kata",
  1330. "suite",
  1331. "picker",
  1332. "win_",
  1333. "win-",
  1334. "win.",
  1335. "wip_",
  1336. "wip-",
  1337. "wip.",
  1338. "panel",
  1339. "started",
  1340. "starter",
  1341. "front-end",
  1342. "detector",
  1343. "deploy",
  1344. "editing",
  1345. "based",
  1346. "admin",
  1347. "capture",
  1348. "spree",
  1349. "page",
  1350. "bundle",
  1351. "goal",
  1352. "rpg_",
  1353. "rpg-",
  1354. "rpg.",
  1355. "setup",
  1356. "side",
  1357. "mean",
  1358. "reader",
  1359. "cookbook",
  1360. "mini",
  1361. "modern",
  1362. "seed",
  1363. "dom_",
  1364. "dom-",
  1365. "dom.",
  1366. "doc_",
  1367. "doc-",
  1368. "doc.",
  1369. "dot_",
  1370. "dot-",
  1371. "dot.",
  1372. "syntax",
  1373. "sugar",
  1374. "loader",
  1375. "website",
  1376. "make",
  1377. "kit_",
  1378. "kit-",
  1379. "kit.",
  1380. "protocol",
  1381. "human",
  1382. "daemon",
  1383. "golang",
  1384. "manager",
  1385. "countdown",
  1386. "connector",
  1387. "swagger",
  1388. "map_",
  1389. "map-",
  1390. "map.",
  1391. "mac_",
  1392. "mac-",
  1393. "mac.",
  1394. "man_",
  1395. "man-",
  1396. "man.",
  1397. "orm_",
  1398. "orm-",
  1399. "orm.",
  1400. "org_",
  1401. "org-",
  1402. "org.",
  1403. "little",
  1404. "zsh_",
  1405. "zsh-",
  1406. "zsh.",
  1407. "shop",
  1408. "show",
  1409. "workshop",
  1410. "money",
  1411. "grid",
  1412. "server",
  1413. "octopres",
  1414. "svn_",
  1415. "svn-",
  1416. "svn.",
  1417. "ember",
  1418. "embed",
  1419. "general",
  1420. "file",
  1421. "important",
  1422. "dropbox",
  1423. "portable",
  1424. "public",
  1425. "docpad",
  1426. "fish",
  1427. "sbt_",
  1428. "sbt-",
  1429. "sbt.",
  1430. "done",
  1431. "para",
  1432. "network",
  1433. "common",
  1434. "readme",
  1435. "popup",
  1436. "simple",
  1437. "purpose",
  1438. "mirror",
  1439. "single",
  1440. "cordova",
  1441. "exchange",
  1442. "object",
  1443. "design",
  1444. "gateway",
  1445. "account",
  1446. "lamp",
  1447. "intellij",
  1448. "math",
  1449. "mit_",
  1450. "mit-",
  1451. "mit.",
  1452. "control",
  1453. "enhanced",
  1454. "emitter",
  1455. "multi",
  1456. "add_",
  1457. "add-",
  1458. "add.",
  1459. "about",
  1460. "socket",
  1461. "preview",
  1462. "vagrant",
  1463. "cli_",
  1464. "cli-",
  1465. "cli.",
  1466. "powerful",
  1467. "top_",
  1468. "top-",
  1469. "top.",
  1470. "radio",
  1471. "watch",
  1472. "fluid",
  1473. "amazon",
  1474. "report",
  1475. "couchbase",
  1476. "automatic",
  1477. "detection",
  1478. "sprite",
  1479. "pyramid",
  1480. "portal",
  1481. "advanced",
  1482. "plu_",
  1483. "plu-",
  1484. "plu.",
  1485. "runtime",
  1486. "git_",
  1487. "git-",
  1488. "git.",
  1489. "uri_",
  1490. "uri-",
  1491. "uri.",
  1492. "haml",
  1493. "node",
  1494. "sql_",
  1495. "sql-",
  1496. "sql.",
  1497. "cool",
  1498. "core",
  1499. "obsolete",
  1500. "handler",
  1501. "iphone",
  1502. "extractor",
  1503. "array",
  1504. "copy",
  1505. "nlp_",
  1506. "nlp-",
  1507. "nlp.",
  1508. "reveal",
  1509. "pop_",
  1510. "pop-",
  1511. "pop.",
  1512. "engine",
  1513. "parse",
  1514. "check",
  1515. "html",
  1516. "nest",
  1517. "all_",
  1518. "all-",
  1519. "all.",
  1520. "chinese",
  1521. "buildpack",
  1522. "what",
  1523. "tag_",
  1524. "tag-",
  1525. "tag.",
  1526. "proxy",
  1527. "style",
  1528. "cookie",
  1529. "feed",
  1530. "restful",
  1531. "compiler",
  1532. "creating",
  1533. "prelude",
  1534. "context",
  1535. "java",
  1536. "rspec",
  1537. "mock",
  1538. "backbone",
  1539. "light",
  1540. "spotify",
  1541. "flex",
  1542. "related",
  1543. "shell",
  1544. "which",
  1545. "clas",
  1546. "webapp",
  1547. "swift",
  1548. "ansible",
  1549. "unity",
  1550. "console",
  1551. "tumblr",
  1552. "export",
  1553. "campfire",
  1554. "conway'",
  1555. "made",
  1556. "riak",
  1557. "hero",
  1558. "here",
  1559. "unix",
  1560. "unit",
  1561. "glas",
  1562. "smtp",
  1563. "how_",
  1564. "how-",
  1565. "how.",
  1566. "hot_",
  1567. "hot-",
  1568. "hot.",
  1569. "debug",
  1570. "release",
  1571. "diff",
  1572. "player",
  1573. "easy",
  1574. "right",
  1575. "old_",
  1576. "old-",
  1577. "old.",
  1578. "animate",
  1579. "time",
  1580. "push",
  1581. "explorer",
  1582. "course",
  1583. "training",
  1584. "nette",
  1585. "router",
  1586. "draft",
  1587. "structure",
  1588. "note",
  1589. "salt",
  1590. "where",
  1591. "spark",
  1592. "trello",
  1593. "power",
  1594. "method",
  1595. "social",
  1596. "via_",
  1597. "via-",
  1598. "via.",
  1599. "vim_",
  1600. "vim-",
  1601. "vim.",
  1602. "select",
  1603. "webkit",
  1604. "github",
  1605. "ftp_",
  1606. "ftp-",
  1607. "ftp.",
  1608. "creator",
  1609. "mongoose",
  1610. "led_",
  1611. "led-",
  1612. "led.",
  1613. "movie",
  1614. "currently",
  1615. "pdf_",
  1616. "pdf-",
  1617. "pdf.",
  1618. "load",
  1619. "markdown",
  1620. "phalcon",
  1621. "input",
  1622. "custom",
  1623. "atom",
  1624. "oracle",
  1625. "phonegap",
  1626. "ubuntu",
  1627. "great",
  1628. "rdf_",
  1629. "rdf-",
  1630. "rdf.",
  1631. "popcorn",
  1632. "firefox",
  1633. "zip_",
  1634. "zip-",
  1635. "zip.",
  1636. "cuda",
  1637. "dotfile",
  1638. "static",
  1639. "openwrt",
  1640. "viewer",
  1641. "powered",
  1642. "graphic",
  1643. "les_",
  1644. "les-",
  1645. "les.",
  1646. "doe_",
  1647. "doe-",
  1648. "doe.",
  1649. "maven",
  1650. "word",
  1651. "eclipse",
  1652. "lab_",
  1653. "lab-",
  1654. "lab.",
  1655. "hacking",
  1656. "steam",
  1657. "analytic",
  1658. "option",
  1659. "abstract",
  1660. "archive",
  1661. "reality",
  1662. "switcher",
  1663. "club",
  1664. "write",
  1665. "kafka",
  1666. "arduino",
  1667. "angular",
  1668. "online",
  1669. "title",
  1670. "don't",
  1671. "contao",
  1672. "notice",
  1673. "analyzer",
  1674. "learning",
  1675. "zend",
  1676. "external",
  1677. "staging",
  1678. "busines",
  1679. "tdd_",
  1680. "tdd-",
  1681. "tdd.",
  1682. "scanner",
  1683. "building",
  1684. "snippet",
  1685. "modular",
  1686. "bower",
  1687. "stm_",
  1688. "stm-",
  1689. "stm.",
  1690. "lib_",
  1691. "lib-",
  1692. "lib.",
  1693. "alpha",
  1694. "mobile",
  1695. "clean",
  1696. "linux",
  1697. "nginx",
  1698. "manifest",
  1699. "some",
  1700. "raspberry",
  1701. "gnome",
  1702. "ide_",
  1703. "ide-",
  1704. "ide.",
  1705. "block",
  1706. "statistic",
  1707. "info",
  1708. "drag",
  1709. "youtube",
  1710. "koan",
  1711. "facebook",
  1712. "paperclip",
  1713. "art_",
  1714. "art-",
  1715. "art.",
  1716. "quality",
  1717. "tab_",
  1718. "tab-",
  1719. "tab.",
  1720. "need",
  1721. "dojo",
  1722. "shield",
  1723. "computer",
  1724. "stat",
  1725. "state",
  1726. "twitter",
  1727. "utility",
  1728. "converter",
  1729. "hosting",
  1730. "devise",
  1731. "liferay",
  1732. "updated",
  1733. "force",
  1734. "tip_",
  1735. "tip-",
  1736. "tip.",
  1737. "behavior",
  1738. "active",
  1739. "call",
  1740. "answer",
  1741. "deck",
  1742. "better",
  1743. "principle",
  1744. "ches",
  1745. "bar_",
  1746. "bar-",
  1747. "bar.",
  1748. "reddit",
  1749. "three",
  1750. "haxe",
  1751. "just",
  1752. "plug-in",
  1753. "agile",
  1754. "manual",
  1755. "tetri",
  1756. "super",
  1757. "beta",
  1758. "parsing",
  1759. "doctrine",
  1760. "minecraft",
  1761. "useful",
  1762. "perl",
  1763. "sharing",
  1764. "agent",
  1765. "switch",
  1766. "view",
  1767. "dash",
  1768. "channel",
  1769. "repo",
  1770. "pebble",
  1771. "profiler",
  1772. "warning",
  1773. "cluster",
  1774. "running",
  1775. "markup",
  1776. "evented",
  1777. "mod_",
  1778. "mod-",
  1779. "mod.",
  1780. "share",
  1781. "csv_",
  1782. "csv-",
  1783. "csv.",
  1784. "response",
  1785. "good",
  1786. "house",
  1787. "connect",
  1788. "built",
  1789. "build",
  1790. "find",
  1791. "ipython",
  1792. "webgl",
  1793. "big_",
  1794. "big-",
  1795. "big.",
  1796. "google",
  1797. "scala",
  1798. "sdl_",
  1799. "sdl-",
  1800. "sdl.",
  1801. "sdk_",
  1802. "sdk-",
  1803. "sdk.",
  1804. "native",
  1805. "day_",
  1806. "day-",
  1807. "day.",
  1808. "puppet",
  1809. "text",
  1810. "routing",
  1811. "helper",
  1812. "linkedin",
  1813. "crawler",
  1814. "host",
  1815. "guard",
  1816. "merchant",
  1817. "poker",
  1818. "over",
  1819. "writing",
  1820. "free",
  1821. "classe",
  1822. "component",
  1823. "craft",
  1824. "nodej",
  1825. "phoenix",
  1826. "longer",
  1827. "quick",
  1828. "lazy",
  1829. "memory",
  1830. "clone",
  1831. "hacker",
  1832. "middleman",
  1833. "factory",
  1834. "motion",
  1835. "multiple",
  1836. "tornado",
  1837. "hack",
  1838. "ssh_",
  1839. "ssh-",
  1840. "ssh.",
  1841. "review",
  1842. "vimrc",
  1843. "driver",
  1844. "driven",
  1845. "blog",
  1846. "particle",
  1847. "table",
  1848. "intro",
  1849. "importer",
  1850. "thrift",
  1851. "xmpp",
  1852. "framework",
  1853. "refresh",
  1854. "react",
  1855. "font",
  1856. "librarie",
  1857. "variou",
  1858. "formatter",
  1859. "analysi",
  1860. "karma",
  1861. "scroll",
  1862. "tut_",
  1863. "tut-",
  1864. "tut.",
  1865. "apple",
  1866. "tag_",
  1867. "tag-",
  1868. "tag.",
  1869. "tab_",
  1870. "tab-",
  1871. "tab.",
  1872. "category",
  1873. "ionic",
  1874. "cache",
  1875. "homebrew",
  1876. "reverse",
  1877. "english",
  1878. "getting",
  1879. "shipping",
  1880. "clojure",
  1881. "boot",
  1882. "book",
  1883. "branch",
  1884. "combination",
  1885. "combo",
  1886. ]
  1887. [[rules]]
  1888. description = "GitHub App Token"
  1889. id = "github-app-token"
  1890. regex = '''(ghu|ghs)_[0-9a-zA-Z]{36}'''
  1891. keywords = [
  1892. "ghu_","ghs_",
  1893. ]
  1894. [[rules]]
  1895. description = "GitHub OAuth Access Token"
  1896. id = "github-oauth"
  1897. regex = '''gho_[0-9a-zA-Z]{36}'''
  1898. keywords = [
  1899. "gho_",
  1900. ]
  1901. [[rules]]
  1902. description = "GitHub Personal Access Token"
  1903. id = "github-pat"
  1904. regex = '''ghp_[0-9a-zA-Z]{36}'''
  1905. keywords = [
  1906. "ghp_",
  1907. ]
  1908. [[rules]]
  1909. description = "GitHub Refresh Token"
  1910. id = "github-refresh-token"
  1911. regex = '''ghr_[0-9a-zA-Z]{36}'''
  1912. keywords = [
  1913. "ghr_",
  1914. ]
  1915. [[rules]]
  1916. description = "GitLab Personal Access Token"
  1917. id = "gitlab-pat"
  1918. regex = '''glpat-[0-9a-zA-Z\-\_]{20}'''
  1919. keywords = [
  1920. "glpat-",
  1921. ]
  1922. [[rules]]
  1923. description = "Gitter Access Token"
  1924. id = "gitter-access-token"
  1925. regex = '''(?i)(?:gitter)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9_-]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1926. secretGroup = 1
  1927. keywords = [
  1928. "gitter",
  1929. ]
  1930. [[rules]]
  1931. description = "GoCardless API token"
  1932. id = "gocardless-api-token"
  1933. regex = '''(?i)(?:gocardless)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(live_(?i)[a-z0-9\-_=]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1934. secretGroup = 1
  1935. keywords = [
  1936. "live_","gocardless",
  1937. ]
  1938. [[rules]]
  1939. description = "HashiCorp Terraform user/org API token"
  1940. id = "hashicorp-tf-api-token"
  1941. regex = '''(?i)[a-z0-9]{14}\.atlasv1\.[a-z0-9\-_=]{60,70}'''
  1942. keywords = [
  1943. "atlasv1",
  1944. ]
  1945. [[rules]]
  1946. description = "Heroku API Key"
  1947. id = "heroku-api-key"
  1948. regex = '''(?i)(?:heroku)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1949. secretGroup = 1
  1950. keywords = [
  1951. "heroku",
  1952. ]
  1953. [[rules]]
  1954. description = "HubSpot API Token"
  1955. id = "hubspot-api-key"
  1956. regex = '''(?i)(?:hubspot)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1957. secretGroup = 1
  1958. keywords = [
  1959. "hubspot",
  1960. ]
  1961. [[rules]]
  1962. description = "Intercom API Token"
  1963. id = "intercom-api-key"
  1964. regex = '''(?i)(?:intercom)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{60})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1965. secretGroup = 1
  1966. keywords = [
  1967. "intercom",
  1968. ]
  1969. [[rules]]
  1970. description = "Kraken Access Token"
  1971. id = "kraken-access-token"
  1972. regex = '''(?i)(?:kraken)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9\/=_\+\-]{80,90})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1973. secretGroup = 1
  1974. keywords = [
  1975. "kraken",
  1976. ]
  1977. [[rules]]
  1978. description = "Kucoin Access Token"
  1979. id = "kucoin-access-token"
  1980. regex = '''(?i)(?:kucoin)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{24})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1981. secretGroup = 1
  1982. keywords = [
  1983. "kucoin",
  1984. ]
  1985. [[rules]]
  1986. description = "Kucoin Secret Key"
  1987. id = "kucoin-secret-key"
  1988. regex = '''(?i)(?:kucoin)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1989. secretGroup = 1
  1990. keywords = [
  1991. "kucoin",
  1992. ]
  1993. [[rules]]
  1994. description = "Launchdarkly Access Token"
  1995. id = "launchdarkly-access-token"
  1996. regex = '''(?i)(?:launchdarkly)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  1997. secretGroup = 1
  1998. keywords = [
  1999. "launchdarkly",
  2000. ]
  2001. [[rules]]
  2002. description = "Linear API Token"
  2003. id = "linear-api-key"
  2004. regex = '''lin_api_(?i)[a-z0-9]{40}'''
  2005. keywords = [
  2006. "lin_api_",
  2007. ]
  2008. [[rules]]
  2009. description = "Linear Client Secret"
  2010. id = "linear-client-secret"
  2011. regex = '''(?i)(?:linear)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2012. secretGroup = 1
  2013. keywords = [
  2014. "linear",
  2015. ]
  2016. [[rules]]
  2017. description = "LinkedIn Client ID"
  2018. id = "linkedin-client-id"
  2019. regex = '''(?i)(?:linkedin|linked-in)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{14})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2020. secretGroup = 1
  2021. keywords = [
  2022. "linkedin","linked-in",
  2023. ]
  2024. [[rules]]
  2025. description = "LinkedIn Client secret"
  2026. id = "linkedin-client-secret"
  2027. regex = '''(?i)(?:linkedin|linked-in)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{16})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2028. secretGroup = 1
  2029. keywords = [
  2030. "linkedin","linked-in",
  2031. ]
  2032. [[rules]]
  2033. description = "Lob API Key"
  2034. id = "lob-api-key"
  2035. regex = '''(?i)(?:lob)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}((live|test)_[a-f0-9]{35})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2036. secretGroup = 1
  2037. keywords = [
  2038. "test_","live_",
  2039. ]
  2040. [[rules]]
  2041. description = "Lob Publishable API Key"
  2042. id = "lob-pub-api-key"
  2043. regex = '''(?i)(?:lob)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}((test|live)_pub_[a-f0-9]{31})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2044. secretGroup = 1
  2045. keywords = [
  2046. "test_pub","live_pub","_pub",
  2047. ]
  2048. [[rules]]
  2049. description = "Mailchimp API key"
  2050. id = "mailchimp-api-key"
  2051. regex = '''(?i)(?:mailchimp)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{32}-us20)(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2052. secretGroup = 1
  2053. keywords = [
  2054. "mailchimp",
  2055. ]
  2056. [[rules]]
  2057. description = "Mailgun private API token"
  2058. id = "mailgun-private-api-token"
  2059. regex = '''(?i)(?:mailgun)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(key-[a-f0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2060. secretGroup = 1
  2061. keywords = [
  2062. "mailgun",
  2063. ]
  2064. [[rules]]
  2065. description = "Mailgun public validation key"
  2066. id = "mailgun-pub-key"
  2067. regex = '''(?i)(?:mailgun)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(pubkey-[a-f0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2068. secretGroup = 1
  2069. keywords = [
  2070. "mailgun",
  2071. ]
  2072. [[rules]]
  2073. description = "Mailgun webhook signing key"
  2074. id = "mailgun-signing-key"
  2075. regex = '''(?i)(?:mailgun)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-h0-9]{32}-[a-h0-9]{8}-[a-h0-9]{8})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2076. secretGroup = 1
  2077. keywords = [
  2078. "mailgun",
  2079. ]
  2080. [[rules]]
  2081. description = "MapBox API token"
  2082. id = "mapbox-api-token"
  2083. regex = '''(?i)(?:mapbox)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(pk\.[a-z0-9]{60}\.[a-z0-9]{22})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2084. secretGroup = 1
  2085. keywords = [
  2086. "mapbox",
  2087. ]
  2088. [[rules]]
  2089. description = "Mattermost Access Token"
  2090. id = "mattermost-access-token"
  2091. regex = '''(?i)(?:mattermost)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{26})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2092. secretGroup = 1
  2093. keywords = [
  2094. "mattermost",
  2095. ]
  2096. [[rules]]
  2097. description = "MessageBird API token"
  2098. id = "messagebird-api-token"
  2099. regex = '''(?i)(?:messagebird|message-bird|message_bird)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{25})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2100. secretGroup = 1
  2101. keywords = [
  2102. "messagebird","message-bird","message_bird",
  2103. ]
  2104. [[rules]]
  2105. description = "MessageBird client ID"
  2106. id = "messagebird-client-id"
  2107. regex = '''(?i)(?:messagebird|message-bird|message_bird)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2108. secretGroup = 1
  2109. keywords = [
  2110. "messagebird","message-bird","message_bird",
  2111. ]
  2112. [[rules]]
  2113. description = "Netlify Access Token"
  2114. id = "netlify-access-token"
  2115. regex = '''(?i)(?:netlify)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{40,46})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2116. secretGroup = 1
  2117. keywords = [
  2118. "netlify",
  2119. ]
  2120. [[rules]]
  2121. description = "New Relic ingest browser API token"
  2122. id = "new-relic-browser-api-token"
  2123. regex = '''(?i)(?:new-relic|newrelic|new_relic)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(NRJS-[a-f0-9]{19})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2124. secretGroup = 1
  2125. keywords = [
  2126. "nrjs-",
  2127. ]
  2128. [[rules]]
  2129. description = "New Relic user API ID"
  2130. id = "new-relic-user-api-id"
  2131. regex = '''(?i)(?:new-relic|newrelic|new_relic)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2132. secretGroup = 1
  2133. keywords = [
  2134. "new-relic","newrelic","new_relic",
  2135. ]
  2136. [[rules]]
  2137. description = "New Relic user API Key"
  2138. id = "new-relic-user-api-key"
  2139. regex = '''(?i)(?:new-relic|newrelic|new_relic)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(NRAK-[a-z0-9]{27})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2140. secretGroup = 1
  2141. keywords = [
  2142. "nrak",
  2143. ]
  2144. [[rules]]
  2145. description = "npm access token"
  2146. id = "npm-access-token"
  2147. regex = '''(?i)\b(npm_[a-z0-9]{36})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2148. secretGroup = 1
  2149. keywords = [
  2150. "npm_",
  2151. ]
  2152. [[rules]]
  2153. description = "Nytimes Access Token"
  2154. id = "nytimes-access-token"
  2155. regex = '''(?i)(?:nytimes|new-york-times,|newyorktimes)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2156. secretGroup = 1
  2157. keywords = [
  2158. "nytimes","new-york-times","newyorktimes",
  2159. ]
  2160. [[rules]]
  2161. description = "Okta Access Token"
  2162. id = "okta-access-token"
  2163. regex = '''(?i)(?:okta)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9=_\-]{42})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2164. secretGroup = 1
  2165. keywords = [
  2166. "okta",
  2167. ]
  2168. [[rules]]
  2169. description = "Plaid API Token"
  2170. id = "plaid-api-token"
  2171. regex = '''(?i)(?:plaid)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(access-(?:sandbox|development|production)-[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2172. secretGroup = 1
  2173. keywords = [
  2174. "plaid",
  2175. ]
  2176. [[rules]]
  2177. description = "Plaid Client ID"
  2178. id = "plaid-client-id"
  2179. regex = '''(?i)(?:plaid)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{24})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2180. secretGroup = 1
  2181. keywords = [
  2182. "plaid",
  2183. ]
  2184. [[rules]]
  2185. description = "Plaid Secret key"
  2186. id = "plaid-secret-key"
  2187. regex = '''(?i)(?:plaid)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{30})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2188. secretGroup = 1
  2189. keywords = [
  2190. "plaid",
  2191. ]
  2192. [[rules]]
  2193. description = "PlanetScale API token"
  2194. id = "planetscale-api-token"
  2195. regex = '''(?i)\b(pscale_tkn_(?i)[a-z0-9=\-_\.]{32,64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2196. secretGroup = 1
  2197. keywords = [
  2198. "pscale_tkn_",
  2199. ]
  2200. [[rules]]
  2201. description = "PlanetScale OAuth token"
  2202. id = "planetscale-oauth-token"
  2203. regex = '''(?i)\b(pscale_oauth_(?i)[a-z0-9=\-_\.]{32,64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2204. secretGroup = 1
  2205. keywords = [
  2206. "pscale_oauth_",
  2207. ]
  2208. [[rules]]
  2209. description = "PlanetScale password"
  2210. id = "planetscale-password"
  2211. regex = '''(?i)\b(pscale_pw_(?i)[a-z0-9=\-_\.]{32,64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2212. secretGroup = 1
  2213. keywords = [
  2214. "pscale_pw_",
  2215. ]
  2216. [[rules]]
  2217. description = "Postman API token"
  2218. id = "postman-api-token"
  2219. regex = '''(?i)\b(PMAK-(?i)[a-f0-9]{24}\-[a-f0-9]{34})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2220. secretGroup = 1
  2221. keywords = [
  2222. "pmak-",
  2223. ]
  2224. [[rules]]
  2225. description = "Private Key"
  2226. id = "private-key"
  2227. regex = '''(?i)-----BEGIN[ A-Z0-9_-]{0,100}PRIVATE KEY-----[\s\S-]*KEY----'''
  2228. keywords = [
  2229. "-----begin",
  2230. ]
  2231. [[rules]]
  2232. description = "Pulumi API token"
  2233. id = "pulumi-api-token"
  2234. regex = '''(?i)\b(pul-[a-f0-9]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2235. secretGroup = 1
  2236. keywords = [
  2237. "pul-",
  2238. ]
  2239. [[rules]]
  2240. description = "PyPI upload token"
  2241. id = "pypi-upload-token"
  2242. regex = '''pypi-AgEIcHlwaS5vcmc[A-Za-z0-9\-_]{50,1000}'''
  2243. keywords = [
  2244. "pypi-ageichlwas5vcmc",
  2245. ]
  2246. [[rules]]
  2247. description = "RapidAPI Access Token"
  2248. id = "rapidapi-access-token"
  2249. regex = '''(?i)(?:rapidapi)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9_-]{50})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2250. secretGroup = 1
  2251. keywords = [
  2252. "rapidapi",
  2253. ]
  2254. [[rules]]
  2255. description = "Rubygem API token"
  2256. id = "rubygems-api-token"
  2257. regex = '''(?i)\b(rubygems_[a-f0-9]{48})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2258. secretGroup = 1
  2259. keywords = [
  2260. "rubygems_",
  2261. ]
  2262. [[rules]]
  2263. description = "Sendbird Access ID"
  2264. id = "sendbird-access-id"
  2265. regex = '''(?i)(?:sendbird)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2266. secretGroup = 1
  2267. keywords = [
  2268. "sendbird",
  2269. ]
  2270. [[rules]]
  2271. description = "Sendbird Access Token"
  2272. id = "sendbird-access-token"
  2273. regex = '''(?i)(?:sendbird)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2274. secretGroup = 1
  2275. keywords = [
  2276. "sendbird",
  2277. ]
  2278. [[rules]]
  2279. description = "SendGrid API token"
  2280. id = "sendgrid-api-token"
  2281. regex = '''(?i)\b(SG\.(?i)[a-z0-9=_\-\.]{66})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2282. secretGroup = 1
  2283. keywords = [
  2284. "sg.",
  2285. ]
  2286. [[rules]]
  2287. description = "Sendinblue API token"
  2288. id = "sendinblue-api-token"
  2289. regex = '''(?i)\b(xkeysib-[a-f0-9]{64}\-(?i)[a-z0-9]{16})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2290. secretGroup = 1
  2291. keywords = [
  2292. "xkeysib-",
  2293. ]
  2294. [[rules]]
  2295. description = "Sentry Access Token"
  2296. id = "sentry-access-token"
  2297. regex = '''(?i)(?:sentry)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2298. secretGroup = 1
  2299. keywords = [
  2300. "sentry",
  2301. ]
  2302. [[rules]]
  2303. description = "Shippo API token"
  2304. id = "shippo-api-token"
  2305. regex = '''(?i)\b(shippo_(live|test)_[a-f0-9]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2306. secretGroup = 1
  2307. keywords = [
  2308. "shippo_",
  2309. ]
  2310. [[rules]]
  2311. description = "Shopify access token"
  2312. id = "shopify-access-token"
  2313. regex = '''shpat_[a-fA-F0-9]{32}'''
  2314. keywords = [
  2315. "shpat_",
  2316. ]
  2317. [[rules]]
  2318. description = "Shopify custom access token"
  2319. id = "shopify-custom-access-token"
  2320. regex = '''shpca_[a-fA-F0-9]{32}'''
  2321. keywords = [
  2322. "shpca_",
  2323. ]
  2324. [[rules]]
  2325. description = "Shopify private app access token"
  2326. id = "shopify-private-app-access-token"
  2327. regex = '''shppa_[a-fA-F0-9]{32}'''
  2328. keywords = [
  2329. "shppa_",
  2330. ]
  2331. [[rules]]
  2332. description = "Shopify shared secret"
  2333. id = "shopify-shared-secret"
  2334. regex = '''shpss_[a-fA-F0-9]{32}'''
  2335. keywords = [
  2336. "shpss_",
  2337. ]
  2338. [[rules]]
  2339. description = "Sidekiq Secret"
  2340. id = "sidekiq-secret"
  2341. regex = '''(?i)(?:BUNDLE_ENTERPRISE__CONTRIBSYS__COM|BUNDLE_GEMS__CONTRIBSYS__COM)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-f0-9]{8}:[a-f0-9]{8})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2342. secretGroup = 1
  2343. keywords = [
  2344. "bundle_enterprise__contribsys__com","bundle_gems__contribsys__com",
  2345. ]
  2346. [[rules]]
  2347. description = "Sidekiq Sensitive URL"
  2348. id = "sidekiq-sensitive-url"
  2349. regex = '''(?i)\b(http(?:s??):\/\/)([a-f0-9]{8}:[a-f0-9]{8})@(?:gems.contribsys.com|enterprise.contribsys.com)(?:[\/|\#|\?|:]|$)'''
  2350. secretGroup = 2
  2351. keywords = [
  2352. "gems.contribsys.com","enterprise.contribsys.com",
  2353. ]
  2354. [[rules]]
  2355. description = "Slack token"
  2356. id = "slack-access-token"
  2357. regex = '''xox[baprs]-([0-9a-zA-Z]{10,48})'''
  2358. keywords = [
  2359. "xoxb","xoxa","xoxp","xoxr","xoxs",
  2360. ]
  2361. [[rules]]
  2362. description = "Slack Webhook"
  2363. id = "slack-web-hook"
  2364. regex = '''https:\/\/hooks.slack.com\/services\/[A-Za-z0-9+\/]{44,46}'''
  2365. keywords = [
  2366. "hooks.slack.com",
  2367. ]
  2368. [[rules]]
  2369. description = "Square Access Token"
  2370. id = "square-access-token"
  2371. regex = '''(?i)\b(sq0atp-[0-9A-Za-z\-_]{22})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2372. keywords = [
  2373. "sq0atp-",
  2374. ]
  2375. [[rules]]
  2376. description = "Squarespace Access Token"
  2377. id = "squarespace-access-token"
  2378. regex = '''(?i)(?:squarespace)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2379. secretGroup = 1
  2380. keywords = [
  2381. "squarespace",
  2382. ]
  2383. [[rules]]
  2384. description = "Stripe"
  2385. id = "stripe-access-token"
  2386. regex = '''(?i)(sk|pk)_(test|live)_[0-9a-z]{10,32}'''
  2387. keywords = [
  2388. "sk_test","pk_test","sk_live","pk_live",
  2389. ]
  2390. [[rules]]
  2391. description = "SumoLogic Access ID"
  2392. id = "sumologic-access-id"
  2393. regex = '''(?i)(?:sumo)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{14})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2394. secretGroup = 1
  2395. keywords = [
  2396. "sumo",
  2397. ]
  2398. [[rules]]
  2399. description = "SumoLogic Access Token"
  2400. id = "sumologic-access-token"
  2401. regex = '''(?i)(?:sumo)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{64})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2402. secretGroup = 1
  2403. keywords = [
  2404. "sumo",
  2405. ]
  2406. [[rules]]
  2407. description = "Travis CI Access Token"
  2408. id = "travisci-access-token"
  2409. regex = '''(?i)(?:travis)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{22})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2410. secretGroup = 1
  2411. keywords = [
  2412. "travis",
  2413. ]
  2414. [[rules]]
  2415. description = "Twilio API Key"
  2416. id = "twilio-api-key"
  2417. regex = '''SK[0-9a-fA-F]{32}'''
  2418. keywords = [
  2419. "twilio",
  2420. ]
  2421. [[rules]]
  2422. description = "Twitch API token"
  2423. id = "twitch-api-token"
  2424. regex = '''(?i)(?:twitch)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{30})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2425. secretGroup = 1
  2426. keywords = [
  2427. "twitch",
  2428. ]
  2429. [[rules]]
  2430. description = "Twitter Access Secret"
  2431. id = "twitter-access-secret"
  2432. regex = '''(?i)(?:twitter)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{45})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2433. secretGroup = 1
  2434. keywords = [
  2435. "twitter",
  2436. ]
  2437. [[rules]]
  2438. description = "Twitter Access Token"
  2439. id = "twitter-access-token"
  2440. regex = '''(?i)(?:twitter)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([0-9]{15,25}-[a-zA-Z0-9]{20,40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2441. secretGroup = 1
  2442. keywords = [
  2443. "twitter",
  2444. ]
  2445. [[rules]]
  2446. description = "Twitter API Key"
  2447. id = "twitter-api-key"
  2448. regex = '''(?i)(?:twitter)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{25})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2449. secretGroup = 1
  2450. keywords = [
  2451. "twitter",
  2452. ]
  2453. [[rules]]
  2454. description = "Twitter API Secret"
  2455. id = "twitter-api-secret"
  2456. regex = '''(?i)(?:twitter)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{50})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2457. secretGroup = 1
  2458. keywords = [
  2459. "twitter",
  2460. ]
  2461. [[rules]]
  2462. description = "Twitter Bearer Token"
  2463. id = "twitter-bearer-token"
  2464. regex = '''(?i)(?:twitter)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(A{22}[a-zA-Z0-9%]{80,100})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2465. secretGroup = 1
  2466. keywords = [
  2467. "twitter",
  2468. ]
  2469. [[rules]]
  2470. description = "Typeform API token"
  2471. id = "typeform-api-token"
  2472. regex = '''(?i)(?:typeform)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(tfp_[a-z0-9\-_\.=]{59})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2473. secretGroup = 1
  2474. keywords = [
  2475. "tfp_",
  2476. ]
  2477. [[rules]]
  2478. description = "Vault Batch Token"
  2479. id = "vault-batch-token"
  2480. regex = '''(?i)\b(hvb\.[a-z0-9_-]{138,212})(?:['|\"|\n|\r|\s|\x60]|$)'''
  2481. keywords = [
  2482. "hvb",
  2483. ]
  2484. [[rules]]
  2485. description = "Vault Service Token"
  2486. id = "vault-service-token"
  2487. regex = '''(?i)\b(hvs\.[a-z0-9_-]{90,100})(?:['|\"|\n|\r|\s|\x60]|$)'''
  2488. keywords = [
  2489. "hvs",
  2490. ]
  2491. [[rules]]
  2492. description = "Yandex Access Token"
  2493. id = "yandex-access-token"
  2494. regex = '''(?i)(?:yandex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(t1\.[A-Z0-9a-z_-]+[=]{0,2}\.[A-Z0-9a-z_-]{86}[=]{0,2})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2495. secretGroup = 1
  2496. keywords = [
  2497. "yandex",
  2498. ]
  2499. [[rules]]
  2500. description = "Yandex API Key"
  2501. id = "yandex-api-key"
  2502. regex = '''(?i)(?:yandex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(AQVN[A-Za-z0-9_\-]{35,38})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2503. secretGroup = 1
  2504. keywords = [
  2505. "yandex",
  2506. ]
  2507. [[rules]]
  2508. description = "Yandex AWS Access Token"
  2509. id = "yandex-aws-access-token"
  2510. regex = '''(?i)(?:yandex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}(YC[a-zA-Z0-9_\-]{38})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2511. secretGroup = 1
  2512. keywords = [
  2513. "yandex",
  2514. ]
  2515. [[rules]]
  2516. description = "Zendesk Secret Key"
  2517. id = "zendesk-secret-key"
  2518. regex = '''(?i)(?:zendesk)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:=|\|\|:|<=|=>|:)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{40})(?:['|\"|\n|\r|\s|\x60|;]|$)'''
  2519. secretGroup = 1
  2520. keywords = [
  2521. "zendesk",
  2522. ]