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

Adds detection for TracePal and TopSecret Chat #7871

Merged
merged 2 commits into from
Oct 23, 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
24 changes: 24 additions & 0 deletions Tests/Parser/Client/fixtures/mobile_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2195,3 +2195,27 @@
type: mobile app
name: Fiddler Classic
version: 5.0.20244.10953
-
user_agent: Mozilla/5.0 (Linux; Android 12; Pixel 5 Build/SQ1A.220205.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/99.0 Chrome/99.0.4844.84 Mobile Safari/537.36 Android/tracepal.app/1.1.0
client:
type: mobile app
name: TracePal
version: 1.1.0
-
user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/605.1.15 iOS/TracePal/1.2.0
client:
type: mobile app
name: TracePal
version: 1.2.0
-
user_agent: Mozilla/5.0 (Linux; Android 12; Pixel 5 Build/SQ1A.220205.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/99.0 Chrome/99.0.4844.84 Mobile Safari/537.36 Android/topsecret.chat/1.1.0
client:
type: mobile app
name: TopSecret Chat
version: 1.1.0
-
user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/605.1.15 iOS/TopSecret.Chat/1.2.0
client:
type: mobile app
name: TopSecret Chat
version: 1.2.0
10 changes: 10 additions & 0 deletions regexes/client/mobile_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2560,6 +2560,16 @@
name: 'ZEIT ONLINE'
version: '$1'

# TracePal (https://play.google.com/store/apps/details?id=tracepal.app | https://apps.apple.com/us/app/tracepal-groups-gps-tracker/id6730120264)
- regex: 'tracepal(?:\.app)?/([\d\.]+)'
name: 'TracePal'
version: '$1'

# TopSecret Chat (https://play.google.com/store/apps/details?id=topsecret.chat | https://apps.apple.com/us/app/topsecret-chat/id1619691020)
- regex: 'topsecret\.chat/([\d\.]+)'
name: 'TopSecret Chat'
version: '$1'

# Electron generic apps
- regex: ' (?!(?:AppleWebKit|brave|Franz|Mailspring|Notion|Basecamp|Evernote|catalyst|ramboxpro|BlueMail|BeakerBrowser|Dezor|TweakStyle|Colibri|Polypane|VibeMate|(?:d|LT|Glass|Sushi|Flash|OhHai)Browser|Sizzy))([a-z0-9]*)(?:-desktop|-electron-app)?/(\d+\.[\d.]+).*Electron/'
name: '$1'
Expand Down
Loading