Getting free stuff using programming [Educational purpose only :p]

  • Thread starter Thread starter Deleted member 923340
  • Start date Start date
D

Deleted member 923340

Guest
Who here likes to play around with subscription sites to get free stuff (digital) using javascript/REST api tricks?

Although security in programming has evolved soo much, there are still plenty of sites following stupid walls to hide their paid stuff.

@Asif WILSON Khan has shared a ton of digital products based on random "download" URLs that are publically open
mypaidproduct.com/download_thank_you_page_12423523423

Let's go one step further?

I am going to take one of the famous subscription sites among language learners.
Code:
www.innovativelanguage.com
They are so old in the industry and have been mentioned by several sites including BBC, TheGuadian, Wallstreet journal etc..

They are managing 30+ sites for learning number of languages.
Code:
spanishpod101.com
japanesepod101.com
etc..

All languages here:
https://www.innovativelanguage.com/online-language-courses

They have video and audio courses. ones you finish the first 3 videos, each video page will redirect to the payment page.
SitJNZz


Now, if I clicked that video play button, I'll be redirected to this page!

sM2aecR


Now, let's say I don't want to pay them and I just want to watch the videos (100s of) and audios, all I had to do was use this code on javascript console.

For video files
HTML:
console.log(document.getElementsByTagName('video').item(0).getAttribute('data-trackurl'));

For audio files
HTML:
console.log(document.getElementsByTagName('audio').item(0).getAttribute('data-trackurl'));

PBPJuIP


Now, that's the direct link to the video file
888ju5L

Yep, all the languages are taught by pretty women

This is the structure for all the 30+ sites.
Now, I am not a cheap fuck :p I can totally pay $4 per month for those videos. :D

Why I am sharing you this is if you are hiring someone to do your development task - find someone who knows their shit. (not the cheapest) This is just one example. I've come across so many sites like these.

Thoughts? Have you come across such sites?
 
Last edited by a moderator:
Back
Top