Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/AI-for-security/connect-to-byo.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ The following is an example Nginx configuration file:
server {
listen 80;
listen [::]:80;
server_name <yourdomainname.com>;
server_name <YOUR_DOMAIN_NAME>;
server_tokens off;
add_header x-xss-protection "1; mode=block" always;
add_header x-frame-options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
return 301 https://$server_name$request_uri;
return 301 <SERVER_NAME><REQUEST_URI>;
}

server {

listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name <yourdomainname.com>;
server_name <YOUR_DOMAIN_NAME>;
server_tokens off;
ssl_certificate /etc/letsencrypt/live/<yourdomainname.com>/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/<yourdomainname.com>/privkey.pem;
ssl_certificate /etc/letsencrypt/live/<YOUR_DOMAIN_NAME>/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/<YOUR_DOMAIN_NAME>/privkey.pem;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;
ssl_session_tickets on;
Expand All @@ -62,15 +62,15 @@ server {
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
ssl_stapling on;
ssl_stapling_verify on;
ssl_trusted_certificate /etc/letsencrypt/live/<yourdomainname.com>/fullchain.pem;
ssl_trusted_certificate /etc/letsencrypt/live/<YOUR_DOMAIN_NAME>/fullchain.pem;
resolver 1.1.1.1;
location / {

if ($http_authorization != "Bearer <secret token>") {
return 401;
}

proxy_pass http://localhost:1234/;
proxy_pass <LOCAL_HOST_URL>:1234/;
}

}
Expand All @@ -81,7 +81,7 @@ server {
If using the example configuration file above, you must replace several values:

* Replace `<secret token>` with your actual token, and keep it safe since you'll need it to set up the {elastic-sec} connector.
* Replace `<yourdomainname.com>` with your actual domain name.
* Replace `<YOUR_DOMAIN_NAME>` with your actual domain name.
* Update the `proxy_pass` value at the bottom of the configuration if you decide to change the port number in LM Studio to something other than 1234.
====

Expand Down
2 changes: 1 addition & 1 deletion docs/cloud-native-security/cspm-get-started-aws.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ You can use the AWS CLI to generate temporary credentials. For example, you coul

[source,console]
----------------------------------
sts get-session-token --serial-number arn:aws:iam::1234:mfa/your-email@example.com --duration-seconds 129600 --token-code 123456
sts get-session-token --serial-number arn:aws:iam::1234:mfa/your-email<example-url> --duration-seconds 129600 --token-code 123456
----------------------------------

The output from this command includes the following fields, which you should provide when configuring the CSPM integration:
Expand Down
2 changes: 1 addition & 1 deletion docs/cloud-native-security/kspm-get-started.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ You can use the AWS CLI to generate temporary credentials. For example, you coul

[source,console]
----------------------------------
`sts get-session-token --serial-number arn:aws:iam::1234:mfa/your-email@example.com --duration-seconds 129600 --token-code 123456`
`sts get-session-token --serial-number arn:aws:iam::1234:mfa/your-email@<example-url> --duration-seconds 129600 --token-code 123456`
----------------------------------

The output from this command includes the following fields, which you should provide when configuring the KSPM integration:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ sequence by winlog.computer_name, winlog.process.pid with maxspan=1s
[any where event.code : "5382" and
(winlog.event_data.SchemaFriendlyName : "Windows Web Password Credential" and winlog.event_data.Resource : "http*") and
not winlog.event_data.SubjectLogonId : "0x3e7" and
not winlog.event_data.Resource : "http://localhost/"]
not winlog.event_data.Resource : "<LOCAL_HOST_URL>"]

[any where event.code : "5382" and
(winlog.event_data.SchemaFriendlyName : "Windows Web Password Credential" and winlog.event_data.Resource : "http*") and
not winlog.event_data.SubjectLogonId : "0x3e7" and
not winlog.event_data.Resource : "http://localhost/"]
not winlog.event_data.Resource : "<LOCAL_HOST_URL>"]

----------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/release-notes/8.16.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ NOTE: These instructions only apply to the Google Chrome browser. Modify the ste

