Skip to content

Commit e6e2c6c

Browse files
Adds detection for TracePal and TopSecret Chat (#7871)
* Adds detection for TracePal * Adds detection for TopSecret Chat ref #7870
1 parent 8c100dd commit e6e2c6c

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

Tests/Parser/Client/fixtures/mobile_app.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2195,3 +2195,27 @@
21952195
type: mobile app
21962196
name: Fiddler Classic
21972197
version: 5.0.20244.10953
2198+
-
2199+
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
2200+
client:
2201+
type: mobile app
2202+
name: TracePal
2203+
version: 1.1.0
2204+
-
2205+
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
2206+
client:
2207+
type: mobile app
2208+
name: TracePal
2209+
version: 1.2.0
2210+
-
2211+
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
2212+
client:
2213+
type: mobile app
2214+
name: TopSecret Chat
2215+
version: 1.1.0
2216+
-
2217+
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
2218+
client:
2219+
type: mobile app
2220+
name: TopSecret Chat
2221+
version: 1.2.0

regexes/client/mobile_apps.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2560,6 +2560,16 @@
25602560
name: 'ZEIT ONLINE'
25612561
version: '$1'
25622562

2563+
# TracePal (https://play.google.com/store/apps/details?id=tracepal.app | https://apps.apple.com/us/app/tracepal-groups-gps-tracker/id6730120264)
2564+
- regex: 'tracepal(?:\.app)?/([\d\.]+)'
2565+
name: 'TracePal'
2566+
version: '$1'
2567+
2568+
# TopSecret Chat (https://play.google.com/store/apps/details?id=topsecret.chat | https://apps.apple.com/us/app/topsecret-chat/id1619691020)
2569+
- regex: 'topsecret\.chat/([\d\.]+)'
2570+
name: 'TopSecret Chat'
2571+
version: '$1'
2572+
25632573
# Electron generic apps
25642574
- 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/'
25652575
name: '$1'

0 commit comments

Comments
 (0)