Skip to content

Commit 2fea563

Browse files
authored
Bump version v1.1.3 (#177)
1 parent cae5911 commit 2fea563

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
@@ -237,7 +237,7 @@ cs_falcon_oauth_token=$(
237237
token_result=$(echo "client_id=$FALCON_CLIENT_ID&client_secret=$FALCON_CLIENT_SECRET" | \
238238
curl -X POST -s -L "https://$(cs_cloud)/oauth2/token" \
239239
-H 'Content-Type: application/x-www-form-urlencoded; charset=utf-8' \
240-
-H 'User-Agent: crowdstrike-falcon-scripts/1.1.2' \
240+
-H 'User-Agent: crowdstrike-falcon-scripts/1.1.3' \
241241
--dump-header "$response_headers" \
242242
--data @-)
243243
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.2/bash/install/falcon-linux-install.sh | bash
59+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.3/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.2/bash/install/falcon-linux-install.sh | bash -x
91+
curl -L https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.3/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
@@ -630,7 +630,7 @@ cs_falcon_oauth_token=$(
630630
token_result=$(echo "client_id=$cs_falcon_client_id&client_secret=$cs_falcon_client_secret" | \
631631
curl -X POST -s -L "https://$(cs_cloud)/oauth2/token" \
632632
-H 'Content-Type: application/x-www-form-urlencoded; charset=utf-8' \
633-
-H 'User-Agent: crowdstrike-falcon-scripts/1.1.2' \
633+
-H 'User-Agent: crowdstrike-falcon-scripts/1.1.3' \
634634
--dump-header "${response_headers}" \
635635
--data @-)
636636
token=$(echo "$token_result" | json_value "access_token" | sed 's/ *$//g' | sed 's/^ *//g')

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.2/powershell/install/falcon_windows_install.ps1 -OutFile falcon_windows_install.ps1
69+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.3/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.2/powershell/install/falcon_windows_uninstall.ps1 -OutFile falcon_windows_uninstall.ps1
121+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.3/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
@@ -163,7 +163,7 @@ begin {
163163

164164
function Invoke-FalconAuth([string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
165165
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
166-
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.1.2')
166+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.1.3')
167167
try {
168168
$response = Invoke-WebRequest -Uri "$($BaseUrl)/oauth2/token" -UseBasicParsing -Method 'POST' -Headers $Headers -Body $Body
169169
$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
@@ -147,7 +147,7 @@ begin {
147147

148148
function Invoke-FalconAuth([string] $BaseUrl, [hashtable] $Body, [string] $FalconCloud) {
149149
$Headers = @{'Accept' = 'application/json'; 'Content-Type' = 'application/x-www-form-urlencoded'; 'charset' = 'utf-8' }
150-
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.1.2')
150+
$Headers.Add('User-Agent', 'crowdstrike-falcon-scripts/1.1.3')
151151
try {
152152
$response = Invoke-WebRequest -Uri "$($BaseUrl)/oauth2/token" -UseBasicParsing -Method 'POST' -Headers $Headers -Body $Body
153153
$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.2/powershell/migrate/falcon_windows_migrate.ps1" -OutFile "falcon_windows_migrate.ps1"
97+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/crowdstrike/falcon-scripts/v1.1.3/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
@@ -963,7 +963,7 @@ function Get-FalconCloud ([string] $xCsRegion) {
963963

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

0 commit comments

Comments
 (0)