this post was submitted on 24 Oct 2023
185 points (100.0% liked)

Games

16460 readers
565 users here now

Video game news oriented community. No NanoUFO is not a bot :)

Posts.

  1. News oriented content (general reviews, previews or retrospectives allowed).
  2. Broad discussion posts (preferably not only about a specific game).
  3. No humor/memes etc..
  4. No affiliate links
  5. No advertising.
  6. No clickbait, editorialized, sensational titles. State the game in question in the title. No all caps.
  7. No self promotion.
  8. No duplicate posts, newer post will be deleted unless there is more discussion in one of the posts.
  9. No politics.

Comments.

  1. No personal attacks.
  2. Obey instance rules.
  3. No low effort comments(one or two words, emoji etc..)
  4. Please use spoiler tags for spoilers.

My goal is just to have a community where people can go and see what new game news is out for the day and comment on it.

Other communities:

Beehaw.org gaming

Lemmy.ml gaming

lemmy.ca pcgaming

founded 1 year ago
MODERATORS
top 9 comments
sorted by: hot top controversial new old
[–] RealM@kbin.social 67 points 11 months ago (1 children)

"If you are using an iFrame to display a site that isn't yours, even for legitimate purposes, you have no control over that content—it can change at any time," Simmons warns. "One day instead of looking into an iFrame, you might be looking at an entirely different kind of portal."

Holy shit this guy is amazing.

I get it though. People trying to monetize your work which was purposely hosted for free without ads would drive me mad too.

[–] tal 15 points 11 months ago (1 children)

Holy shit this guy is amazing.

People have been occasionally replacing images at least as long as people have objected to other parties deep-linking to images on their site.

[–] echodot@feddit.uk 13 points 11 months ago

I remember there was a story where some newspaper was stealing an image to print in their paper. The guy noticed after the first edition went out and somehow figured out that they were hot linking to his image in the layout software, so he changed the code on his site so that that hot link would send a different image.

No one noticed and then they sent it to print so they accidentally published the newspaper with an offensive image.

[–] autotldr@lemmings.world 20 points 11 months ago

This is the best summary I could come up with:


Since its launch last year, Simmons says he has attracted a "steady group of daily active users" for Sqword, which involves placing letters sequentially in a 5×5 grid to make as many valid words as possible.

As of press time, we found at least a couple of aggregator sites that apparently haven't noticed their stolen word game has been replaced with one of the rudest images on the Internet.

Many other sites apparently have noticed the change and have simply shifted to embed the (equally stolen) Pokémon-themed Sqwordle on pages that were showing the shock image just days before.

Simmons uses this case as a cautionary tale, not just for game thieves but for any web developer that hosts external content on their site.

"If you are using an iFrame to display a site that isn't yours, even for legitimate purposes, you have no control over that content—it can change at any time," Simmons warns.

More than that, though, we think Simmons has opened up a completely new front in the never-ending war against plagiarists that look to profit off of the work of others.


The original article contains 384 words, the summary contains 185 words. Saved 52%. I'm a bot and I'm open source!

[–] MeatsOfRage@lemmy.world 12 points 11 months ago* (last edited 11 months ago)

A+ stock photo and caption from Ars here

[–] draughtcyclist@programming.dev 10 points 11 months ago (1 children)

I'd love to see the code as implemented for the iframe feature. Sounds like a good way to protect your intellectual property.

[–] mordack550@lemmy.world 5 points 11 months ago (1 children)

The only thing that comes to mind is to rugpull. So you move the game to another location in your site, and in the old URL you put the troll image. It may be an issue with people with bookmarks tho...

[–] 4am@lemm.ee 11 points 11 months ago (1 children)

Use the Referer header to check what domain the browser is loading from. You can also check the connection origin IP to see if it’s a site you know to be scraping you (i.e. not hotlinking but caching). Could possibly also check the User-Agent header to detect scrapers, depending on if they bother to forge it or not.

[–] sugar_in_your_tea@sh.itjust.works 2 points 11 months ago

Yup, it's pretty easy to detect a cross origin request and serve something different based on that.