bretfeig

Untitled

Feb 15th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Key Platform,Key Type,Format,Regex,Comments
  2. Amazon AWS,Access ,"20 characters, uppercase alphanumeric",AKIA[0-9A-Z]{16},From https://people.eecs.berkeley.edu/~rohanpadhye/files/key_leaks-msr15.pdf
  3. Amazon AWS,Secret,"40 char, base 64",[A-Za-z0-9/+=]{40},from https://github.com/harisekhon/lib/issues/7
  4. Google Cloud,API Key,"39 characters, beginning with 'AIza', alphanumeric with hyphens and underscores",AIza[\w\d-_]{35},"Used by client applications. Good, but limited impact. Service accounts are the real money.http://raidersec.blogspot.com/2013/03/automatically-enumerating-google-api.html"
  5. Bitly,Client,"5-31 char, mixed case alphanumeric","[0-9a-zA-Z_]{5,31}",
  6. Bitly,Secret,"34 char, lowercase alphanumeric, R_ prefix",R_[0-9a-f]{32},
  7. Facebook,Client ID,"13-17 char, numeric","[0-9]{13,17}",
  8. Facebook,Secret,"32 char, lowercase alphanumeric",[0-9a-f]{32},
  9. Twitter ,Client ID,"18-25 char, mixed case alphanumeric","[0-9a-zA-Z]{18,25}",
  10. Twitter ,Secret,"35-44 char, mixed case alphanumeric","[0-9a-zA-Z]{35,44}",
  11. Gitlab,Personal API Key,"21 char, mixed case alphanumeric",[0-9a-zA-Z]{21},
  12. Github,Personal API Key,"40 char, lowercase hexadecimal",[0-9a-f]{40},
Add Comment
Please, Sign In to add comment