Webmaster Forum

Go Back   Webmaster Forum > Web Development > Coding Forum

Coding Forum Problems with your code? Discuss coding issues, including JavaScript, PHP & MySQL, HTML & CSS, Flash & ActionScript, and more.


Reply
 
LinkBack Thread Tools Display Modes
Old 11-29-2006, 06:08 AM   #1 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
Web Content Stealing

I am unsure if this is the right section to post it but thought it might be as it involes I assume some form of coding. My issue is I want to protect content from being stolin off my website. I found somone already doing that.

I have iframes on my site and all my content loads in iframes in the center. Anyway to do this I would think that all my pages would require to be loaded in the iframe and if it is not loaded in there then a certain page would appear stating the content is being stolen.

Is there anyway that this could be setup to do this?
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-29-2006, 08:15 AM   #2 (permalink)
v7n Mentor
 
megamoose's Avatar
 
Join Date: 06-04-06
Location: Northern Ireland
Posts: 481
iTrader: 2 / 100%
Latest Blog:
None

megamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of lightmegamoose is a glorious beacon of light
Send a message via ICQ to megamoose Send a message via MSN to megamoose Send a message via Yahoo to megamoose Send a message via Skype™ to megamoose
There is no way to stop people from copying your content. The only thing you can do is make it harder for them to find it.

What exactly is it you wish to protect? Is it protect them from copying images, or from copying text?

Mark
__________________
Message me for PHP | HTML | CSS | JAVASCRIPT | .NET | MySQL help and support
megamoose is online now  
Add Post to del.icio.us
Reply With Quote
Old 11-29-2006, 12:08 PM   #3 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
I am trying to stop them from linking a direct link off there website to a major page on mine...they did this on all my major pages. For instant I have a home page...they directly link to the home page.
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-29-2006, 09:24 PM   #4 (permalink)
Senior Member
 
StupidScript's Avatar
 
Join Date: 09-22-06
Location: Los Angeles
Posts: 663
iTrader: 0 / 0%
Latest Blog:
None

StupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really nice
If it's all being stolen from a consistent IP address or domain and they are merely linking to your content, then you should be able to block all requests from that IP address or domain ... but (a) if it's a changing number of IP addresses or domains, then you'll need an automated detection system to provide the protection you need;

and/or (b) if they have downloaded your content (using, at the minimum, the extremely simple mechanisms provided by any browser), then they are actually hosting your obviously excellent content for the purpose of making money, and there is little you can do about it except for starting some sort of legal process.

Bummer, dude.
StupidScript is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-29-2006, 09:56 PM   #5 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
Quote:
Originally Posted by StupidScript View Post
If it's all being stolen from a consistent IP address or domain and they are merely linking to your content, then you should be able to block all requests from that IP address or domain
How do I do this?
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 01:03 PM   #6 (permalink)
Senior Member
 
StupidScript's Avatar
 
Join Date: 09-22-06
Location: Los Angeles
Posts: 663
iTrader: 0 / 0%
Latest Blog:
None

StupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really nice
What operating system is your server running on?
StupidScript is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 01:29 PM   #7 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
Linux with Apache but I don't host the website off my computer I use an online web serves.
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 01:39 PM   #8 (permalink)
Senior Member
 
StupidScript's Avatar
 
Join Date: 09-22-06
Location: Los Angeles
Posts: 663
iTrader: 0 / 0%
Latest Blog:
None

StupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really nice
S'cool ... okay ...

1) If you have root access to the server you can simply add this to the end of whatever is in /etc/hosts.deny:
Code:
ALL: IP.ADD.RE.SS
where "IP.ADD.RE.SS" is the offender's IP address.

2) You're probably running PHP, so you can probably include a header file in your pages that will effect the ban:
Code:
<?php if ($_SERVER['REMOTE_ADDR']=='IP.ADD.RE.SS') { header("Location: http://www.fbi.gov"); exit; } ?>
You don't need both of these ... either one will do.

Last edited by StupidScript; 11-30-2006 at 01:43 PM..
StupidScript is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 06:43 PM   #9 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
Is there some form of javascript or html coding that I could use.
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 08:16 PM   #10 (permalink)
Senior Member
 
StupidScript's Avatar
 
Join Date: 09-22-06
Location: Los Angeles
Posts: 663
iTrader: 0 / 0%
Latest Blog:
None

StupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really nice
Javascript:
Code:
if (location.hostname.indexOf("baddomain")!=-1) { location.href="http://www.fbi.gov"; }
StupidScript is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 10:47 PM   #11 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
I tryed loading the javascript in the head of my HTML page and it just displayed as text. Is that the wrong place to put it.
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 11:31 PM   #12 (permalink)
Senior Member
 
Join Date: 11-24-06
Location: Hull, United Kingdom
Posts: 127
iTrader: 0 / 0%
Latest Blog:
None

KieranTaylor0403 is a jewel in the roughKieranTaylor0403 is a jewel in the roughKieranTaylor0403 is a jewel in the roughKieranTaylor0403 is a jewel in the roughKieranTaylor0403 is a jewel in the roughKieranTaylor0403 is a jewel in the roughKieranTaylor0403 is a jewel in the rough
Hi there,

You could place all your text as images, and add descriptions and tags to them so Google still crawls the site content, although you would have to update this every time you changed content...give it a try, it would me the thief would have to type all of the content... .


Regards,
Kieran Taylor.
KieranTaylor0403 is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-30-2006, 11:40 PM   #13 (permalink)
Contributing Member
 
thumbtak's Avatar
 
Join Date: 08-18-05
Posts: 103
iTrader: 0 / 0%
Latest Blog:
None

thumbtak is liked by many
Yea but what about my videos and other content like that which my site is mostly...I could even if I was worried about the text make it a flash file. Flash is not as comment knowledge to edit.
thumbtak is offline  
Add Post to del.icio.us
Reply With Quote
Old 12-01-2006, 10:51 AM   #14 (permalink)
Senior Member
 
StupidScript's Avatar
 
Join Date: 09-22-06
Location: Los Angeles
Posts: 663
iTrader: 0 / 0%
Latest Blog:
None

StupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really nice
Code:
<script type="text/javascript"> if (location.hostname.indexOf("baddomain")!=-1) { location.href="http://www.fbi.gov"; } </script>
Keep in mind that this will ONLY be effective if they are actually linking to your content and have not downloaded your pages to their server. If they are using their own copies, they can easily strip this out.

You can see that it works by replacing "baddomain" with "yourdomain" (whatever that is). When you load the page into your browser, you will be redirected to the FBI website. After you see that it works, don't forget to change "yourdomain" to "baddomain" (whatever that is).
StupidScript is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Coding Forum

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bloggers Stealing Articles Steven_D Internet Legal Issues 46 12-16-2008 09:42 AM
Stop Google from Stealing From You! noob_0001 Google Forum 31 03-09-2005 08:30 AM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 01:14 PM.
© Copyright 2008 V7 Inc
Powered by vBulletin
Copyright © 2000-2009 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.