Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SMSI-838: Expose VPN relay SS #174

Merged
merged 4 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/forty-seas-prove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'fingerprint-pro-server-api-openapi': minor
---

Add `relay` detection method to the VPN Detection Smart Signal
10 changes: 10 additions & 0 deletions schemas/components/schemas/VPNMethods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ required:
- publicVPN
- auxiliaryMobile
- osMismatch
- relay
properties:
timezoneMismatch:
type: boolean
Expand All @@ -20,3 +21,12 @@ properties:
type: boolean
description: >-
The browser runs on a different operating system than the operating system inferred from the request network signature.
relay:
JuroUhlar marked this conversation as resolved.
Show resolved Hide resolved
type: boolean
description: |
Request IP address belongs to a relay service provider, indicating the use of relay services like [Apple Private relay](https://support.apple.com/en-us/102602) or [Cloudflare Warp](https://developers.cloudflare.com/warp-client/).

* Like VPNs, relay services anonymize the visitor's true IP address.
* Unlike traditional VPNs, relay services don't let visitors spoof their location by choosing an exit node in a different country.

This field allows you to differentiate VPN users and relay service users in your fraud prevention logic.
3 changes: 2 additions & 1 deletion schemas/paths/examples/get_event_200.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@
"timezoneMismatch": false,
"publicVPN": false,
"auxiliaryMobile": false,
"osMismatch": false
"osMismatch": false,
"relay": false
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion schemas/paths/examples/get_event_search_200.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@
"timezoneMismatch": false,
"publicVPN": false,
"auxiliaryMobile": false,
"osMismatch": false
"osMismatch": false,
"relay": false
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion schemas/paths/examples/webhook.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@
"timezoneMismatch": false,
"publicVPN": false,
"auxiliaryMobile": false,
"osMismatch": false
"osMismatch": false,
"relay": false
JuroUhlar marked this conversation as resolved.
Show resolved Hide resolved
}
},
"proxy": {
Expand Down