Skip to main content

Unblock Vimeo Domain Block.🔑

 If you have a pro plan for your vimeo account, you can show your videos only for a specified domains. For an example, you have a website https://abc.com and you want to show your vimeo videos only in abc.com Otherwise you want to block someone outside from your website watching your vimeo videos.


This is not to teach you how to do  that but I will show you how to unblock the blocked content which is blocked using the above concept.


IF YOU DO NOT HAVE THE URL TO THE VIDEO;

you can easily find the url of the video following these steps


navigate to a page that may have the link

right click on the page and select VIEW PAGE SOURCE

then the source code will appear in new tab and press CTRL + F to find the url we want

then type VIMEO in the new search bar and then browser will find the url for us

You have to copy it

LET THE HACK BEGIN

open your terminal (In Windows : Command Prompt ) and type the command below

        curl --referrer [allowed_domain] -o [file_name] [url_of_the_video]




The Site which allows you to watch videos with necessary permissions is [allowed_domain] and you can type any file name with .html extensionfor the [file_name] . URL of the video must be replaced with [url_of the video]
That's all and press enter to see the magic.A file with a [file-name.html] is created and open it with a browser. The video You want will be there 

Happy Watching.
Kavindu Chamodh Nethsara

Comments

Trending Now

Let's talk about cryptography.

Have you ever heard of cryptography?  People write their diaries every day. For many of them, their diary is one of their best friends to whom they tell their every secret. What happens when someone else finds such a diary? That would freak out the dairy's owner for sure. Also, it might put their lives in danger. Wise men always hide their diaries so no one else finds it.  But legends hide their message so that only they can read what they wrote. So even if the diary is found by someone else, they cannot know the secrets. for example, I wrote this in my diary today.   P dyval h isvn wvza hivba jyfwavnyhwof avkhf Can you understand it? This is just a very primitive level of cryptography yet powerful enough to hide what I wrote from 90% of people. I will discuss this type of cryptography in the next blog post. The human used cryptography from the very beginning to share their messages in secret and conceal their inventions. As you may know, many people tried to find a recip...

How to make a your own Discord bot with Python in 2023. #01

I'm sure that you have heard of discord bots way before reading this article. But have you ever tried to make your own bot with Python? If not, this is the time. Let's get started. Over time tons of discord bot tutorials have been published, but if you follow them they don't help you to build a functional bot because many of the packages used in them are updated and no longer support older syntaxes. Here is the full guide to creating your own Discord Bot in 2023 with Python. STEP 1: Create a Discord account First of all, we have to set up a developer account to create the bot. Actually, you can use your ordinary discord account to access the discord developer portal, but it is highly recommended to create a separate account for development purposes. You can create a new discord account with this link:  https://discord.com/register STEP 2: Create a new Application After creating the discord account, you have to go to the discord developer portal and sign in with your newly-c...