Skip to content

Commit

Permalink
Adds detection for TracePal and TopSecret Chat (#7871)
Browse files Browse the repository at this point in the history
* Adds detection for TracePal
* Adds detection for TopSecret Chat

ref #7870
  • Loading branch information
liviuconcioiu authored Oct 23, 2024
1 parent 8c100dd commit e6e2c6c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
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

0 comments on commit e6e2c6c

Please sign in to comment.