56f47361f9
* Extract shared DnsTestHelper from duplicated stub_dns_resolution methods * Fix flaky WebTest by stubbing DNS resolution for push subscription creation
86 lines
2.9 KiB
Ruby
86 lines
2.9 KiB
Ruby
require "test_helper"
|
|
|
|
class SsrfProtectionTest < ActiveSupport::TestCase
|
|
test "blocks loopback addresses" do
|
|
stub_dns_resolution("127.0.0.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("localhost")
|
|
end
|
|
|
|
test "blocks private 10.x.x.x addresses" do
|
|
stub_dns_resolution("10.0.0.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("internal.example.com")
|
|
end
|
|
|
|
test "blocks private 172.16.x.x addresses" do
|
|
stub_dns_resolution("172.16.0.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("internal.example.com")
|
|
end
|
|
|
|
test "blocks private 192.168.x.x addresses" do
|
|
stub_dns_resolution("192.168.1.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("internal.example.com")
|
|
end
|
|
|
|
test "blocks link-local addresses (AWS metadata endpoint)" do
|
|
stub_dns_resolution("169.254.169.254")
|
|
assert_nil SsrfProtection.resolve_public_ip("metadata.example.com")
|
|
end
|
|
|
|
test "blocks carrier-grade NAT addresses" do
|
|
stub_dns_resolution("100.64.0.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("cgnat.example.com")
|
|
end
|
|
|
|
test "blocks benchmark testing addresses" do
|
|
stub_dns_resolution("198.18.0.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("benchmark.example.com")
|
|
end
|
|
|
|
test "blocks broadcast addresses" do
|
|
stub_dns_resolution("0.0.0.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("broadcast.example.com")
|
|
end
|
|
|
|
test "allows public addresses" do
|
|
stub_dns_resolution("93.184.216.34")
|
|
assert_equal "93.184.216.34", SsrfProtection.resolve_public_ip("example.com")
|
|
end
|
|
|
|
test "returns first public IP when multiple addresses resolve" do
|
|
stub_dns_resolution("10.0.0.1", "93.184.216.34", "192.168.1.1")
|
|
assert_equal "93.184.216.34", SsrfProtection.resolve_public_ip("multi.example.com")
|
|
end
|
|
|
|
# IPv6 address format tests (SSRF bypass prevention)
|
|
|
|
test "blocks IPv4-mapped IPv6 addresses with private IPs" do
|
|
stub_dns_resolution("::ffff:192.168.1.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("mapped-private.example.com")
|
|
end
|
|
|
|
test "blocks IPv4-mapped IPv6 addresses with link-local IPs" do
|
|
stub_dns_resolution("::ffff:169.254.169.254")
|
|
assert_nil SsrfProtection.resolve_public_ip("mapped-metadata.example.com")
|
|
end
|
|
|
|
test "blocks IPv4-mapped IPv6 addresses even with public IPs" do
|
|
stub_dns_resolution("::ffff:93.184.216.34")
|
|
assert_nil SsrfProtection.resolve_public_ip("mapped-public.example.com")
|
|
end
|
|
|
|
test "blocks IPv4-compatible IPv6 addresses with private IPs" do
|
|
stub_dns_resolution("::192.168.1.1")
|
|
assert_nil SsrfProtection.resolve_public_ip("compat-private.example.com")
|
|
end
|
|
|
|
test "blocks IPv4-compatible IPv6 addresses with link-local IPs" do
|
|
stub_dns_resolution("::169.254.169.254")
|
|
assert_nil SsrfProtection.resolve_public_ip("compat-metadata.example.com")
|
|
end
|
|
|
|
test "blocks IPv4-compatible IPv6 addresses even with public IPs" do
|
|
stub_dns_resolution("::93.184.216.34")
|
|
assert_nil SsrfProtection.resolve_public_ip("compat-public.example.com")
|
|
end
|
|
end
|