Early Warning Detectors Using AWS Access Keys as Honeytokens
11–20 of 20 posts
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#12This should also be called "how to get your account locked by AWS in 15 minutes or less." AWS is not fond of finding AWS keys laying around (limited permissions or otherwise). I once committed a key to a GitHub repo and AWS called me within 15 minutes. I've seen cases where they will then lock your account (preventing it from creating new EC2 resources) until the key is deleted. Seriously, don't do this. EDIT: as oth…
Recently Github crippled (unfortunately) the Search function so that you can't search something in all the repositories at once (if you try it says that you "Must include at least one user, organization, or repository"). I used to use it to find out how other people use different library functions in the wild and it helped me to find good code examples many times in the past (especially when there were no documentati…
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#13Earlier quoted context omitted.
Recently Github crippled (unfortunately) the Search function so that you can't search something in all the repositories at once (if you try it says that you "Must include at least one user, organization, or repository"). I used to use it to find out how other people use different library functions in the wild and it helped me to find good code examples many times in the past (especially when there were no documentati…
Works for me: https://github.com/search?q=test&type=Code&utf8=%E2%9C%93 Is this not what you're talking about?
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#14All private repos here, but we once had some inadvertently commit a development '.env' file with credentials in it to our remote Git repo (they did it before we added '.env*' to our .gitignore file). We might start peppering our .env files with honeypot keys just to track if they have somehow been compromised outside the company.
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#15> On servers in a text file in ~/.aws/credentials (where a lot of tooling saves AWS credentials) well that sounds clever.
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#16* Login credentials: feed in response to detected phishing emails
* SSH keys: have SSH trigger an alert if certain keys log in
* Database entries: filter out the special ones in legitimate queries
The pain, at least for a small organization, is in managing: reacting appropriately to alerts, ensuring honeytokens are properly rotated.
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#17Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#18Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#19Earlier quoted context omitted.
Works for me: https://github.com/search?q=test&type=Code&utf8=%E2%9C%93 Is this not what you're talking about?
Hmm, your link shows me the same "Must include at least one user, organization, or repository" message that I've mentioned. Maybe they removed the feature only for not logged in users. Can't check it right now as I don't have my Github password on my phone.
Re: Early Warning Detectors Using AWS Access Keys as Honeytokens
#20> On servers in a text file in ~/.aws/credentials (where a lot of tooling saves AWS credentials) well that sounds clever.
Yeah, I think it’s tricky to figure out how to place it somewhere that attackers would look but AWS tooling wouldn’t, by default, since otherwise they may be used in legitimate operation.