mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
341 lines
10 KiB
Rego
341 lines
10 KiB
Rego
package pomerium.authz
|
|
|
|
get_google_cloud_serverless_headers(serviceAccount, audience) = h {
|
|
h := {"Authorization": "Bearer xxx"}
|
|
}
|
|
|
|
get_databroker_record(typeURL, id) = v {
|
|
v := object_get(data.databroker_data, typeURL, null)[id]
|
|
}
|
|
|
|
test_email_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["x@example.com"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_impersonate_email_not_allowed {
|
|
not allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["x@example.com"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1", "impersonate_email": "y@example.com"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_impersonate_email_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["y@example.com"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1", "impersonate_email": "y@example.com"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_group_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_groups": ["group1"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
"directory.User": {"user1": {"id": "user1", "group_ids": ["group1"]}},
|
|
"directory.Group": {"group1": {"id": "group1"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_impersonate_groups_not_allowed {
|
|
not allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_groups": ["group1"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1", "impersonate_email": "y@example.com", "impersonate_groups": ["group2"]}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
"directory.User": {"user1": {"id": "user1", "group_ids": ["group1"]}},
|
|
"directory.Group": {"group1": {"id": "group1"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_impersonate_groups_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_groups": ["group2"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1", "impersonate_email": "y@example.com", "impersonate_groups": ["group2"]}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
"directory.User": {"user1": {"id": "user1", "group_ids": ["group1"]}},
|
|
"directory.Group": {"group1": {"id": "group1"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_domain_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_domains": ["example.com"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_impersonate_domain_not_allowed {
|
|
not allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_domains": ["example.com"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1", "impersonate_email": "y@notexample.com"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_impersonate_domain_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_domains": ["notexample.com"],
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1", "impersonate_email": "y@notexample.com"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_idp_claims_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_idp_claims": {"some.claim": ["a", "b"]},
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {"session.Session": {"session1": {"id": "session1", "claims": {"some.claim": ["b"]}}}}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_example {
|
|
not allow with data.route_policies as [
|
|
{
|
|
"source": "http://example.com",
|
|
"path": "/a",
|
|
"allowed_domains": ["example.com"],
|
|
},
|
|
{
|
|
"source": "http://example.com",
|
|
"path": "/b",
|
|
"allowed_users": ["noone@pomerium.com"],
|
|
},
|
|
]
|
|
with input.http as {"url": "http://example.com/b"}
|
|
with input.user as {"id": "1", "email": "joe@example.com"}
|
|
}
|
|
|
|
test_email_denied {
|
|
not allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["bob@example.com"],
|
|
}]
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.user as {"id": "1", "email": "joe@example.com"}
|
|
}
|
|
|
|
test_public_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"AllowPublicUnauthenticatedAccess": true,
|
|
}]
|
|
with input.http as {"url": "http://example.com"}
|
|
}
|
|
|
|
test_public_denied {
|
|
not allow with data.route_policies as [
|
|
{
|
|
"source": "example.com",
|
|
"prefix": "/by-user",
|
|
"allowed_users": ["bob@example.com"],
|
|
},
|
|
{
|
|
"source": "example.com",
|
|
"AllowPublicUnauthenticatedAccess": true,
|
|
},
|
|
]
|
|
with input.http as {"url": "http://example.com/by-user"}
|
|
}
|
|
|
|
test_pomerium_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["bob@example.com"],
|
|
}]
|
|
with input.http as {"url": "http://example.com/.pomerium/"}
|
|
}
|
|
|
|
test_cors_preflight_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["bob@example.com"],
|
|
"CORSAllowPreflight": true,
|
|
}]
|
|
with input.http as {
|
|
"method": "OPTIONS",
|
|
"url": "http://example.com/",
|
|
"headers": {
|
|
"Origin": ["someorigin"],
|
|
"Access-Control-Request-Method": ["GET"],
|
|
},
|
|
}
|
|
}
|
|
|
|
test_cors_preflight_denied {
|
|
not allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"allowed_users": ["bob@example.com"],
|
|
}]
|
|
with input.http as {
|
|
"method": "OPTIONS",
|
|
"url": "http://example.com/",
|
|
"headers": {
|
|
"Origin": ["someorigin"],
|
|
"Access-Control-Request-Method": ["GET"],
|
|
},
|
|
}
|
|
}
|
|
|
|
test_parse_url {
|
|
url := parse_url("http://example.com/some/path?qs")
|
|
url.scheme == "http"
|
|
url.host == "example.com"
|
|
url.path == "/some/path"
|
|
}
|
|
|
|
test_parse_tcp_url {
|
|
url := parse_url("tcp+http://example.com/some/path?qs")
|
|
url.scheme == "tcp+http"
|
|
url.host == "example.com"
|
|
url.path == "/some/path"
|
|
}
|
|
|
|
test_allowed_route_source {
|
|
allowed_route("http://example.com", {"source": "example.com"})
|
|
allowed_route("http://example.com", {"source": "http://example.com"})
|
|
allowed_route("http://example.com", {"source": "https://example.com"})
|
|
allowed_route("http://example.com/", {"source": "https://example.com"})
|
|
allowed_route("http://example.com", {"source": "https://example.com/"})
|
|
allowed_route("http://example.com/", {"source": "https://example.com/"})
|
|
not allowed_route("http://example.org", {"source": "example.com"})
|
|
}
|
|
|
|
test_allowed_route_prefix {
|
|
allowed_route("http://example.com", {"prefix": "/"})
|
|
allowed_route("http://example.com/admin/somepath", {"prefix": "/admin"})
|
|
not allowed_route("http://example.com", {"prefix": "/admin"})
|
|
}
|
|
|
|
test_allowed_route_path {
|
|
allowed_route("http://example.com", {"path": "/"})
|
|
allowed_route("http://example.com/", {"path": "/"})
|
|
not allowed_route("http://example.com/admin/somepath", {"path": "/admin"})
|
|
not allowed_route("http://example.com", {"path": "/admin"})
|
|
}
|
|
|
|
test_allowed_route_regex {
|
|
allowed_route("http://example.com", {"regex": ".*"})
|
|
allowed_route("http://example.com/admin/somepath", {"regex": "/admin/.*"})
|
|
not allowed_route("http://example.com", {"regex": "[xyz]"})
|
|
}
|
|
|
|
test_sub_policy {
|
|
x := get_allowed_users({
|
|
"source": "example.com",
|
|
"allowed_users": ["u1", "u2"],
|
|
"sub_policies": [
|
|
{"allowed_users": ["u1", "u3"]},
|
|
{"allowed_users": ["u2", "u4"]},
|
|
],
|
|
})
|
|
|
|
x == {"u1", "u2", "u3", "u4"}
|
|
|
|
y := get_allowed_domains({
|
|
"source": "example.com",
|
|
"allowed_domains": ["d1", "d2"],
|
|
"sub_policies": [
|
|
{"allowed_domains": ["d1", "d3"]},
|
|
{"allowed_domains": ["d2", "d4"]},
|
|
],
|
|
})
|
|
|
|
y == {"d1", "d2", "d3", "d4"}
|
|
|
|
z := get_allowed_groups({
|
|
"source": "example.com",
|
|
"allowed_groups": ["g1", "g2"],
|
|
"sub_policies": [
|
|
{"allowed_groups": ["g1", "g3"]},
|
|
{"allowed_groups": ["g2", "g4"]},
|
|
],
|
|
})
|
|
|
|
z == {"g1", "g2", "g3", "g4"}
|
|
}
|
|
|
|
test_are_claims_allowed {
|
|
are_claims_allowed({"a": ["1"]}, {"a": ["1"]})
|
|
not are_claims_allowed({"a": ["2"]}, {"a": ["1"]})
|
|
|
|
are_claims_allowed({"a": ["1", "2", "3"]}, {"a": ["1"]})
|
|
are_claims_allowed({"a": ["1"]}, {"a": ["1", "2", "3"]})
|
|
not are_claims_allowed({"a": ["4", "5", "6"]}, {"a": ["1"]})
|
|
|
|
are_claims_allowed({"a.b.c": ["1"], "d.e.f": ["2"]}, {"d.e.f": ["2"]})
|
|
}
|
|
|
|
test_any_authenticated_user_allowed {
|
|
allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"AllowAnyAuthenticatedUser": true,
|
|
}]
|
|
with data.databroker_data as {"type.googleapis.com": {
|
|
"session.Session": {"session1": {"id": "session1", "user_id": "user1"}},
|
|
"user.User": {"user1": {"id": "user1", "email": "x@example.com"}},
|
|
}}
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|
|
|
|
test_any_authenticated_user_denied {
|
|
not allow with data.route_policies as [{
|
|
"source": "example.com",
|
|
"AllowAnyAuthenticatedUser": true,
|
|
}]
|
|
with input.http as {"url": "http://example.com"}
|
|
with input.session as {"id": "session1"}
|
|
}
|