Skip to content

Commit

Permalink
chore: bump v1.5.2 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmmatos authored Jun 28, 2024
1 parent e4bf210 commit e3b3796
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bash/containers/falcon-container-sensor-pull/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ The script supports auto-discovery of the Falcon cloud region. If the cloud regi

```terminal
Usage: falcon-container-sensor-pull.sh [options]
Version: 1.5.1
Version: 1.5.2
Required Flags:
-u, --client-id <FALCON_CLIENT_ID> Falcon API OAUTH Client ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Description: Bash script to copy Falcon DaemonSet Sensor, Container Sensor, Kube

set -e

VERSION="1.5.1"
VERSION="1.5.2"

usage() {
echo "Usage: $0 [options]
Expand Down
12 changes: 6 additions & 6 deletions bash/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The installer is AWS SSM aware, if `FALCON_CLIENT_ID` and `FALCON_CLIENT_SECRET`
```terminal
Installs and configures the CrowdStrike Falcon Sensor for Linux.
Version: 1.5.1
Version: 1.5.2
The script recognizes the following environmental variables:
Expand Down Expand Up @@ -160,7 +160,7 @@ Other Options
To download and run the script:
```bash
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/bash/install/falcon-linux-install.sh | bash
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/bash/install/falcon-linux-install.sh | bash
```
Alternatively, you can run the script by cloning the repo:
Expand All @@ -185,7 +185,7 @@ bash falcon-linux-install.sh
```terminal
Uninstalls the CrowdStrike Falcon Sensor from Linux operating systems.
Version: 1.5.1
Version: 1.5.2
The script recognizes the following environmental variables:
Expand Down Expand Up @@ -228,7 +228,7 @@ Other Options:
To download and run the script:
```bash
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/bash/install/falcon-linux-uninstall.sh | bash
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/bash/install/falcon-linux-uninstall.sh | bash
```
Uninstall and remove the host from the Falcon console:
Expand All @@ -237,7 +237,7 @@ Uninstall and remove the host from the Falcon console:
export FALCON_CLIENT_ID="XXXXXXX"
export FALCON_CLIENT_SECRET="YYYYYYYYY"
export FALCON_REMOVE_HOST="true"
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/bash/install/falcon-linux-uninstall.sh | bash
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/bash/install/falcon-linux-uninstall.sh | bash
```
## Troubleshooting
Expand All @@ -251,5 +251,5 @@ bash -x falcon-linux-install.sh
or
```bash
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/bash/install/falcon-linux-install.sh | bash -x
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/bash/install/falcon-linux-install.sh | bash -x
```
2 changes: 1 addition & 1 deletion bash/install/falcon-linux-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Other Options
EOF
}

VERSION="1.5.1"
VERSION="1.5.2"

main() {
if [ -n "$1" ]; then
Expand Down
2 changes: 1 addition & 1 deletion bash/install/falcon-linux-uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Other Options:
EOF
}

VERSION="1.5.1"
VERSION="1.5.2"

main() {
if [ -n "$1" ]; then
Expand Down
4 changes: 2 additions & 2 deletions powershell/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Enable verbose logging
To download the script:

```pwsh
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
```

Basic example that will install the sensor with the provided provisioning token
Expand Down Expand Up @@ -175,7 +175,7 @@ Enable verbose logging
To download the script:

```pwsh
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
```

Basic example that will uninstall the sensor with the provided maintenance token
Expand Down
2 changes: 1 addition & 1 deletion powershell/install/falcon_windows_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ begin {

function Invoke-FalconAuth([hashtable] $WebRequestParams, [string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.5.1')
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.5.2')
if ($FalconAccessToken){
$Headers.Add('Authorization', "bearer $($FalconAccessToken)")
}
Expand Down
2 changes: 1 addition & 1 deletion powershell/install/falcon_windows_uninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ begin {

function Invoke-FalconAuth([hashtable] $WebRequestParams, [string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.5.1')
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.5.2')
if ($FalconAccessToken){
$Headers.Add('Authorization', "bearer $($FalconAccessToken)")
}
Expand Down
2 changes: 1 addition & 1 deletion powershell/migrate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Enable verbose logging
To download the script, run the following command:

```pwsh
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.1/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.5.2/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
```

### Example 1
Expand Down
2 changes: 1 addition & 1 deletion powershell/migrate/falcon_windows_migrate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ function Get-FalconCloud ([string] $xCsRegion) {

function Invoke-FalconAuth([hashtable] $WebRequestParams, [string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.5.1')
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.5.2')
try {
$response = Invoke-WebRequest @WebRequestParams -Uri "$($BaseUrl)/oauth2/token" -UseBasicParsing -Method 'POST' -Headers $Headers -Body $Body
$content = ConvertFrom-Json -InputObject $response.Content
Expand Down

0 comments on commit e3b3796

Please sign in to comment.