Greenguy's Board


Go Back   Greenguy's Board > General Business Knowledge
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2005-11-23, 08:57 PM   #1
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Can somebody help me figure out why these chinese forums link to me

I think these are all chinese forums that link to my newly built website. Can somebody tell me what the hell are they doing sending me their worthless traffic?


1 343682 11.88% - (Direct Request)
2 74745 2.58% http://www.mimibbs.org/viewthread.php
3 24332 0.84% http://bbs.m6mm.com/read.php
4 14829 0.51% http://www.bitgirl.org/bbs/read.php
5 14302 0.49% http://bbs.m6mm.net/read.php
BOSS is offline   Reply With Quote
Old 2005-11-23, 09:08 PM   #2
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
they are probably hotlinking your images.

Hit the link up top that says FAQ, and one of the answers deals with anti-hotlinking rules that you can install.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-11-23, 09:19 PM   #3
RawAlex
Took the hint.
 
Join Date: Mar 2003
Posts: 5,597
Send a message via AIM to RawAlex
Pure hotlinking. .htaccess them out of your life. That many hits means they have linked ALL of your content.

Alex
RawAlex is offline   Reply With Quote
Old 2005-11-23, 09:27 PM   #4
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Quote:
Originally Posted by RawAlex
Pure hotlinking. .htaccess them out of your life. That many hits means they have linked ALL of your content.

Alex
Shit but what do i do about wmv?
BOSS is offline   Reply With Quote
Old 2005-11-23, 09:27 PM   #5
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Quote:
Originally Posted by RawAlex
Pure hotlinking. .htaccess them out of your life. That many hits means they have linked ALL of your content.

Alex
Also this is a fake TGP so I dont know how much content they could have hotlinked
BOSS is offline   Reply With Quote
Old 2005-11-23, 10:42 PM   #6
juggernaut
Registered User
 
juggernaut's Avatar
 
Join Date: Apr 2005
Location: Central Jersey! If I was rich and powerful I would dress as my avatar does.
Posts: 1,448
Send a message via Yahoo to juggernaut
Quote:
Originally Posted by BOSS
Shit but what do i do about wmv?
You can deny just about anything and let only the ref you want to be able to get your stuff. This is a pretty intense site to edit your htaccess, be very careful as you can totally screw shit up. I know last week I had something changed and my host did something wrong and it was not good. But I would recommend studying up on it as it is a very powerful tool.
http://bitesizeinc.net/demo.htaccesser.html
juggernaut is offline   Reply With Quote
Old 2005-11-24, 10:53 AM   #7
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Quote:
Originally Posted by juggernaut
You can deny just about anything and let only the ref you want to be able to get your stuff. This is a pretty intense site to edit your htaccess, be very careful as you can totally screw shit up. I know last week I had something changed and my host did something wrong and it was not good. But I would recommend studying up on it as it is a very powerful tool.
http://bitesizeinc.net/demo.htaccesser.html
"Put this file in your web site directory. It will protect the files in the current directory and below. The above rules only protect against .gif & .jpg files being hotlinked. .wmv files cannot easily be protected because Windows Media Player doesn't send a valid referrer. You can .zip your wmv files and protect the .zip files. "

Thats what I see in the docs and when I test I could access my wmv no prob is there another way to protect them without zipping?

Thanks
BOSS is offline   Reply With Quote
Old 2005-11-24, 11:07 AM   #8
juggernaut
Registered User
 
juggernaut's Avatar
 
Join Date: Apr 2005
Location: Central Jersey! If I was rich and powerful I would dress as my avatar does.
Posts: 1,448
Send a message via Yahoo to juggernaut
Honestly I would love to tell you yes I have the answer, but I really don't. htaccess is some really cool, but also crazy shit. I would start looking around on some of the apache forums for more expert advice on them. When I rack my brain I don't see an easy fix for you as the file links are already out there and blocking by ip or domain name might not fix this. Either way I would still block them but being the link is floating in the web you may be forced to move your files to a differant directory and and run a find/replace on all the sites files to fix this. I realy cant say either way. Sorry..
juggernaut is offline   Reply With Quote
Old 2005-11-24, 11:10 AM   #9
juggernaut
Registered User
 
juggernaut's Avatar
 
