diff options
author | kaniini <ariadne@dereferenced.org> | 2019-07-14 19:24:39 +0000 |
---|---|---|
committer | kaniini <ariadne@dereferenced.org> | 2019-07-14 19:24:39 +0000 |
commit | 509d8058d99d7455155b6e7fad83fed28f2ae02d (patch) | |
tree | 443d91b209b67e793da420c6bcc913eff9201d59 /test | |
parent | 93701c3399add8af2d4a5d43b6f171d84655a533 (diff) | |
parent | 841314c2d504ad108f6a85713546b188096ad735 (diff) | |
download | pleroma-509d8058d99d7455155b6e7fad83fed28f2ae02d.tar.gz pleroma-509d8058d99d7455155b6e7fad83fed28f2ae02d.zip |
Merge branch 'security/ir-generic-containment' into 'develop'
security: IR-based generic object containment
See merge request pleroma/pleroma!1417
Diffstat (limited to 'test')
-rw-r--r-- | test/object/containment_test.exs | 30 | ||||
-rw-r--r-- | test/web/activity_pub/transmogrifier_test.exs | 2 |
2 files changed, 32 insertions, 0 deletions
diff --git a/test/object/containment_test.exs b/test/object/containment_test.exs index 1beed6236..61cd1b412 100644 --- a/test/object/containment_test.exs +++ b/test/object/containment_test.exs @@ -68,4 +68,34 @@ defmodule Pleroma.Object.ContainmentTest do "[error] Could not decode user at fetch https://n1u.moe/users/rye, {:error, :error}" end end + + describe "containment of children" do + test "contain_child() catches spoofing attempts" do + data = %{ + "id" => "http://example.com/whatever", + "type" => "Create", + "object" => %{ + "id" => "http://example.net/~alyssa/activities/1234", + "attributedTo" => "http://example.org/~alyssa" + }, + "actor" => "http://example.com/~bob" + } + + :error = Containment.contain_child(data) + end + + test "contain_child() allows correct origins" do + data = %{ + "id" => "http://example.org/~alyssa/activities/5678", + "type" => "Create", + "object" => %{ + "id" => "http://example.org/~alyssa/activities/1234", + "attributedTo" => "http://example.org/~alyssa" + }, + "actor" => "http://example.org/~alyssa" + } + + :ok = Containment.contain_child(data) + end + end end diff --git a/test/web/activity_pub/transmogrifier_test.exs b/test/web/activity_pub/transmogrifier_test.exs index b896a532b..cabe925f9 100644 --- a/test/web/activity_pub/transmogrifier_test.exs +++ b/test/web/activity_pub/transmogrifier_test.exs @@ -416,6 +416,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do |> Map.put("attributedTo", user.ap_id) |> Map.put("to", ["https://www.w3.org/ns/activitystreams#Public"]) |> Map.put("cc", []) + |> Map.put("id", user.ap_id <> "/activities/12345678") data = Map.put(data, "object", object) @@ -439,6 +440,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do |> Map.put("attributedTo", user.ap_id) |> Map.put("to", nil) |> Map.put("cc", nil) + |> Map.put("id", user.ap_id <> "/activities/12345678") data = Map.put(data, "object", object) |