. Right-click anywhere on the **Alerts** page, then select *Inspect* to open Chrome's Developer Tools.
. Go to *Application -> Storage*, then expand *Local Storage*.
. Click on the name of your Kibana instance, for example, http://localhost:1234.
. Click on the name of your Kibana instance, for example, <LOCAL_HOST_URL>:1234.
. Search for the `siem.<space_name>.pageFilters` key, right-click on the value, then click *Delete*. If you have multiple non-default spaces, do this for each space.
. Refresh the **Alerts** page to reload it.

Expand Down
6 changes: 3 additions & 3 deletions docs/release-notes/8.8.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ NOTE: These instructions only apply to the Google Chrome browser. Modify the ste

. Right-click anywhere on the Alerts page, then select *Inspect* to open Chrome's Developer Tools.
. Go to *Application -> Storage*, then expand *Local Storage*.
. Click on the name of your Kibana instance, for example, http://localhost:1234.
. Click on the name of your Kibana instance, for example, <LOCAL_HOST_URL>:1234.
. Search for the `detection-engine-alert-table-securitySolution-rule-details-gridView` key and copy its value. The value you copied is the JSON blob that's used to persist the Alerts table's state, including the table's selected columns.
. Paste the JSON blob into a text file and edit it as follows:
.. Remove the `id:file.name` string from the `columns` array.
Expand Down Expand Up @@ -259,7 +259,7 @@ NOTE: These instructions only apply to the Google Chrome browser. Modify the ste

. Right-click anywhere on the Alerts page, then select *Inspect* to open Chrome's Developer Tools.
. Go to *Application -> Storage*, then expand *Local Storage*.
. Click on the name of your Kibana instance, for example, http://localhost:1234.
. Click on the name of your Kibana instance, for example, <LOCAL_HOST_URL>:1234.
. Search for the `detection-engine-alert-table-securitySolution-rule-details-gridView` key and copy its value. The value you copied is the JSON blob that's used to persist the Alerts table's state, including the table's selected columns.
. Paste the JSON blob into a text file and edit it as follows:
.. Remove the `id:file.name` string from the `columns` array.
Expand Down Expand Up @@ -413,7 +413,7 @@ NOTE: These instructions only apply to the Google Chrome browser. Modify the ste

. Right-click anywhere on the Alerts page, then select *Inspect* to open Chrome's Developer Tools.
. Go to *Application -> Storage*, then expand *Local Storage*.
. Click on the name of your Kibana instance, for example, http://localhost:1234.
. Click on the name of your Kibana instance, for example, <LOCAL_HOST_URL>:1234.
. Search for the `detection-engine-alert-table-securitySolution-rule-details-gridView` key and copy its value. The value you copied is the JSON blob that's used to persist the Alerts table's state, including the table's selected columns.
. Paste the JSON blob into a text file and edit it as follows:
.. Remove the `id:file.name` string from the `columns` array.
Expand Down
4 changes: 2 additions & 2 deletions docs/release-notes/8.9.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ NOTE: These instructions only apply to the Google Chrome browser. Modify the ste

. Right-click anywhere on the Alerts page, then select *Inspect* to open Chrome's Developer Tools.
. Go to *Application -> Storage*, then expand *Local Storage*.
. Click on the name of your Kibana instance, for example, http://localhost:1234.
. Click on the name of your Kibana instance, for example, <LOCAL_HOST_URL>:1234.
. Search for the `detection-engine-alert-table-securitySolution-rule-details-gridView` key and copy its value. The value you copied is the JSON blob that's used to persist the Alert table's state, including the table's selected columns.
. Paste the JSON blob into a text file and edit it as follows:
.. Remove the `id:file.name` string from the `columns` array.
Expand Down Expand Up @@ -115,7 +115,7 @@ NOTE: These instructions only apply to the Google Chrome browser. Modify the ste

. Right-click anywhere on the Alerts page, then select *Inspect* to open Chrome's Developer Tools.
. Go to *Application -> Storage*, then expand *Local Storage*.
. Click on the name of your Kibana instance, for example, http://localhost:1234.
. Click on the name of your Kibana instance, for example, <LOCAL_HOST_URL>:1234.
. Search for the `detection-engine-alert-table-securitySolution-rule-details-gridView` key and copy its value. The value you copied is the JSON blob that's used to persist the Alert table's state, including the table's selected columns.
. Paste the JSON blob into a text file and edit it as follows:
.. Remove the `id:file.name` string from the `columns` array.
Expand Down