There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

fedi.simonwillison.net

alphapuggle , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

Uhh do we know if this extends to sites.google.com?

tal ,
@tal@lemmy.today avatar

Not an area I’m familiar with, but this user says no:

news.ycombinator.com/item?id=40918052

lashkari 5 hours ago | prev | next [–]

If it’s really accessible from *.google.com, wouldn’t this be simple to verify/exploit by using Google Sites (they publish your site to sites.google.com/view/<sitename>)?

DownrightNifty 5 hours ago | parent | next [–]

JS on Google Sites, Apps Script, etc. runs on *.googleusercontent.com, otherwise cookie-stealing XSS >happens.

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

You can check this yourself. Just paste this into the developer console:


<span style="color:#323232;">chrome.runtime.sendMessage(
</span><span style="color:#323232;">  "nkeimhogjdpnpccoofpliimaahmaaome",
</span><span style="color:#323232;">  { method: "cpu.getInfo" },
</span><span style="color:#323232;">  (response) => {
</span><span style="color:#323232;">    console.log(JSON.stringify(response, null, 2));
</span><span style="color:#323232;">  },
</span><span style="color:#323232;">);
</span>

If you get a return like this, it means that the site has special access to these private, undocumented APIs


<span style="color:#323232;">{
</span><span style="color:#323232;">  "value": {
</span><span style="color:#323232;">    "archName": "arm64",
</span><span style="color:#323232;">    "features": [],
</span><span style="color:#323232;">    "modelName": "Apple M2 Max",
</span><span style="color:#323232;">    "numOfProcessors": 12,
</span><span style="color:#323232;">    "processors": [
</span><span style="color:#323232;">      {
</span><span style="color:#323232;">        "usage": {
</span><span style="color:#323232;">          "idle": 26890137,
</span><span style="color:#323232;">          "kernel": 5271531,
</span><span style="color:#323232;">          "total": 42525857,
</span><span style="color:#323232;">          "user": 10364189
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">      }, ...
</span>
4am , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

Remember when Google pushed for use of open standard in the browser to force Microsoft IE out of the market? Oh yeah I ‘member

paridoxical ,

They have become the evil they once sought to combat.

VelvetStorm , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

Can someone explain this to me like I’m 5. I understand it’s not good but I don’t know why and I would like to understand it.

JustARegularNerd ,

Effectively Google has a browser extension (just like the ones you’d install from the Chrome Web Store like uBlock Origin) that comes with the browser that’s hidden.

This extension allows Google to see additional information about your computer that extensions and websites don’t normally have access to, such as checking how much load your PC has or directly handing over hardware information like the make and model of your professor.

The big concern in the comments is that this could be used for fingerprinting your browser, even in Incognito mode.

What this essentially means is that even though the browser may not have any cookies saved or any other usual tracking methods, your browser can still be recognised by how it behaves on your machine in particular, and this hidden extension allows Google to retrieve additional information to further narrow down your browser and therefore who you are (as they can link this behaviour and data to when you’ve used Google with that browser signed in), even in Incognito mode.

VelvetStorm ,

Thank you for this info. If this is just an extension, can we just uninstall it or turn it off?

daq ,

This is not a typical extension and it cannot be removed. It doesn’t even show up in the list of installed extensions.

Appoxo ,
@Appoxo@lemmy.dbzer0.com avatar

Maybe recompiling? But I suspect that Chrome as it is, is closed source?

ABasilPlant ,
Katana314 ,

Seems like a great option. Can anyone more familiar with the code confirm this removes the aforementioned CPU-fingerprinting plugin?

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

It does. You can even try it out yourself. Install Ungoogled Chromium, go to google.com and paste the following code in the Developer console (which you can bring up by pressing F12 and clicking on ‘Console’ at the top of the DevTools interface):


<span style="color:#323232;">    chrome.runtime.sendMessage(
</span><span style="color:#323232;">      "nkeimhogjdpnpccoofpliimaahmaaome",
</span><span style="color:#323232;">      { method: "cpu.getInfo" },
</span><span style="color:#323232;">      (response) => {
</span><span style="color:#323232;">        console.log(JSON.stringify(response, null, 2));
</span><span style="color:#323232;">      },
</span><span style="color:#323232;">    );
</span>

If it returns nothing or an error, you’re good. If it returns something like this:


<span style="color:#323232;">{
</span><span style="color:#323232;">  "value": {
</span><span style="color:#323232;">    "archName": "arm64",
</span><span style="color:#323232;">    "features": [],
</span><span style="color:#323232;">    "modelName": "Apple M2 Max",
</span><span style="color:#323232;">    "numOfProcessors": 12,
</span><span style="color:#323232;">    "processors": [
</span><span style="color:#323232;">      {
</span><span style="color:#323232;">        "usage": {
</span><span style="color:#323232;">          "idle": 26890137,
</span><span style="color:#323232;">          "kernel": 5271531,
</span><span style="color:#323232;">          "total": 42525857,
</span><span style="color:#323232;">          "user": 10364189
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">      }, ...
</span>

it means that the hidden extension is present, and *.google.com sites have special access in your browser.

JackbyDev ,

Chromium is open source. Google Chrome is not open source.

dan ,
@dan@upvote.au avatar

even in Incognito mode.

I thought extensions don’t run in incognito mode?

I know Firefox doesn’t run them by default - you can specify which extensions you’d like to run in incognito mode.

Gestrid ,

I thought extensions don’t run in incognito mode?

They don’t. Unless you check the box that allows them to. And I’m sure Google has already checked that box by default.

griD ,

I tested it with a stock install of chrome/windows 11. Works.

Appoxo ,
@Appoxo@lemmy.dbzer0.com avatar

information like the make and model of your professor

Oh no, not my professor :( (/s)

JustARegularNerd ,

Oh that’s a good typo, I’m leaving that! I look forward to the LLMs in 2030 telling you to watch the temps on your professor and make sure it doesn’t get exposed by Chrome.

Misk ,

So since they only just seem to have discovered this, does that mean this invisible extension also likely to be present on Chromium based browsers such as Brave and Thorium etc…?

JackbyDev ,

Yes, though they could remove it. If they’re open source then you could check easily.

WindyRebel , (edited )

Fingerprinting.

Bingo! Google wants to go cookieless and fingerprinting has been one of the solves I’ve always read about in the SEO world.

vox , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@vox@sopuli.xyz avatar

i think it’s used for the performance testing feature in google meet n stuff

RecluseRamble ,

Of course there’s some legitimate use case to it. Just like every privacy rights undermining bill helps “the children”. Doesn’t mean that’s the only or even the main goal.

dan , (edited ) to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@dan@upvote.au avatar

There’s a bunch of stuff in Chrome that’s special-cased to only allow Google to access it.

Not sure if it’s still there, but many years ago I was trying to figure out how to do something that some Google webapp was doing (can’t remember which one). I think it was something to do with popping up a chromeless window - that is, a new window with no address bar or browser chrome, just some HTML content.

Turns out the Chromium codebase had a hard-coded allowlist that only allowed *.google.com to use the API!

Edit: my memory was a bit wrong. It was this: stackoverflow.com/a/11614605. The Hangouts extension was allowlisted to use the functionality, but if any other extension wanted to use it, the user had to enable an experimental setting.

Gestrid ,

Are you talking about the “apps” that Chrome used to support? They removed the feature years ago to reduce bloat and RAM usage or something like that.

Before they removed the feature, I had actually figured out how to create my own “apps” that’d simply load webpages I visited often at the time, like Twitch.

dan ,
@dan@upvote.au avatar

I found what I was talking about: stackoverflow.com/a/11614605. It was a feature that the Hangouts extension could use, but the user had to manually enable it in the browser settings for any other extensions to use it.

The apps feature is still there just with a different name. It’s labeled as “create shortcut”, and you have to check the box to open a new window. I use it just because Firefox doesn’t have a similar feature.

QuantumStorm ,

I don’t know why, but my head automatically put that as “the apps formerly support by Google” the same as “the artist formerly known as Prince”

CriticalMiss , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

Not a legal mastermind by a long shot but it seems like a DMA violation. Someone needs to get the EU on their ass.

victorz ,

EU: [RELEASES THE HOUNDS]

bhamlin ,

Just make sure it isn’t the Pomeranians this time

Killing_Spark ,

Make sure it isn’t just the Pomeranians. Some Pomeranians are definitely going to be in the mix.

bhamlin ,

Ok, I’m good with that.

victorz ,

I had to look up what the Pomeranian dog breed is, because I’m not good with dog breeds. Soon as the page of images loaded I burst out laughing. 😆 Thank you. Good start to my day.

bhamlin ,

Glad to help. 😁 Get out there with that little dog energy.

victorz ,

lmao is been good so far. Have to make a long trip with the kids today, so it helped. ❤️

powermaker450 , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@powermaker450@discuss.tchncs.de avatar

this just in: google is still spying on you in every way possible

jinarched , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@jinarched@lemm.ee avatar

Just use Firefox

shrug

nutsack , (edited )

there’s a portion of the internet that just doesn’t work in Firefox because the company pays only $2 million a year for developers and they can’t do it

I mean web developers not the Firefox developers stop down voting me

I use Firefox and Linux and I don’t drive a car how about that

please give me $40

Omgpwnies ,

I’ve yet to find more than a handful of pages that have had issues, and most were fairly poorly coded to begin with

lightnsfw ,

I found one the other day but I don’t even recall what it was. I almost never have any problems.

JaddedFauceet ,

As part of our company’s security policy, our IT admin disallows firefox to be installed in dev machine.

our engineers cannot test their work in firefox.

LOL

PlantJam ,

This nonsense is part of why I prefer to work for smaller companies.

sugar_in_your_tea ,

That’s wack.

I think our company does something similar (Chrome by default, need to ask IT for anything else), but our department just said, “we need Macs to do our work, you have no power here…” I hate macOS, but I hate stupid IT policies more.

nutsack ,

there’s no quality control with a test suite of browsers and versions running in virtual machines?

JaddedFauceet ,

Due to security policy, we cannot run vm. Oh, btw, we do android development too. I guess they didn’t know android studio runs a vm. So that is ok

xavier666 ,

Whenever I face an issue in our company portal and I ask the IT team, their response is “Can you please try on Google Chrome?”

🤦🏽🤦🏽

Katana314 ,

My biggest issue is video streaming on older computers. I have an old laptop I use casually for video playing in the background, and Webkit browsers like Edge definitely load YouTube with far less stuttering. I’m still trying to find good alternatives - lately even changing the user agent doesn’t seem to make it faster.

TheGrandNagus ,

This to me sounds like an issue with hardware video decoding not working right and it falling back to software decoding on the CPU.

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar
Suavevillain , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@Suavevillain@lemmy.world avatar

I will stick with using Firefox.

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

That’s the way to go

NutWrench , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@NutWrench@lemmy.world avatar

I already ditched Windows for Linux a month ago because of spyware. Everything Google-related is next. My phone is going to be the hardest thing to de-infest.

moonburster ,

I kinda want to, but I’m also a sucker for ease of use

Tywele ,

For ease of use Apple might be the most convenient alternative to Google. At least for smartphones.

moonburster ,

Ease of use and apple are not near each other in my dictionary.

I think a lot of things are designed very unlogical

Tywele ,

That might be because you are just not used to it. Comparable to the switch from Windows to Linux.

moonburster ,

I’m using Linux and tried different distros. I also used chrome os and windows Phone. I tried ios, hence my feelings towards it

Tywele ,

And many people tried Linux and were having difficulties adapting to it at first and most probably gave up. Just like you did with iOS.

moonburster ,

Pff, sure buddy. Used it for 4 months due to my phone being dead. Go shill someone else. If the adoption of a new os goes against what I want of said os, then it’s not an os for me. Simple as that

Tywele ,

I don’t care what you use. I was just arguing in support of OSes that people dismiss because they are unfamiliar with it. Calm down.

flop_leash_973 ,

In my experience you either have to trade one devil for the other with Apple or accept buying hardware from the ad company so you can use GrapheneOS.

sugar_in_your_tea ,

There are more options than GrapheneOS with broader device support, such as Calyx or LineageOS.

But if you use Android already, you can start by using F-Droid (or others) to install apps to find FOSS replacements for apps you use.

WhiskyTangoFoxtrot ,

Searching for “Calyx” got me a lot of results that had nothing to do with the Android ROM, so for the convenience of anyone else reading this thread their URL is calyxos.org

SidewaysHighways ,

Thank you

Trainguyrom ,

You could always go the used/refurbished route to not directly give the chocolate factory money

asdfasdfasdf ,

I’m also doing this. Proton is amazing, for the most part. Ente Photos is also incredible for ditching Google Photos, although I’ll probably switch to Proton Photos when that comes out since Ente is pricey.

pathief ,
@pathief@lemmy.world avatar

Isn’t proton photos built into their Proton Drive already? It’s implementation is… barebones… On Android but it works.

asdfasdfasdf ,

It is, but I’d barely consider it a launch of anything. It displays photos, but that’s it. I could already upload and view photos on Proton Drive before they “launched” this.

Tywele ,

Or if you have the skills you can selfhost Immich which is an excellent replacement for Google Photos.

enleeten ,

Kagi is a great replacement for Google search. It does cost money though.

Emerald ,

Or you can take a Duck. Then get one more Duck. Then you can Go.

duckduckgo.com

CheeseNoodle ,

Honestly I just keep my phone as my designated privacy nightmare so I can get free phone calls on wifi and keep in touch with family members who are still on facebook.

nossaquesapao ,

Welcome to the world of freedom. The first months may be a bit uncomfortable, but it’s a journey worth taking. Be welcome!

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

I already ditched Windows for Linux a month ago because of spyware.

Great!

Everything Google-related is next.

Even better.

My phone is going to be the hardest thing to de-infest.

If you plan on getting a new phone soon, I recommend a Google Pixel, on which you can install GrapheneOS. Yes, ironically Google devices are the best for installing alternative operating systems and removing all the Google BS. GrapheneOS is completely free and open source, and based on the Android Open Source Project. It incorporates many privacy and security enhancements, and gives you total freedom and control over your device. In my opinion, it’s the best option for degoogling a phone.

Emerald ,

There is also Lineage OS. It’s not as secure but it is compatible with the most amount of devices.

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

Unfortunately LineageOS is highly insecure because there’s no ability to lock the bootloader, and Android Verified Boot is completely missing. These are just the biggest and most obvious flaws in Lineage, but there are more: madaidans-insecurities.github.io/android.html#lin…

Emerald ,

Android is a very secure system, but that comes with some compromises such as customizability and development features. Both of which are important to the Lineage OS project. Also running Lineage OS is not any more insecure then running a Linux or Windows desktop without secure boot, which many people do without issue

Holzkohlen , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

Refreshing change from reading about some new AI powered tracking nonsense in Windows.

Scotty_Trees , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage
@Scotty_Trees@lemmy.world avatar

If you’re still using Google Chrome in 2024, you might be a moron.

raspberriesareyummy ,

I am “slightly” worried that there’s only a single option left. That’s only 1 organization’s corruption removed from total loss of control over browsing privacy :/

Scrollone ,

And Mozilla main source of income is… Google.

This is bad, very bad.

n3m37h ,

Google pays them to be the default search. FF is like Steve Irwin, you could have been the biggest poacher, if you gave him money he would use it to buy land to help protect animals. FF is pulling the same thing but for the intetnet

cupcakezealot ,
@cupcakezealot@lemmy.blahaj.zone avatar

so donate and change that

ILikeBoobies ,

There’s safari and pale moon

ComeHereOrIHookYou , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

This is hilarious! It even works on Edge, Vivaldi and even Brave 🤣. Good thing I use Firefox in almost everything or general day to day use

Katana314 ,

I’ll admit, in several places I used Edge as an effort to have at least some layer of distrust between myself and Google. I’ll have to quit that though.

dejected_warp_core ,

I like your style. I went looking and found “switchbar” which kinda/sorta eases this bouncing between browsers idea:

…google.com/…/klgpknafjlhnpkppfbihchgfebbdcomd

It’s not elegant, but it supports the workflow you suggest. I kind of like the idea of using Edge for google.com and Chrome for microsoft.com. I’m not optimizing my experience (it may in fact be very sub-optimal), but I’m also using competition to neutralize potential shenanigans.

Emerald ,

I kind of like the idea of using Edge for google.com and Chrome for microsoft.com.

Dang, just use Firefox. It’s so much easier then this

madis ,

Vivaldi and Brave have the option to disable the Hangouts extension in settings, which should disable this.

As linked in the article, it is indeed used for “Hangouts” (Meet) troubleshooting.

ComeHereOrIHookYou ,

This is good news since Vivaldi is my goto chromium browser (when I need to really use it)

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

Firefox 🔛 🔝

xavier666 ,

🦊🦊

solrize ,
ComeHereOrIHookYou ,

Welp, might as well just use w3m 🤣

cupcakezealot ,
@cupcakezealot@lemmy.blahaj.zone avatar

such a sensationalist article there. mozilla isnt an advertising company, they bought a company that specialises in privacy focused ad campaigns so they can provide an alternative to google for companies.

which is what they should be doing.

T156 , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

Does this also affect Chromium, or is it just Google Chrome?

The article mentions it being affecting Google Chrome through Chromium, but it’s not clear if it also affects Chromium on its own, or other Chromium-based browsers.

Krzd ,
@Krzd@lemmy.world avatar

It allegedly also affects Edge and Vivaldi, so it seems to be chromium not chrome

sqibkw ,

Just now tested in Vivaldi and it works, so yeah seems like Chromium 🥲

redditReallySucks ,
@redditReallySucks@lemmy.dbzer0.com avatar

Doesn’t seem to work on cromite desktop (good)

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

Chromium is also affected.

JTheFox ,
@JTheFox@lemmy.world avatar

Chromium alone depends on if it’s the Google version or the Un-Googled version. For the Google version of Chromium, it still has that hangouts extension. However, the Un-Googled Chromium has that extension removed via the build flags, the one to note is enable_hangout_services_extension=false.

As others have said though, it can also depend on what other Chromium-based is being used. Some browsers like Brave and including Vivaldi can have this turned off in the settings. Others like Edge and Opera are affected as well. However it doesn’t affect every Chromium-based browser.

kworpy , to technology in Google Chrome ships a default, hidden extension that allows code on *.google.com access to private APIs, including your current CPU usage

idk what to tell you if you’re still using chrome

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

Or anything Google for that matter. I see a lot of praise on Lemmy for their Pixel phones, but it wouldn’t surprise me if they eventually find there was a backdoor in their firmware all this time. Yes of course, I can not prove that right now, but this news about Google Chrome isn’t news for no reason. Don’t trust anything Google if you care about privacy, it is literally their business model (selling targeted ads).

joel_feila ,
@joel_feila@lemmy.world avatar

Wrll you have to use a pixel phone to use graphene os

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

Yeah, I’m not super happy about that part, but don’t really know what to do

Emerald ,

Use a Pixel phone. No more sketchy then any other popular phone manufacturer

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

It’s what I do. With degoogled os. But the proprietary blobs aren’t filling me with confidence.

Emerald ,

Does your laptop run free software boot firmware? If not, it has the same issues as a phone, if not more. No smartphone runs fully free firmware.

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

I know all this and that’s not filling me with confidence, either. It’s why Framework is in my sights.

Emerald ,

Framework doesn’t have free boot firmware either and it contains the Intel ME (the backdoor in Intel CPU’s). The point I am trying to make is that you won’t find a perfect solution anywhere.

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

You’re right, but I never said perfect. Perfect doesn’t exist. I’m looking for reasonable and sustainable. Projects like framework and libreboot are making this possible for the first time in history. But, like you eluded to, they, too, won’t be perfect.

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

Eat the ads then.

irreticent ,
@irreticent@lemmy.world avatar

Relevant username.

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

People don’t hate Google as much as they should. It’s cringeworthy how much they promote this ad company on this platform. They don’t even realze themselves they got comprised.

Emerald ,

Well pretty much all computers have a backdoor to the CPU. That hasn’t been proven for Pixel phones though.

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

No, only Google has backdoors that are coming to light tome after time. Stop defending them Google ad fan boi.

Emerald ,

Is this trolling or are you for real?

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

I fucking hate Google and wouldn’t use any of their (proprietary) software, but Pixel phones are amazing. Hear me out, Google is the only phone manufacturer right now, that puts extensive hardware security features like MTE, a secure element, as well as a bunch of others in their phones. The Google Titan M2 is based on an open-source project called OpenTitan, and Google has even contributed their own changes upstream. It’s based on the open RISC-V architecture, and it’s the most complete and secure implementation of a secure element that you can find in an Android phone. The only thing that comes even close is the “Secure Enclave” in Apple ARM chips, that are used in modern iPhones, iPads and Macs. I understand the concern about a potential backdoor in the firmware, but that’s a valid concern with basically every CPU on the market right now. x86 are ARM are completely proprietary, so you can’t really trust any CPU based on one of these architectures. The old Google Titan M1 was based on ARM, Apple’s Secure Enclave is also based on ARM, as well as Snapdragon’s SPU (which is incomplete and insecure anyway). The Titan M2, being based on open hardware architecture and firmware, is the most trustworthy secure element, despite being made by Google. It includes features like Insider Attack Resistance, support for the Weaver API, Android StrongBox hardware keystore implementation and is used for a secure implementation of Android Verified Boot. GrapheneOS is free, open-source, and doesn’t use any proprietary Google apps/services by default. Although I hate Google, a Pixel with GrapheneOS is currently the best option for a secure smartphone.

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

Google fan boy. Good luck promoting that shitty ad company.

Andromxda OP ,
@Andromxda@lemmy.dbzer0.com avatar

Ah yes, definitely promoting Google

I fucking hate Google and wouldn’t use any of their (proprietary) software

I hope you realize how dumb your comment is

ours ,

I do: DON’T

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines