From 202095fce6fc0d5371141eaf2b00e1bf839be5e3 Mon Sep 17 00:00:00 2001 From: Ciaran <> Date: Wed, 21 Jun 2023 08:16:50 +0100 Subject: [PATCH] Add proxy TLS passthrough settings. Use like so https://gist.github.com/vsec7/d5518a432b70714bedad79e4963ff320 --- BurpSuiteSSLPassTrough.json | 149 ++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 BurpSuiteSSLPassTrough.json diff --git a/BurpSuiteSSLPassTrough.json b/BurpSuiteSSLPassTrough.json new file mode 100644 index 0000000..61d9ff0 --- /dev/null +++ b/BurpSuiteSSLPassTrough.json @@ -0,0 +1,149 @@ +{ + "proxy":{ + "ssl_pass_through":{ + "automatically_add_entries_on_client_ssl_negotiation_failure":false, + "rules":[ + { + "enabled":true, + "host":".*\\.google\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.gstatic\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.googleapis\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.google-analytics\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.googletagmanager\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.googletagservices\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.google\\.co\\.*", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.doubleclick\\.net", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.googleadservices\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.googlesyndication\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.googleusercontent\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.mozilla\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.mozilla\\.net", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.firefox\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.bugsnag\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.yastatic\\.net", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.admetrica\\.ru", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.twimg\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.yahoo\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.mozilla\\.org", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.yimg\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.x-tags\\.net", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.uadexchange\\.com", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.uzone\\.id", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.notifa\\.info", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.cloudfront\\.net", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.indihome\\.co\\.id", + "protocol":"any" + }, + { + "enabled":true, + "host":".*\\.upoint\\.id", + "protocol":"any" + } + ] + } + } +} \ No newline at end of file