gitleaks.toml 39 KB

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