-7

I have 2 questions,

  1. Can I ping all the AWS buckets in the world? I would use a simple shell script which will curl with a dictionary of names/number combinations or some other method.

  2. Will my IP be blocked if I do this? If so, why? This is not a DOS attack, is it?

I searched in Google and Stack Overflow, but couldn’t find any related question or answer.

TRiG
  • 1,167
  • 2
  • 13
  • 30

1 Answers1

0

AFAIK, You can't ping all, because AWS already have IP/GEO/Other logic based access history and records based logic, they will block your id and inform bucket admins.

asktyagi
  • 2,401
  • 1
  • 5
  • 19
  • thanks for the information, what if i ping for a certain subnet (a random set) and look for the hostname & if it has s3.amazonaws.com then i will visit the bucket and check if it is accessebile or not. Will i still be blocked if i do only positive requests ? – Arigato Manga May 23 '19 at 10:38
  • 1
    You cannot "ping a bucket" because bucket names are merely logical containers served by Amazon S3. There is no direct relationship between IP addresses and buckets. Resolving the DNS name of an S3 bucket would only return the address of an Amazon S3 server. – John Rotenstein May 27 '19 at 04:03