gitleaks.toml 81 KB

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