CredentialsUtils.php 759 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace Aws\Credentials;
  3. final class CredentialsUtils
  4. {
  5. /**
  6. * Determines whether a given host
  7. * is a loopback address.
  8. *
  9. * @param $host
  10. *
  11. * @return bool
  12. */
  13. public static function isLoopBackAddress($host): bool
  14. {
  15. if (!filter_var($host, FILTER_VALIDATE_IP)) {
  16. return false;
  17. }
  18. if (filter_var($host, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {
  19. if ($host === '::1') {
  20. return true;
  21. }
  22. return false;
  23. }
  24. $loopbackStart = ip2long('127.0.0.0');
  25. $loopbackEnd = ip2long('127.255.255.255');
  26. $ipLong = ip2long($host);
  27. return ($ipLong >= $loopbackStart && $ipLong <= $loopbackEnd);
  28. }
  29. }