gitleaks.toml 81 KB

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