| Let's decompose what is going on when you click on one of these pages :
For instance : https://s3.amazonaws.com/walgreens-photo-coupon/walgreens/in...
It's a page with fake coupons links When you click the "show coupon" boutton, two things happen 1. A javascript "click" event is triggered (in coupon.js) and executes :
window.open(https://www.promocodefor.org/promo/walgreens/walgreens-photo...)
This opens a new tab at this url, this page shows the fake coupon code. 2.Since the button is a <a> tag with href="https://www.promocodefor.org/go/pcfc833699cf9ddea03", the current tag navigates to this url Then you follow 7 redirect redirects (code 302) to pages owned by https://skimlinks.com who redirects to pages owned by https://www.conversantmedia.com who finally redirect to https://photo.walgreens.com/store/prints?tab=photo_Promo1 It's basically an affliate link to walgreens. The question is how did https://s3.amazonaws.com/walgreens-photo-coupon/walgreens/in... rank so high in google ? Just because it's hosted on amazon doesn't make sense. There is a trick that we don't know. I think it's hosted on Amazon S3 juste because it's very cheap hosting, since the site is a single .html file |