Join Date: Apr 2005
Location: Central Jersey! If I was rich and powerful I would dress as my avatar does.
Posts: 1,448
Send a message via Yahoo to juggernaut
Heres one I just found. Not sure if this works or not just did a google on htaccess and wmv
---------------------------------------------------------------------------------
Protecting your images
If you have a large amount of images on your site someone might decide to link to them and pass it off as their content. Adding this code to your .htaccess will stop them cold in their tracks. On top of that it will redirect the surfer who clicks on their download link to whatever page you wish. The code to put in your .htaccess:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com [NC]
RewriteCond %{HTTP_REFERER} !^http://YOURIPADDRESS
RewriteRule \.(gif|jpg|jpeg|bmp|png|mpg|mpeg|avi|wmv|mov|asf)$ - [F]
The first "RewriteCond" line specifies that if there is no referrer, that's ok. The second "RewriteCond" specifies that if there is a referrer, it needs to be your domain name. The third line is an additional catch to allow you to use your IP address as well. The "RewriteRule" line denies anyone who breaks the above rules while trying to get a file that ends with one of the listed extensions.
juggernaut is offline   Reply With Quote
Old 2005-11-24, 11:20 AM   #10
juggernaut
Registered User
 
juggernaut's Avatar
 
Join Date: Apr 2005
Location: Central Jersey! If I was rich and powerful I would dress as my avatar does.
Posts: 1,448
Send a message via Yahoo to juggernaut
Scratch that last post. Just found a a couple of forums saying no go on the video file protecting. Some are posting this same code but some are saying it still wont work.. Sorry
juggernaut is offline   Reply With Quote
Old 2005-11-24, 11:40 AM   #11
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Quote:
Originally Posted by juggernaut
Scratch that last post. Just found a a couple of forums saying no go on the video file protecting. Some are posting this same code but some are saying it still wont work.. Sorry
Thanks for the effort
BOSS is offline   Reply With Quote
Old 2005-11-24, 06:09 PM   #12
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Quote:
Originally Posted by cd34
they are probably hotlinking your images.

Hit the link up top that says FAQ, and one of the answers deals with anti-hotlinking rules that you can install.
I dont see anything in the faw about wmv except that it cant be done is that right cd34?
BOSS is offline   Reply With Quote
Old 2005-11-25, 02:51 AM   #13
Southfun
If something goes wrong at the plant, blame the guy who can't speak English
 
Join Date: May 2004
Location: Denmark
Posts: 31
Send a message via ICQ to Southfun
You can NOT protect wmv files against hotlinking with .htaccess, because the media player does not send a HTTP_REFERER. Plus, if you allow the empty HTTP_REFERER in your .htaccess ( to allow people with firewalls to view your images/movies in general ), then your site is still open to hotlinking. The hotlinker can use js or i*f*rames and just send an empty HTTP_REFERER when hotlinking to your media file.

Here is a link to my demo pages that demonstrate how .htaccess can be bypassed ( when it allows emtpy HTTP_REFERER ) : http://hotlinker.trafficguardian.com/
Southfun is offline   Reply With Quote
Old 2005-11-25, 02:56 AM   #14
BOSS
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
BOSS's Avatar
 
Join Date: Sep 2005
Location: Montreal / Sparta
Posts: 261
Send a message via ICQ to BOSS
Quote:
Originally Posted by Southfun
You can NOT protect wmv files against hotlinking with .htaccess, because the media player does not send a HTTP_REFERER. Plus, if you allow the empty HTTP_REFERER in your .htaccess ( to allow people with firewalls to view your images/movies in general ), then your site is still open to hotlinking. The hotlinker can use js or i*f*rames and just send an empty HTTP_REFERER when hotlinking to your media file.

Here is a link to my demo pages that demonstrate how .htaccess can be bypassed ( when it allows emtpy HTTP_REFERER ) : http://hotlinker.trafficguardian.com/
Your software looks promising, I dont know if my host already has it!?
BOSS is offline   Reply With Quote
Old 2005-11-25, 08:31 AM   #15
Southfun
If something goes wrong at the plant, blame the guy who can't speak English
 
Join Date: May 2004
Location: Denmark
Posts: 31
Send a message via ICQ to Southfun
Quote:
Originally Posted by BOSS
Your software looks promising, I dont know if my host already has it!?
I doubt they do. For the time being it can only be used on dedicated servers ( movie gallery submiters use it). The hosting edition with support for virtual accounts ( which I guess you are on ), is on it's way
Southfun is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:21 AM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc