, ,
, ,
, ,
, ,
, ,
, ,
, ,
, ,
, ,
, ,
, ,
, ,
Loading...
Loading...
{
"latency": 14,
"ipAddresses": [
"3.162.103.23",
"3.162.103.6",
"3.162.103.127",
"3.162.103.5",
"2600:9000:26c1:3600:3:bf0d:cd00:93a1",
"2600:9000:26c1:d400:3:bf0d:cd00:93a1",
"2600:9000:26c1:b400:3:bf0d:cd00:93a1",
"2600:9000:26c1:0:3:bf0d:cd00:93a1",
"2600:9000:26c1:3a00:3:bf0d:cd00:93a1",
"2600:9000:26c1:c800:3:bf0d:cd00:93a1",
"2600:9000:26c1:d200:3:bf0d:cd00:93a1",
"2600:9000:26c1:8e00:3:bf0d:cd00:93a1"
],
"dns": {
"NS": [
"ns-1363.awsdns-42.org.",
"ns-1569.awsdns-04.co.uk.",
"ns-460.awsdns-57.com.",
"ns-809.awsdns-37.net."
],
"A": [
"3.162.103.23",
"3.162.103.6",
"3.162.103.127",
"3.162.103.5"
],
"AAAA": [
"2600:9000:26c1:3600:3:bf0d:cd00:93a1",
"2600:9000:26c1:d400:3:bf0d:cd00:93a1",
"2600:9000:26c1:b400:3:bf0d:cd00:93a1",
"2600:9000:26c1:0:3:bf0d:cd00:93a1",
"2600:9000:26c1:3a00:3:bf0d:cd00:93a1",
"2600:9000:26c1:c800:3:bf0d:cd00:93a1",
"2600:9000:26c1:d200:3:bf0d:cd00:93a1",
"2600:9000:26c1:8e00:3:bf0d:cd00:93a1"
]
}
}
{
"whois.nic.google": {
"error": "Failed to connect"
}
}
[
{
"url": "https://salesconsole.aws.dev",
"errors": [
"Crawl unsuccessful: Navigation timeout of 25000 ms exceeded (https://salesconsole.aws.dev/)"
]
}
]
{}
{
"errors": [
{
"id": "authentication_failed",
"code": 401,
"details": "No user found for the API key supplied"
}
]
}
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
function getValidURL(url) {
try {
return new URL(url);
} catch (e) {
return null;
}
}
/*!
* JavaScript Cookie v2.1.4
* https://github.com/js-cookie/js-cookie
*
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
* Released under the MIT license
*/
;(function (factory) {
var registeredInModuleLoader = false;
if (typeof define === 'function' && define.amd) {
define(factory);
registeredInModuleLoader = true;
}
if (typeof exports === 'object') {
module.exports = factory();
registeredInModuleLoader = true;
}
if (!registeredInModuleLoader) {
var OldCookies = window.Cookies;
var api = window.Cookies = factory();
api.noConflict = function () {
window.Cookies = OldCookies;
return api;
};
}
}(function () {
function extend () {
var i = 0;
var result = {};
for (; i < arguments.length; i++) {
var attributes = arguments[ i ];
for (var key in attributes) {
result[key] = attributes[key];
}
}
return result;
}
function init (converter) {
function api (key, value, attributes) {
var result;
if (typeof document === 'undefined') {
return;
}
// Write
if (arguments.length > 1) {
attributes = extend({
path: '/'
}, api.defaults, attributes);
if (typeof attributes.expires === 'number') {
var expires = new Date();
expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
attributes.expires = expires;
}
// We're using "expires" because "max-age" is not supported by IE
attributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';
try {
result = JSON.stringify(value);
if (/^[\{\[]/.test(result)) {
value = result;
}
} catch (e) {}
if (!converter.write) {
value = encodeURIComponent(String(value))
.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
} else {
value = converter.write(value, key);
}
key = encodeURIComponent(String(key));
key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
key = key.replace(/[\(\)]/g, escape);
var stringifiedAttributes = '';
for (var attributeName in attributes) {
if (!attributes[attributeName]) {
continue;
}
stringifiedAttributes += '; ' + attributeName;
if (attributes[attributeName] === true) {
continue;
}
stringifiedAttributes += '=' + attributes[attributeName];
}
return (document.cookie = key + '=' + value + stringifiedAttributes);
}
// Read
if (!key) {
result = {};
}
// To prevent the for loop in the first place assign an empty array
// in case there are no cookies at all. Also prevents odd result when
// calling "get()"
var cookies = document.cookie ? document.cookie.split('; ') : [];
var rdecode = /(%[0-9A-Z]{2})+/g;
var i = 0;
for (; i < cookies.length; i++) {
var parts = cookies[i].split('=');
var cookie = parts.slice(1).join('=');
if (cookie.charAt(0) === '"') {
cookie = cookie.slice(1, -1);
}
try {
var name = parts[0].replace(rdecode, decodeURIComponent);
cookie = converter.read ?
converter.read(cookie, name) : converter(cookie, name) ||
cookie.replace(rdecode, decodeURIComponent);
if (this.json) {
try {
cookie = JSON.parse(cookie);
} catch (e) {}
}
if (key === name) {
result = cookie;
break;
}
if (!key) {
result[name] = cookie;
}
} catch (e) {}
}
return result;
}
api.set = api;
api.get = function (key) {
return api.call(api, key);
};
api.getJSON = function () {
return api.apply({
json: true
}, [].slice.call(arguments));
};
api.defaults = {};
api.remove = function (key, attributes) {
api(key, '', extend(attributes, {
expires: -1
}));
};
api.withConverter = init;
return api;
}
return init(function () {});
}));
var policy = getParameterByName('policy');
var kpid = getParameterByName('kpid');
var exp = getParameterByName('exp');
var sig = getParameterByName('sig');
var encodedTargetUrl = getParameterByName('encodedTargetUrl');
var decodedTargetUrl = encodedTargetUrl && decodeURIComponent(encodedTargetUrl);
var validTargetURL = getValidURL(decodedTargetUrl)
if (policy && kpid && exp && sig) {
var curr_origin = window.location.origin;
Cookies.set('CloudFront-Policy', policy, { secure: true, sameSite: 'None', expires: 1 });
Cookies.set('CloudFront-Key-Pair-Id', kpid, { secure: true, sameSite: 'None', expires: 1 });
Cookies.set('CloudFront-Expiration', exp, { secure: true, sameSite: 'None', expires: 1 });
Cookies.set('CloudFront-Signature', sig, { secure: true, sameSite: 'None', expires: 1 });
if(validTargetURL && curr_origin === validTargetURL.origin) {
window.location.replace(decodedTargetUrl);
} else {
window.location.replace(curr_origin);
}
} else if (Cookies.get("CloudFront-Policy")){
//Nothing to do.
} else {
var referrer = window.location
var encodedUrl = encodeURIComponent(referrer.href)
window.location.replace("https://cloudfrontsigner.ninjas.security.a2z.com/sign?encodedTargetUrl="+encodedUrl);
}
</script>
</head>
<body>
<p>Redirecting you for Auth</p>
<!-- This one should be a Bindle that doesn't exist, and triggers a 400 response from ECS. -->
<div style="display:none" id="bindlediv">amzn1.bindle.resource.cyxbyxemib7sp6l3n6ta</div>
</body>
</html>
{
"status": 403,
"statusText": "Forbidden",
"headers": {
"cache-control": "no-store",
"connection": "keep-alive",
"content-encoding": "gzip",
"content-security-policy": "default-src 'self';font-src 'self' data: m.media-amazon.com/images/G/01/katal/ d1uznvntk80v7s.cloudfront.net/fonts/;frame-src 'self' blob: us-east-1.quicksight.aws.amazon.com vision-dev.iad.corp.amazon.com uat-awstableau.iad.corp.amazon.com awstableau.corp.amazon.com idp-integ.federate.amazon.com midway-auth.amazon.com command-center.support.aws.a2z.com argos.sales.aws.dev cloudfrontsigner.ninjas.security.a2z.com prod-useast-c.online.tableau.com;script-src 'self' internal-cdn.amazon.com midway-auth.amazon.com 'unsafe-inline';style-src 'self' internal-cdn.amazon.com midway-auth.amazon.com 'unsafe-inline' alpha.salesconsole-int.wwro.aws.dev;img-src 'self' blob: data: internal-cdn.amazon.com midway-auth.amazon.com badges.corp.amazon.com wisdom.corp.amazon.com idp.federate.amazon.com d3ngbxwrzqvz0i.cloudfront.net;connect-src 'self' prod-us-west-2-fa-files.s3.us-west-2.amazonaws.com prod.gateway.suds.wwro.aws.dev streaming.prod.gateway.suds.wwro.aws.dev prod.telemetry.suds.wwro.aws.dev midway-auth.amazon.com s3.amazonaws.com s3.us-east-1.amazonaws.com s3.us-west-2.amazonaws.com sts.us-east-1.amazonaws.com sts.us-west-2.amazonaws.com cognito-idp.us-east-1.amazonaws.com cognito-idp.us-west-2.amazonaws.com cognito-identity.us-east-1.amazonaws.com cognito-identity.us-west-2.amazonaws.com dataplane.rum.us-east-1.amazonaws.com dataplane.rum.us-west-2.amazonaws.com pinpoint.us-east-1.amazonaws.com pinpoint.us-west-2.amazonaws.com 0s62bmu3aj.execute-api.us-east-1.amazonaws.com unagi-na.amazon.com d3knqfixx3sbls.cloudfront.net us-east-1.quicksight.aws.amazon.com api.us-east-1.consensus.a2z.com code.amazon.com maxis-service-prod-iad.amazon.com sentry.amazon.com sadevops-prod.auth.us-east-1.amazoncognito.com org-service.sales.aws.a2z.com registry-prod.auth.us-east-1.amazoncognito.com tfc.a2z.com api.prod.tfc.a2z.com tfchub-production.auth.us-west-2.amazoncognito.com awsinvui-static-site-411140965153-us-east-1.s3.us-east-1.amazonaws.com investments.wwro.aws.dev us-west-2.prod.gateway.suds.wwro.aws.dev cunningham-bulk-request-bucket-206635736020-us-east-1.s3.us-east-1.amazonaws.com salesconsole.aws.dev api.spec-req.sales.aws.a2z.com;frame-ancestors 'self' https://aws-crm.visualforce.com https://aws-crm.my.salesforce.com https://aws-crm.lightning.force.com https://midway-auth.amazon.com;object-src 'none'",
"content-type": "text/html",
"date": "Sun, 06 Jul 2025 22:55:30 GMT",
"etag": "W/\"b3208e0cfb1c9b670f27c5e9d4eb8965\"",
"last-modified": "Tue, 01 Jul 2025 23:11:57 GMT",
"referrer-policy": "strict-origin-when-cross-origin",
"server": "AmazonS3",
"strict-transport-security": "max-age=63072000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "Accept-Encoding",
"via": "1.1 ea42f57e1e0a065bc1c1c637f97d3be4.cloudfront.net (CloudFront)",
"x-amz-cf-id": "dDajgB5ABxxlu7hiIiGMQcPIaEkZyp5gRoBvKfnsV_0CeYLgbGBfWg==",
"x-amz-cf-pop": "IAD61-P1",
"x-amz-server-side-encryption": "AES256",
"x-amz-version-id": "ZpdN0NMWNblNDesitLnHiHyhwH8m_aDN",
"x-cache": "Error from cloudfront",
"x-content-type-options": "nosniff"
}
}