4
0

gitleaks.toml 82 KB

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