Skip to content

Commit 30a2b64

Browse files
authored
chore: bump v1.7.2 (#394)
new release
1 parent 9cb8437 commit 30a2b64

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

bash/containers/falcon-container-sensor-pull/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The script supports auto-discovery of the Falcon cloud region. If the cloud regi
7171

7272
```terminal
7373
Usage: falcon-container-sensor-pull.sh [options]
74-
Version: 1.7.1
74+
Version: 1.7.2
7575
7676
Required Flags:
7777
-u, --client-id <FALCON_CLIENT_ID> Falcon API OAUTH Client ID

bash/containers/falcon-container-sensor-pull/falcon-container-sensor-pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Description: Bash script to copy Falcon DaemonSet Sensor, Container Sensor, Kube
66

77
set -e
88

9-
VERSION="1.7.1"
9+
VERSION="1.7.2"
1010

1111
usage() {
1212
echo "Usage: $0 [options]

bash/install/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Ensure the following API scopes are enabled:
4343
> :warning:
4444
> It is recommended to use Host Retention Policies in the Falcon console instead.
4545
46-
46+
4747

4848
## Configuration
4949

@@ -99,7 +99,7 @@ The installer is AWS SSM aware, if `FALCON_CLIENT_ID` and `FALCON_CLIENT_SECRET`
9999
Usage: falcon-linux-install.sh [-h|--help]
100100
101101
Installs and configures the CrowdStrike Falcon Sensor for Linux.
102-
Version: 1.7.1
102+
Version: 1.7.2
103103
104104
This script recognizes the following environmental variables:
105105
@@ -196,15 +196,15 @@ To download and run the script directly:
196196
```bash
197197
export FALCON_CLIENT_ID="XXXXXXX"
198198
export FALCON_CLIENT_SECRET="YYYYYYYYY"
199-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-install.sh | bash
199+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-install.sh | bash
200200
```
201201
202202
Alternatively, download the script and run it locally:
203203
204204
```bash
205205
export FALCON_CLIENT_ID="XXXXXXX"
206206
export FALCON_CLIENT_SECRET="YYYYYYYYY"
207-
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-install.sh
207+
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-install.sh
208208
bash falcon-linux-install.sh
209209
```
210210
@@ -221,7 +221,7 @@ FALCON_CLIENT_ID="XXXXXXX" FALCON_CLIENT_SECRET="YYYYYYYYY" bash falcon-linux-in
221221
```bash
222222
export FALCON_CLIENT_ID="XXXXXXX"
223223
export FALCON_CLIENT_SECRET="YYYYYYYYY"
224-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-install.sh | bash
224+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-install.sh | bash
225225
```
226226
227227
#### Install the Falcon Sensor with the previous version (n-1)
@@ -230,7 +230,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash
230230
export FALCON_CLIENT_ID="XXXXXXX"
231231
export FALCON_CLIENT_SECRET="YYYYYYYYY"
232232
export FALCON_SENSOR_VERSION_DECREMENT=1
233-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-install.sh | bash
233+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-install.sh | bash
234234
```
235235
236236
#### Create a Golden Image
@@ -239,7 +239,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash
239239
export FALCON_CLIENT_ID="XXXXXXX"
240240
export FALCON_CLIENT_SECRET="YYYYYYYYY"
241241
export PREP_GOLDEN_IMAGE="true"
242-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-install.sh | bash
242+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-install.sh | bash
243243
```
244244
245245
## Uninstall Script
@@ -248,7 +248,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash
248248
Usage: falcon-linux-uninstall.sh [-h|--help]
249249
250250
Uninstalls the CrowdStrike Falcon Sensor from Linux operating systems.
251-
Version: 1.7.1
251+
Version: 1.7.2
252252
253253
The script recognizes the following environmental variables:
254254
@@ -296,13 +296,13 @@ This script recognizes the following argument:
296296
To download and run the script directly
297297
298298
```bash
299-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-uninstall.sh | bash
299+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-uninstall.sh | bash
300300
```
301301
302302
Alternatively, download the script and run it locally
303303
304304
```bash
305-
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-uninstall.sh
305+
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-uninstall.sh
306306
bash falcon-linux-uninstall.sh
307307
```
308308
@@ -311,7 +311,7 @@ bash falcon-linux-uninstall.sh
311311
#### Uninstall the Falcon Sensor
312312
313313
```bash
314-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-uninstall.sh | bash
314+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-uninstall.sh | bash
315315
```
316316
317317
## Troubleshooting
@@ -325,5 +325,5 @@ bash -x falcon-linux-install.sh
325325
or
326326
327327
```bash
328-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/bash/install/falcon-linux-install.sh | bash -x
328+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/bash/install/falcon-linux-install.sh | bash -x
329329
```

bash/install/falcon-linux-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ This script recognizes the following argument:
9898
EOF
9999
}
100100

101-
VERSION="1.7.1"
101+
VERSION="1.7.2"
102102

103103
# If -h or --help is passed, print the usage and exit
104104
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then

bash/install/falcon-linux-uninstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This script recognizes the following argument:
5151
EOF
5252
}
5353

54-
VERSION="1.7.1"
54+
VERSION="1.7.2"
5555

5656
# If -h or --help is passed, print the usage and exit
5757
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then

powershell/install/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Enable verbose logging
113113
To download the script:
114114

115115
```pwsh
116-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
116+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
117117
```
118118

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

177177
```pwsh
178-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
178+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
179179
```
180180

181181
Basic example that will uninstall the sensor with the provided maintenance token

powershell/install/falcon_windows_install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ begin {
192192

193193
function Invoke-FalconAuth([hashtable] $WebRequestParams, [string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
194194
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
195-
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.1')
195+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.2')
196196
if ($FalconAccessToken) {
197197
$Headers.Add('Authorization', "bearer $($FalconAccessToken)")
198198
}
@@ -395,7 +395,7 @@ process {
395395
throw $message
396396
}
397397
}
398-
398+
399399
if (!$GetAccessToken) {
400400
if (([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole(
401401
[Security.Principal.WindowsBuiltInRole]::Administrator) -eq $false) {

powershell/install/falcon_windows_uninstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ begin {
177177

178178
function Invoke-FalconAuth([hashtable] $WebRequestParams, [string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
179179
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
180-
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.1')
180+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.2')
181181
if ($FalconAccessToken) {
182182
$Headers.Add('Authorization', "bearer $($FalconAccessToken)")
183183
}

powershell/migrate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Enable verbose logging
101101
To download the script, run the following command:
102102

103103
```pwsh
104-
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.1/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
104+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.2/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
105105
```
106106

107107
### Example 1

powershell/migrate/falcon_windows_migrate.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ function Get-FalconCloud ([string] $xCsRegion) {
985985

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

0 commit comments

Comments
 (0)