How to download from highporn

Jun 26, 2017
4
7
Nice tutorial, but that doesn't work for me with highporn, all I get is the error "503 Service Temporarily Unavailable" even though the video plays fine in the browser.

Seems to be working with tanix, trying to download a whole video to see if it gets interrupted during download or not.

A few useful tips about the process:

1. Instead of moving the wget exe to your windows folder, you can simply type the whole path to it instead like this:
Code:
"C:\Program Files\wget\wget.exe" --header="Referer:http://highporn.net/" "http://151.80.103.99:8218/ws/13d72c67f3cea74d636b367d860df813.mp4?st=7q7KFVhUduYkcqALTt-QiA&e=1498509137"

or,

2. If you're a little bit more tech savvy, you can add its path to windows PATH environment variables and it will recognize it the same as if you moved it to the windows folder(which is in the PATH variable by default).
All you need to do is get to the environment variables for your windows version, find the PATH variable in the "System variables" section, select it and click edit, got to the end of the variable value, add a semi-colon(;) and type or paste the path to wget at the end or any other software you want to be able to only type the name directly from the command line. You may or may not need to reboot windows for it to recognize the new paths.
My path variable looks like this(the Path= at the beginning is not part of the value), but yours will most likely be shorter:
Code:
Path=C:\ProgramData\Oracle\Java\javapath;C:\Python27\;C:\Python27\Scripts;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\casperjs-1.1.3\bin;C:\phantomjs-2.1.1\bin;C:\Program Files\Git\cmd;C:\Program Files\cURL;C:\Program Files\Wget

The benefit of doing either of these is that it will save the file in the current folder which is your user folder by default instead of saving it in the windows folder and somehow in the system32 folder or at least it should.

3. You can also use cURL(which I personally prefer) instead of wget and using the -o option, you can tell it where to save the file and what name and extension to use instead of renaming it after(don't know if wget has that option). For example:
Code:
curl --referer "http://highporn.net/" -o "d:\_1enc_\MEI-021.mp4" "http://151.80.103.99:8218/ws/13d72c67f3cea74d636b367d860df813.mp4?st=7q7KFVhUduYkcqALTt-QiA&e=1498509137"

4. Don't forget to use " at the beginning and end of the url because the command line most likely will interpret some of the characters in that url and other things and mess things up.
So your example should be this:
Code:
wget --header="Referer: http://highporn.net" "http://151.80.103.99:8089/v3/5a264000a27b26850c840b4e8df3c771.mp4?st=B_wsqB5g_FUEYszPiLeo2g&e=1498495671"
That's what you used in the second screenshot where you're actually downloading something, but not in the post or first screenshot.


@SamKook -- Thanks for testing this out. I think your Error may be due to two reasons:

1) You get error 503 probably because you're still playing the video in your tab. The host restricts the number of connection each IP address can make. This is not related to your error, but I've been complicating the issue a lot. Seems like the download has nothing to do with cookies after all. Try this:

wget.exe -c --header="Referer: http://tanix.net" http://151.80.103.99:8089/v3/18e539f0bd9b4d17c52c455897c46b3f.mp4

2) I'm guessing there may be issues with administrator permissions when dealing with files in Program Files. Try running the cmd somewhere else, eg Desktop, and type:

"C:\Program Files\wget\wget.exe" -c --header="Referer: http://tanix.net" http://151.80.103.99:8089/v3/18e539f0bd9b4d17c52c455897c46b3f.mp4


Thanks!
 

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,536
4,898
I've tried both stopped and playing then and now, didn't make a difference.

I'm running the command from my user folder so it's saving the download there, the program files path is only to tell it where the software is located. Either way, I don't have to type the path since it's in my path variable and it's working fine with tanix using the exact same method so it's not a permissions problem.

Not exactly sure what you wanted me to try with #1, you added the resume flag(-c) put the wrong referer website(the ip is for the highporn server) and removed the parameters from the end of the url. Still, I tried it(both with the wrong and right referer) and still getting the 503 error.

Edit: Not sure if it's a coincidence or not, but closing the tab where the video was playing and then trying to start the download did the trick, it's downloading the video I was trying to download as we speak.
 
Last edited:
  • Like
Reactions: CoolKevin
Jun 26, 2017
4
7
I've tried both stopped and playing then and now, didn't make a difference.

I'm running the command from my user folder so it's saving the download there, the program files path is only to tell it where the software is located. Either way, I don't have to type the path since it's in my path variable and it's working fine with tanix using the exact same method so it's not a permissions problem.

Not exactly sure what you wanted me to try with #1, you added the resume flag(-c) put the wrong referer website(the ip is for the highporn server) and removed the parameters from the end of the url. Still, I tried it(both with the wrong and right referer) and still getting the 503 error.

@SamKook -- Thanks for replying.

I just tried to play and download a video from www.highporn.net and it just worked and downloaded like a charm for me.

I will share the exact video URL with you here.

I downloaded:

http://151.80.103.99:8089/v3/f5c462e38f3bd214036678b8c96ed712.mp4?st=WIWkudSEEQE0UUBTJMlAZA&e=1498582809

All I did is,

1) I went to the webpage and opened the video
2) I clicked on "start" icon and played the video
3) Once the video started playing, I copied the source (video URL) by right clicking and copying the link and then I CLOSED that particular TAB.
4) I then ran CMD as administrator and typed:

wget --header="Referer: http://highporn.net" http://151.80.103.99:8089/v3/f5c462...12.mp4?st=WIWkudSEEQE0UUBTJMlAZA&e=1498582809

Please note:
1) I did not put any string (") for the video URL
2) I closed the tab where the video streaming and then typed in the command in CMD and hit Enter.

In any case, if you missed doing either one of these, I'd suggest you please try and follow both the things and check whether it works for you.


Thanks!!
 
  • Like
Reactions: cutebunny

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,536
4,898
Yeah, I ended up trying it again after I closed the tab and it worked, seems that's necessary for it to work. It has a tendency to cut out though so the resume flag comes in handy. If someone tries it with curl, just add "-C -" without the quotes to resume.

curl_download.jpg

Not adding the " for the url will make it think that everything after the & is a different command and it will throw an error for that(something like e isn't a valid command). If it works, it just means that the parameters in the url aren't important for the download(or at least that the second one isn't).
 
Last edited:
  • Like
Reactions: sanyathakkarhere
Jun 26, 2017
4
7
Yeah, I ended up trying it again after I closed the tab and it worked, seems that's necessary for it to work. It has a tendency to cut out though so the resume flag comes in handy. If someone tries it with curl, just add "-C -" without the quotes to resume.

View attachment 1059771

Not adding the " for the url will make it think that everything after the & is a different command and it will throw an error for that(something like e isn't a valid command). If it works, it just means that the parameters in the url aren't important for the download(or at least that the second one isn't).


Glad to know that it worked for you :)

Enjoy!!!
 

gbell12

Member
Apr 22, 2009
48
10
Hello,

Does anyone know a way to download jav from highporn.net? I tried JDownloader, video downloader,
vGet and they all failed.

Thanks in advance!
 

bluearp

Active Member
Mar 31, 2013
104
52
Ahhh man. I wish I had the opportunity to try out sanya's method last week. The video I wanted is now giving me an Error message like above. Yeah, is there a work around to get the old videos working or does the site owner have to fix it? I got a feeling they don't care.
 

cutebunny

New Member
May 12, 2008
24
2
I'm trying the wget method right now and it seems to work pretty well. The downloads sometimes stop every now and then, but eventually I do get the full video.

A couple of points to note:

- I'm using a Linux machine, so that saved me from having to download the wget command. The rest of the instructions were more or less equivalent
- There is a "-P" option I added, which I'm assuming also works in Windows, which lets me select which folder to send the downloaded video.
- As those of you who've tried this method have already noticed, your download speed is more or less limited as though you're watching the video directly. That is, it tops out at around 200KB/s. Not a biggie, and it's something I'm guessing is limited by the host, so there's likely nothing that can be done about it.

Big thanks to sanyathakkarhere! This is the best solution I've found so far. I already have downloaded a couple of other videos I was otherwise disappointed to miss out on.
 
Last edited:

Porni

Well-Known Member
Feb 29, 2012
346
321
Not necessarily use the console, just use the download manager, for example, uGet :)
 

seitoseitan

Active Member
Nov 7, 2014
342
59
That wget stuff totally works guys! Great tutorial thanks very much. I've been trying & looking everywhere about how to download it for some time. But most of the videos i want can't play anymore. Tried to reload it hundred times still can't play. The administrator seems like a ghost town they never replied my email. If only they could maintain and fix it, that would be great.
 

WillEater

Well-Known Member
Mar 13, 2008
1,004
450
Perhaps they are posting "Click Bait".
Listing videos that they never had nor never will have..
 

bluearp

Active Member
Mar 31, 2013
104
52
Perhaps they are posting "Click Bait".
Listing videos that they never had nor never will have..
No, they have or had it. Worked fine then over time, stopped playing. It's a shame because they have/had rare stuff that no one else has, but a lot of vids don't work, links are broken or go nowhere. It certainly has the potential to become an awesome site, if they fix their flaws.
 
  • Like
Reactions: seitoseitan

seitoseitan

Active Member
Nov 7, 2014
342
59
Perhaps they are posting "Click Bait".
Listing videos that they never had nor never will have..
No, they have or had it. Worked fine then over time, stopped playing. It's a shame because they have/had rare stuff that no one else has, but a lot of vids don't work, links are broken or go nowhere. It certainly has the potential to become an awesome site, if they fix their flaws.
I absolutely guarantee that's not a clickbait coz i've played it before and just recently it stopped working got an error message all that. Yeah could be one of the best JAV site if they can fix it. Have a lot of rare JAV from the 2000's and all the new stuffs that can't be downloaded free anywhere. Sobs. :(:(:(