Skip to content

Commit 72d1f4d

Browse files
authored
chore: bump v1.7.0 (#381)
1 parent 8646bf1 commit 72d1f4d

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
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.6.0
74+
Version: 1.7.0
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.6.0"
9+
VERSION="1.7.0"
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
@@ -94,7 +94,7 @@ The installer is AWS SSM aware, if `FALCON_CLIENT_ID` and `FALCON_CLIENT_SECRET`
9494
Usage: falcon-linux-install.sh [-h|--help]
9595
9696
Installs and configures the CrowdStrike Falcon Sensor for Linux.
97-
Version: 1.6.0
97+
Version: 1.7.0
9898
9999
This script recognizes the following environmental variables:
100100
@@ -191,15 +191,15 @@ To download and run the script directly:
191191
```bash
192192
export FALCON_CLIENT_ID="XXXXXXX"
193193
export FALCON_CLIENT_SECRET="YYYYYYYYY"
194-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-install.sh | bash
194+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-install.sh | bash
195195
```
196196
197197
Alternatively, download the script and run it locally:
198198
199199
```bash
200200
export FALCON_CLIENT_ID="XXXXXXX"
201201
export FALCON_CLIENT_SECRET="YYYYYYYYY"
202-
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-install.sh
202+
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-install.sh
203203
bash falcon-linux-install.sh
204204
```
205205
@@ -216,7 +216,7 @@ FALCON_CLIENT_ID="XXXXXXX" FALCON_CLIENT_SECRET="YYYYYYYYY" bash falcon-linux-in
216216
```bash
217217
export FALCON_CLIENT_ID="XXXXXXX"
218218
export FALCON_CLIENT_SECRET="YYYYYYYYY"
219-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-install.sh | bash
219+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-install.sh | bash
220220
```
221221
222222
#### Install the Falcon Sensor with the previous version (n-1)
@@ -225,7 +225,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash
225225
export FALCON_CLIENT_ID="XXXXXXX"
226226
export FALCON_CLIENT_SECRET="YYYYYYYYY"
227227
export FALCON_SENSOR_VERSION_DECREMENT=1
228-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-install.sh | bash
228+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-install.sh | bash
229229
```
230230
231231
#### Create a Golden Image
@@ -234,7 +234,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash
234234
export FALCON_CLIENT_ID="XXXXXXX"
235235
export FALCON_CLIENT_SECRET="YYYYYYYYY"
236236
export PREP_GOLDEN_IMAGE="true"
237-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-install.sh | bash
237+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-install.sh | bash
238238
```
239239
240240
## Uninstall Script
@@ -243,7 +243,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash
243243
Usage: falcon-linux-uninstall.sh [-h|--help]
244244
245245
Uninstalls the CrowdStrike Falcon Sensor from Linux operating systems.
246-
Version: 1.6.0
246+
Version: 1.7.0
247247
248248
The script recognizes the following environmental variables:
249249
@@ -290,13 +290,13 @@ This script recognizes the following argument:
290290
To download and run the script directly
291291
292292
```bash
293-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-uninstall.sh | bash
293+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-uninstall.sh | bash
294294
```
295295
296296
Alternatively, download the script and run it locally
297297
298298
```bash
299-
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-uninstall.sh
299+
curl -O https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-uninstall.sh
300300
bash falcon-linux-uninstall.sh
301301
```
302302
@@ -305,7 +305,7 @@ bash falcon-linux-uninstall.sh
305305
#### Uninstall the Falcon Sensor
306306
307307
```bash
308-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-uninstall.sh | bash
308+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-uninstall.sh | bash
309309
```
310310
311311
#### Uninstall and remove the host from the Falcon console
@@ -314,7 +314,7 @@ curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash
314314
export FALCON_CLIENT_ID="XXXXXXX"
315315
export FALCON_CLIENT_SECRET="YYYYYYYYY"
316316
export FALCON_REMOVE_HOST="true"
317-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-uninstall.sh | bash
317+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-uninstall.sh | bash
318318
```
319319
320320
## Troubleshooting
@@ -328,5 +328,5 @@ bash -x falcon-linux-install.sh
328328
or
329329
330330
```bash
331-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.6.0/bash/install/falcon-linux-install.sh | bash -x
331+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/bash/install/falcon-linux-install.sh | bash -x
332332
```

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.6.0"
101+
VERSION="1.7.0"
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
@@ -50,7 +50,7 @@ This script recognizes the following argument:
5050
EOF
5151
}
5252

53-
VERSION="1.6.0"
53+
VERSION="1.7.0"
5454

5555
# If -h or --help is passed, print the usage and exit
5656
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.6.0/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
116+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/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.6.0/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
178+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/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: 1 addition & 1 deletion
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.6.0')
195+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.0')
196196
if ($FalconAccessToken){
197197
$Headers.Add('Authorization', "bearer $($FalconAccessToken)")
198198
}

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.6.0')
180+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.0')
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.6.0/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
104+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.7.0/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.6.0')
988+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.7.0')
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)