Skip to content

Commit 39e7131

Browse files
authored
chore: bump v1.2.0 (#251)
1 parent 59ce8ad commit 39e7131

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

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
@@ -365,7 +365,7 @@ cs_falcon_oauth_token=$(
365365
token_result=$(echo "client_id=$FALCON_CLIENT_ID&client_secret=$FALCON_CLIENT_SECRET" |
366366
curl -X POST -s -L "https://$(cs_cloud)/oauth2/token" \
367367
-H 'Content-Type: application/x-www-form-urlencoded; charset=utf-8' \
368-
-H 'User-Agent: crowdstrike-falcon-scripts/1.1.9' \
368+
-H 'User-Agent: crowdstrike-falcon-scripts/1.2.0' \
369369
--dump-header "$response_headers" \
370370
--data @-)
371371
token=$(echo "$token_result" | json_value "access_token" | sed 's/ *$//g' | sed 's/^ *//g')

bash/install/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ALLOW_LEGACY_CURL (default: false)
5656
**Run the script**:
5757

5858
```bash
59-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.9/bash/install/falcon-linux-install.sh | bash
59+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.2.0/bash/install/falcon-linux-install.sh | bash
6060
```
6161

6262
Alternatively, you can run the script by cloning the repo:
@@ -88,5 +88,5 @@ bash -x falcon-linux-install.sh
8888
or
8989

9090
```bash
91-
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.9/bash/install/falcon-linux-install.sh | bash -x
91+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.2.0/bash/install/falcon-linux-install.sh | bash -x
9292
```

bash/install/falcon-linux-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ cs_falcon_oauth_token=$(
675675
token_result=$(echo "client_id=$cs_falcon_client_id&client_secret=$cs_falcon_client_secret" |
676676
curl -X POST -s -x "$proxy" -L "https://$(cs_cloud)/oauth2/token" \
677677
-H 'Content-Type: application/x-www-form-urlencoded; charset=utf-8' \
678-
-H 'User-Agent: crowdstrike-falcon-scripts/1.1.9' \
678+
-H 'User-Agent: crowdstrike-falcon-scripts/1.2.0' \
679679
--dump-header "${response_headers}" \
680680
--data @-)
681681

powershell/install/README.md

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

6868
```pwsh
69-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.9/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
69+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.2.0/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
7070
```
7171

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

120120
```pwsh
121-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.9/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
121+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.2.0/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
122122
```
123123

124124
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
@@ -180,7 +180,7 @@ begin {
180180

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

powershell/install/falcon_windows_uninstall.ps1

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

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

powershell/migrate/README.md

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

9696
```pwsh
97-
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.9/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
97+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.2.0/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
9898
```
9999

100100
### 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.1.9')
988+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.2.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)