Skip to content

Commit

Permalink
Update 2023-09-01-Investigating-Firefox.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ColoursofOSINT committed Sep 1, 2023
1 parent 09d2faf commit ff74252
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion _posts/2023-09-01-Investigating-Firefox.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,17 @@ This loads an analytics javascript, which can collect the IP Addresses, user age

# PocketTube: Youtube Subscription Manager [Version 15.6.4] - 17,000 users

PocketTube is an extension used to manage group subscriptions on youtube. As stated in its privacy policy, it that it uses Mixpixel for analytics tracking, however, the policy makes no mention of Sentry, which it also uses. [^footnote5]
PocketTube is an extension used to manage group subscriptions on youtube. As stated in its privacy policy, it that it uses Mixpixel for analytics tracking, however, the policy makes no mention of Sentry, which it also uses. [^footnote5] There are also many analytics, but they seem less geared to data collection and more towards premium feature payment. However, a larger issue is the promotion of referral

```
var be = "https://api.mixpanel.com";
var ke = {};
function we(e, t, n, i) {
ke.token = e;
ke.distinct_id = t;
ke.lang = n;
```

```
var be = "https://api.mixpanel.com";
Expand All @@ -69,6 +79,52 @@ lC({
});
```
```
chrome.contextMenus.onClicked.addListener(function(e) {
if (e.menuItemId === "1111") {
chrome.tabs.create({
url: "https://www.patreon.com/ysub?utm_source=context"
}, function() {});
} else if (e.menuItemId === "1112") {
chrome.tabs.create({
url: "https://www.buymeacoffee.com/ysub?utm_source=context"
}, function() {});
} else if (e.menuItemId === "1113") {
chrome.tabs.create({
url: "https://www.reddit.com/r/pockettube/"
}, function() {});
} else if (e.menuItemId === "1114") {
chrome.tabs.create({
url: cu()
}, function() {});
} else if (e.menuItemId === "1115") {
chrome.tabs.create({
url: "https://www.youtube.com/channel/UCTVgSQTwWpHWIXC6EOh8vWw?sub_confirmation=1"
}, function() {});
} else if (e.menuItemId === "1116") {
chrome.tabs.create({
url: "https://translations.yousub.info/"
}, function() {});
}
});
if (Zl() && chrome.notifications) {
Gl();
} else {
chrome.permissions.onAdded.addListener(function(e) {
if (e.permissions && e.permissions.indexOf("notifications") === -1) {
Gl();
}
});
}
r(u().mark(function() {
// ... Your code here
}));
This code creates a context menu in a more readable format. It listens for menu item clicks and opens specific URLs based on the clicked menu item. It also checks for notifications support and handles permissions.
```

[^footnote]: https://palant.info/2023/05/31/more-malicious-extensions-in-chrome-web-store/
[^footnote2]: https://news.ycombinator.com/item?id=37137552
[^footnote3]: https://extensionworkshop.com/documentation/publish/recommended-extensions/
Expand Down

0 comments on commit ff74252

Please sign in to comment.