-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into visi-aha-gather
- Loading branch information
Showing
15 changed files
with
108 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
desc: Fixed an issue where the deprecated types ``edge`` and ``timeedge`` were not annotated | ||
as such by the ``getModelDict()`` API. | ||
prs: [] | ||
type: bug | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
desc: Fixed an issue where certain User and Role properties could be modified via | ||
Storm and adversely affect the in-memory representation of those objects. | ||
prs: [] | ||
type: bug | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
desc: Added ``$lib.cell.iden`` to retrieve the iden of the Cortex which the Storm | ||
query is executing on. Unlike ``$lib.cell.getCellInfo().cell.iden``, this value | ||
is available to non-admin users. | ||
prs: [] | ||
type: feat | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
desc: Deprecated ``$lib.infosec.cvss.calculate()`` and ``$lib.infosec.cvss.calculateFromProps()``. | ||
prs: [] | ||
type: deprecation | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
desc: Added ``--find`` option to ``auth.perms.list`` to easily filter permission | ||
results. | ||
prs: [] | ||
type: feat | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1127,9 +1127,19 @@ async def test_cell_authv2(self): | |
await proxy.addUserRole(visi['iden'], ninjas['iden']) | ||
await proxy.setUserEmail(visi['iden'], '[email protected]') | ||
|
||
def1 = await core.getUserDef(visi['iden']) | ||
def2 = await core.getUserDef(visi['iden']) | ||
self.false(def1['authgates'] is def2['authgates']) | ||
self.eq(def1, def2) | ||
|
||
visi = await proxy.getUserDefByName('visi') | ||
self.eq(visi['email'], '[email protected]') | ||
|
||
def1 = await core.getRoleDef(ninjas['iden']) | ||
def2 = await core.getRoleDef(ninjas['iden']) | ||
self.false(def1['authgates'] is def2['authgates']) | ||
self.eq(def1, def2) | ||
|
||
self.true(await proxy.isUserAllowed(visi['iden'], ('foo', 'bar'))) | ||
self.true(await proxy.isUserAllowed(visi['iden'], ('hehe', 'haha'))) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters