forked from p15670423/monkey
tests: Add unit test for custom PBA dir permissions on Windows
This commit is contained in:
parent
75a2f1b12e
commit
7211d59a38
|
@ -2,8 +2,17 @@ import os
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
from monkey_island.cc.server_utils.file_utils import is_windows_os
|
||||||
from monkey_island.cc.services.post_breach_files import PostBreachFilesService
|
from monkey_island.cc.services.post_breach_files import PostBreachFilesService
|
||||||
|
|
||||||
|
if is_windows_os():
|
||||||
|
import win32api
|
||||||
|
import win32security
|
||||||
|
|
||||||
|
FULL_CONTROL = 2032127
|
||||||
|
ACE_ACCESS_MODE_GRANT_ACCESS = win32security.GRANT_ACCESS
|
||||||
|
ACE_INHERIT_OBJECT_AND_CONTAINER = 3
|
||||||
|
|
||||||
|
|
||||||
def raise_(ex):
|
def raise_(ex):
|
||||||
raise ex
|
raise ex
|
||||||
|
@ -33,12 +42,41 @@ def dir_is_empty(dir_path):
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(os.name != "posix", reason="Tests Posix (not Windows) permissions.")
|
@pytest.mark.skipif(os.name != "posix", reason="Tests Posix (not Windows) permissions.")
|
||||||
def test_custom_pba_dir_permissions():
|
def test_custom_pba_dir_permissions_linux():
|
||||||
st = os.stat(PostBreachFilesService.get_custom_pba_directory())
|
st = os.stat(PostBreachFilesService.get_custom_pba_directory())
|
||||||
|
|
||||||
assert st.st_mode == 0o40700
|
assert st.st_mode == 0o40700
|
||||||
|
|
||||||
|
|
||||||
|
def _get_acl_and_sid_from_path(path: str):
|
||||||
|
sid, _, _ = win32security.LookupAccountName("", win32api.GetUserName())
|
||||||
|
security_descriptor = win32security.GetNamedSecurityInfo(
|
||||||
|
path, win32security.SE_FILE_OBJECT, win32security.DACL_SECURITY_INFORMATION
|
||||||
|
)
|
||||||
|
acl = security_descriptor.GetSecurityDescriptorDacl()
|
||||||
|
return acl, sid
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skipif(os.name == "posix", reason="Tests Windows (not Posix) permissions.")
|
||||||
|
def test_custom_pba_dir_permissions_windows():
|
||||||
|
pba_dir = PostBreachFilesService.get_custom_pba_directory()
|
||||||
|
|
||||||
|
acl, user_sid = _get_acl_and_sid_from_path(pba_dir)
|
||||||
|
|
||||||
|
assert acl.GetAceCount() == 1
|
||||||
|
|
||||||
|
ace = acl.GetExplicitEntriesFromAcl()[0]
|
||||||
|
|
||||||
|
ace_access_mode = ace["AccessMode"]
|
||||||
|
ace_permissions = ace["AccessPermissions"]
|
||||||
|
ace_inheritance = ace["Inheritance"]
|
||||||
|
ace_sid = ace["Trustee"]["Identifier"]
|
||||||
|
|
||||||
|
assert ace_sid == user_sid
|
||||||
|
assert ace_permissions == FULL_CONTROL and ace_access_mode == ACE_ACCESS_MODE_GRANT_ACCESS
|
||||||
|
assert ace_inheritance == ACE_INHERIT_OBJECT_AND_CONTAINER
|
||||||
|
|
||||||
|
|
||||||
def test_remove_failure(monkeypatch):
|
def test_remove_failure(monkeypatch):
|
||||||
monkeypatch.setattr(os, "remove", lambda x: raise_(OSError("Permission denied")))
|
monkeypatch.setattr(os, "remove", lambda x: raise_(OSError("Permission denied")))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue