-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into public-beta
- Loading branch information
Showing
329 changed files
with
12,483 additions
and
4,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
## Reporting a security vulnerability to IVPN | ||
|
||
If you believe you have found a security vulnerability, **DO NOT CREATE AN ISSUE**. Instead, please send an email to [email protected]. We treat all reports with the highest priority and confidentiality. | ||
If you believe you have found a security vulnerability, **DO NOT CREATE AN ISSUE**. Instead, please send an email to [email protected] or file a report directly on GitHub with [Private vulnerability reporting](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability). We treat all reports with the highest priority and confidentiality. | ||
|
||
## Incident resolution process | ||
|
||
|
@@ -58,4 +58,4 @@ fw0vw5vWVvCDLCQx+sLeNNwWl8291JZNPaSjhuUkK7npNRHV8M3AC5UhhJjwS5K98YeZUeE/4SLN | |
T7Vor9NUBZb2g6gu2CwiPAhOS5TY/Oqgh3rvBcDS8X9pgOYXpnTrRLJNhZEjNawRvsqbjJV7vpzL | ||
x6/Qj0RvfminJWZZz54gHHuh/98PpmByzXLdpQ8GH+PiUd8n5AyA9FxW81kSLTE==o/fv | ||
-----END PGP PUBLIC KEY BLOCK----- | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,26 @@ | ||
name: CI | ||
|
||
on: pull_request | ||
# This action is disabled until we can run it on Apple Silicon powered macOS runners - https://github.com/github/roadmap/issues/528 | ||
|
||
jobs: | ||
test: | ||
name: Unit and UI Tests | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: Pods | ||
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pods- | ||
- name: Install dependencies | ||
run: pod install | ||
- name: Set up config files | ||
run: | | ||
cp IVPNClient/Config/staging.template.xcconfig IVPNClient/Config/staging.xcconfig | ||
cp IVPNClient/Config/release.template.xcconfig IVPNClient/Config/release.xcconfig | ||
cp wireguard-tunnel-provider/Config/wg-staging.template.xcconfig wireguard-tunnel-provider/Config/wg-staging.xcconfig | ||
cp wireguard-tunnel-provider/Config/wg-release.template.xcconfig wireguard-tunnel-provider/Config/wg-release.xcconfig | ||
cp today-extension/Config/today-extension-staging.template.xcconfig today-extension/Config/today-extension-staging.xcconfig | ||
cp today-extension/Config/today-extension-release.template.xcconfig today-extension/Config/today-extension-release.xcconfig | ||
cp IVPNClient/Config/OpenVPNConf.template.swift IVPNClient/Config/OpenVPNConf.swift | ||
cp fastlane/Appfile.template fastlane/Appfile | ||
- name: Build and test | ||
run: xcodebuild test -workspace IVPNClient.xcworkspace -scheme IVPNClient -destination 'platform=iOS Simulator,name=iPhone 11' | ||
# on: | ||
# push: | ||
# branches: [ "main", "develop" ] | ||
# pull_request: | ||
|
||
# jobs: | ||
# test: | ||
# name: Unit and UI Tests | ||
# runs-on: macOS-latest | ||
# steps: | ||
# - uses: actions/setup-go@v2 | ||
# with: | ||
# go-version: 1.18 | ||
# - uses: actions/checkout@v2 | ||
# - name: Set up config files | ||
# run: | | ||
# cp IVPNClient/Config/staging.template.xcconfig IVPNClient/Config/staging.xcconfig | ||
# cp IVPNClient/Config/release.template.xcconfig IVPNClient/Config/release.xcconfig | ||
# cp IVPNClient/Config/OpenVPNConf.template.swift IVPNClient/Config/OpenVPNConf.swift | ||
# cp fastlane/Appfile.template fastlane/Appfile | ||
# - name: Build and test | ||
# run: xcodebuild test -scheme IVPNClient -destination 'platform=iOS Simulator,name=iPhone 14' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
name: Lint Code Base | ||
|
||
on: pull_request | ||
on: | ||
push: | ||
branches: [ "main", "develop" ] | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: mobsfscan | ||
|
||
on: | ||
push: | ||
branches: [ "main", "develop" ] | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: mobsfscan | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: mobsfscan | ||
uses: MobSF/mobsfscan@main | ||
with: | ||
args: '. --json' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ Juraj Hilje <[email protected]> | |
|
||
# Organizations | ||
|
||
Privatus Limited | ||
IVPN Limited |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.