What kind of a script is this?

Samipk1

Newbie
Joined
Feb 11, 2016
Messages
18
Reaction score
2
I have come across multiple scripts like this in which you type a website address and it shows you random pictures or links but if you type that address in the address bar it just takes you to a random page.

Can anybody tell me what this is? I have attached pics to explain.
 

Attachments

  • IMG_0391.jpg
    IMG_0391.jpg
    128.1 KB · Views: 192
  • IMG_0392.jpg
    IMG_0392.jpg
    145.8 KB · Views: 181
I've never seen that, but I bet it's pretty simple for anyone that's a web developer
 
It looks simple as the domain is just redirecting but the random image generation is what I can't understand.
 
My assumption is that it randomly generates an image and matching header/meta tags. Never seen it done before, but its probably not hard to replicate.
 
<meta property="og:title" content="You are the Deadpool" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://marvelfly.com" />
<meta property="og:image" content="http://marvelfly.com/images/825779.jpg" /> <--- random image at page load


//auto redirect if is mobile device?

<script type="text/javascript">
<!--
if (screen.width <= 800) {
window.location = "http://blogsitestep.com/red.php";
}
//-->
</script>
 
What I can't understand is how can it generates tags from a site that doesn't exist as the original domain only redirects and is not an actual site.

It doesn't redirect you. Its generating a random meta title and image for Facebook. You won't really understand what it means unless you know coding. I'll try and help explain..

<meta property="og:title" content="You are the Deadpool" />
<meta property="og:image" content="http://marvelfly.com/images/825779.jpg" /> <--- random image at page load


^^ Those are the two parts of the website that are randomly generated and those are the two parts that Facebook uses to display a title and a small image when someone posts a link.
 
Can anyone please give us this script? Thanks!
 
The site is already down? Maybe it was an experiment or they got banned?
 
Back
Top