Commit 0d5b3af Corentin Mors
authored
1 parent 5194e51 commit 0d5b3af Copy full SHA for 0d5b3af
File tree 8 files changed +63
-23
lines changed
8 files changed +63
-23
lines changed Original file line number Diff line number Diff line change 1
- import { Callout } from ' nextra/components ' ;
1
+ import { TeamCredentialsBanner } from ' ../../src/banners ' ;
2
2
3
3
# Audit logs
4
4
5
- <Callout emoji = " 💡 " >Needs team credentials to use this command.</ Callout >
5
+ <TeamCredentialsBanner / >
6
6
7
7
The audit logs helps you trace and prevent security vulnerabilities for your organization.
8
8
@@ -152,7 +152,7 @@ Note that a new key named `date_time_iso` will be added to the logs.
152
152
153
153
You can turn on logging sensitive actions in the Policies section of Settings in the Admin Console. Read more about it in our [ dedicated Help Center article] ( https://support.dashlane.com/hc/en-us/articles/4414606120210 ) .
154
154
155
- | Type | Event message |
155
+ | Type | Event message |
156
156
| ------------------------------------------ | ------------------------------------------------------------------------------------------ |
157
157
| collect_sensitive_data_audit_logs_enabled | (user) turned on additional activity logs (unencrypted) |
158
158
| collect_sensitive_data_audit_logs_disabled | (user) turned off additional activity logs (unencrypted) |
Original file line number Diff line number Diff line change 1
- import { Callout } from ' nextra/components ' ;
1
+ import { TeamCredentialsBanner } from ' ../../src/banners ' ;
2
2
3
3
# Dark Web Insights Reports
4
4
5
- <Callout emoji = " 💡 " >Needs team credentials to use this command.</ Callout >
5
+ <TeamCredentialsBanner / >
6
6
7
7
Dark Web Insights can identify vulnerabilities across all employees in an organization, even employees who don't have a Dashlane account yet.
8
8
It does this by monitoring the dark web for employee email addresses to find domain-wide breaches and by scanning the web for any compromised organization information.
Original file line number Diff line number Diff line change 1
1
import { Callout } from ' nextra/components' ;
2
+ import { AdminBanner } from ' ../../src/banners' ;
2
3
3
4
# Get started with Business Commands
4
5
@@ -9,39 +10,51 @@ The first step is to login with the personal account ([follow this guide](../per
9
10
10
11
## Generate credentials
11
12
12
- <Callout >Needs to be authenticated as an admin to use this command.</ Callout >
13
+ <AdminBanner / >
13
14
14
15
``` sh copy
15
16
dcli t credentials generate
16
17
```
17
18
18
- You will be prompted with a list of variables to export in your environment. Simply copy/paste them in your terminal.
19
+ You will be prompted with a variable to export in your environment. Simply copy/paste it in your terminal.
19
20
20
21
``` sh copy
21
22
export DASHLANE_TEAM_DEVICE_KEYS=dlt_[deviceAccessKey]_[payload]
22
23
```
23
24
24
- On Windows, you can use the ` set ` command instead of ` export ` .
25
+ ---
25
26
26
- ``` sh copy
27
- set DASHLANE_TEAM_DEVICE_KEYS=dlt_[deviceAccessKey]_[payload]
27
+ On ** Windows** , you can use the following command instead of ` export ` .
28
+
29
+ ``` powershell copy
30
+ $env:DASHLANE_TEAM_DEVICE_KEYS='dlt_[deviceAccessKey]_[payload]'
31
+ ```
32
+
33
+ You can ensure that the variable is correctly set by running:
34
+
35
+ ``` powershell copy
36
+ Get-ChildItem Env:
28
37
```
29
38
30
- Make sure you save them in a safe place (use a secure note for instance 😉).
39
+ ---
40
+
41
+ Make sure you save the generated secret in a safe place (use a secure note for instance 😉).
31
42
32
- <Callout type = " info" >The token you'll get is starting by ` dlt ` in order to be easily identified by scanning tools.</Callout >
43
+ <Callout type = " info" >
44
+ The token you'll get is starting by ` dlt ` in order to be easily identified by scanning tools.
45
+ </Callout >
33
46
34
47
## List credentials
35
48
36
- <Callout >Needs to be authenticated as an admin to use this command.</ Callout >
49
+ <AdminBanner / >
37
50
38
51
``` sh copy
39
52
dcli t credentials list
40
53
```
41
54
42
55
## Revoke credentials
43
56
44
- <Callout >Needs to be authenticated as an admin to use this command.</ Callout >
57
+ <AdminBanner / >
45
58
46
59
``` sh copy
47
60
dcli t credentials revoke < DASHLANE_TEAM_ACCESS_KEY>
Original file line number Diff line number Diff line change 1
- import { Callout } from ' nextra/components ' ;
1
+ import { TeamCredentialsBanner } from ' ../../src/banners ' ;
2
2
3
3
# Listing members
4
4
5
- <Callout >Needs team credentials to use this command.</ Callout >
5
+ <TeamCredentialsBanner / >
6
6
7
7
## Fetching the list of members
8
8
Original file line number Diff line number Diff line change 1
- import { Callout } from ' nextra/components ' ;
1
+ import { TeamCredentialsBanner } from ' ../../src/banners ' ;
2
2
3
3
# Reports
4
4
5
- <Callout emoji = " 💡 " >Needs team credentials to use this command.</ Callout >
5
+ <TeamCredentialsBanner / >
6
6
7
7
You can get reports on your team containing:
8
8
Original file line number Diff line number Diff line change @@ -68,12 +68,25 @@ Run the suggested commands on your target device (your server or CI) to set the
68
68
export DASHLANE_SERVICE_DEVICE_KEYS=dls_[deviceAccessKey]_[payload]
69
69
```
70
70
71
- On Windows, you can use the ` set ` command instead of ` export ` .
71
+ ---
72
72
73
- ``` sh
74
- set DASHLANE_SERVICE_DEVICE_KEYS=dls_[deviceAccessKey]_[payload]
73
+ On ** Windows** , you can use the following command instead of ` export ` .
74
+
75
+ ``` powershell copy
76
+ $env:DASHLANE_SERVICE_DEVICE_KEYS='dls_[deviceAccessKey]_[payload]'
75
77
```
76
78
79
+ You can ensure that the variable is correctly set by running:
80
+
81
+ ``` powershell copy
82
+ Get-ChildItem Env:
83
+ ```
84
+
85
+ ---
86
+
87
+ Make sure to ** save the generated secret in a safe place** (like a secure note).
88
+ Consider it as ** highly sensitive information** as it grants access to your vault.
89
+
77
90
<Callout type = " info" >
78
91
The token you'll get is starting by ` dls ` in order to be easily identified by scanning tools.
79
92
</Callout >
Original file line number Diff line number Diff line change
1
+ import { Callout } from 'nextra/components' ;
2
+ import Link from 'next/link' ;
3
+
4
+ export const TeamCredentialsBanner = ( ) => {
5
+ return (
6
+ < Callout emoji = "💡" > This command needs team credentials to be used. See < Link href = '/business' style = { { textDecoration : 'underline' } } > team credentials generation</ Link > .</ Callout >
7
+ ) ;
8
+ } ;
9
+
10
+ export const AdminBanner = ( ) => {
11
+ return (
12
+ < Callout emoji = "🔒" > This command is only available to team administrators.</ Callout >
13
+ ) ;
14
+ } ;
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ import { GenericLog } from '../types/logs.js';
5
5
6
6
export interface StartAuditLogsQueryParams {
7
7
/**
8
- * The start of the date range to query audit logs by. The format is unix timestamp in seconds . Only the date is used, not the time.
8
+ * The start of the date range to query audit logs by. The format is unix timestamp in milliseconds . Only the date is used, not the time.
9
9
*/
10
10
startDateRangeUnixMs : number ;
11
11
/**
12
- * The end of the date range of to query audit logs by. The format is unix timestamp in seconds . Only the date is used, not the time.
12
+ * The end of the date range of to query audit logs by. The format is unix timestamp in milliseconds . Only the date is used, not the time.
13
13
*/
14
14
endDateRangeUnixMs : number ;
15
15
}
You can’t perform that action at this time.
0 commit comments