Protecting Website Contents - "Anti Copy" Controls
Feb 4, 2011
How to make a website show the contents readable to the visitor, while the text is entirely protected, no downloads, no copy/pasted, no saving, ..?
All possible controls to take to protect the content.
It could be somewhat similar to Google Books and Scribd:
A combination of Javascript, PDF, images, Flash, ...
Is there any tool for this? Or just; how to make it ourself?
View 1 Replies
ADVERTISEMENT
Jul 23, 2005
I'm working on a project that requires files to be password
protected on a UNIX based site. The people that own the web site want
to be able to change the password every so often. Unfortunately, I
have restricted access only to FTP so I really can't log in to any kind
of Administrative Console or Admin Panel and see if there are folders
that can be password protected and then have passwords changed on them.
The people I'm contracted to work on the site for aren't the most
computer savvy people though....so..my question is:
Is there a user friendly way of password protecting a folder on a UNIX
based site?
View 3 Replies
View Related
Jul 13, 2009
I'm trying to send an entire table and it's contents to the clipboard. The problem is that one of the cells of the table contains a chart that comes from an applet via our SAP system.The other cells around the chart contain labels and such... the user will need to cut and paste these charts into presentations.What i would like is for users to be able to click a button and go paste into power point or wherever they'd like.I had an idea that maybe it's possible to take a screenshot of a portion of the screen and throw that image to the clipboard?
View 4 Replies
View Related
Feb 3, 2010
I'm using a form where a user enters data in a textarea which is then copied to all other textareas on the page. Currently I have it working for 2 textareas using this code:
Code:
<html>
<head>
<script type="text/javascript" language="javascript">
[Code]....
View 1 Replies
View Related
Jun 8, 2010
I've been looking around the web for a simple JavaScript to solve this problem but can't seem to find something that would work both in IE and FF and the other major browsers?
So basically I have a page listing about a dozen badges people can use to link back to me. I have presented the code for each badge (eg. a href, img src, alt...) in a separate textarea and I'd really love to add a link next to each textarea that would say something like "Click here to copy to Clipboard" then it would copy the text from within the corresponding textarea to the Clipboard so as to eliminate the need for Ctrl+A, Ctrl+C.
View 2 Replies
View Related
Feb 12, 2010
I have simple web contents in a page on one server, [URL] and want to plant that in a page on a second server, [URL]
This code doesn't work:
$(function(){
$("#test").load("http://foo.bar.org/test.shtml");
});
although it does work if I put test.shtml on the second server, bar.org, and refer to it relative to root.
View 2 Replies
View Related
Mar 29, 2010
This is my bit of code and I will try to explain what I want to achieve.
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="30"><font size="-2">Day</font></td>
<td width="50"><font size="-2">Period</font></td>
<td width="50"><font size="-2">Time</font></td>
<td width="50"><font size="-2">Total</font></td>
<td width="35"><font size="-2">Code</font></td>
<td><font size="-2">Note</font></td> .....
Basically this gives me a table with all the start and finish times for each day from Monday to Sunday. What I'm looking at is the ability to hide particular day using java if possible. I know you can use div's to do this and I've searched the forum for solution but it looks like my case is unusual. I want to use show/hide buttons to display certain day and hide rest of them. Is it possible to put the new code around the existing one?
View 1 Replies
View Related
May 27, 2010
How can I use Javascript to access an external website (a href...) and capture the contents of a particular HTML tag. I thought ".innnerHTML" might do it but I've tried several configurations and can't seem to figure out how. I'm not even sure that it's possible.
View 1 Replies
View Related
Jul 12, 2010
I am trying to introduce a vertical scroller to my site, I got the code from a tutorial and slightly tweaked the html to meet my needs but now the content doesn't scroll. None of this code has been altered!
<script type="text/javascript">
$(document).ready(function(){
$(".newsticker-jcarousellite").jCarouselLite({
vertical: true,
hoverPause:true,
visible:10,
auto:500,
speed:1000
});
});
</script>
This is the HTML and PHP part:
<div id="newsticker-demo">
<div class="newsticker-jcarousellite">
<br/><?php
$query = mysql_query("SELECT * FROM employers WHERE featured = 'Yes' AND image != '' ORDER BY rand()");
$i=0;
//$query = mysql_query("SELECT * FROM employers WHERE f_emp_active = 'Yes' and image !='' ORDER BY rand()");
echo '<div>';
while ($aqm=mysql_fetch_array($query)){
?><div><div>
<div class="thumbnail">
<div align="center"><a href="company.php?companyname=<?php echo $string ?>">
<img src="<?=$fullurl?>/thumbnail.php?gd=2&src=employers/logo/big/<?=$aqm[image]?>&maxw=<?=$a18[width]?>" alt="<?=$aqm[companyname]?>" title="<?=$aqm[companyname]?>" class="noborder" /></a>
</div></div>
<div class="clear"></div>
</div></div><br/><br/><?php
if($i==5){
echo '</div><div>';
} $i++;
} echo '</div>'; ?>
</div></div>
View 1 Replies
View Related
Jan 30, 2003
I woud first of all like to post this nifty little script to stop robots stealing your email address from your website:
<script LANGUAGE="javascript">
var first = 'ma'
var second = 'il'
var third = 'to:'
var address = 'USERNAME'
var domain = 'HOTMAIL'
var ext = 'COM'
document.write('<a href="');
document.write(first+second+third);
document.write(address);
document.write('@');
document.write(domain);
document.write('.');
document.write(ext);
document.write('">');
document.write('Email Me</a>');
</script>
All you need to change is the Address, Domain, and Extension.
Secondly, I would like a little help with adapting this code. My problem is that I want to incorporate this code into a mouse over code that exchanges the picture. (see here:Email Test page (http://akhet.port5.com/email.htm), where I have put the two codes on one page but they are not combined properly yet.)
The end result would be a mouse over picture exchange that the visitor can click on to email me and no robots can steal my email address.
Any one know how to combine these two scripts effectively?
View 8 Replies
View Related
Dec 22, 2003
We don't like putting our email addresses on our pages because we know we'll be spammed big time!
Of course you could use javascript and 'document.write' it out, but who wants script tags in his body? I don't!
So today I made the below and I thought I'd share. It kinda explains itself better then I ever could so. Code:
View 6 Replies
View Related
Feb 2, 2010
I have this script, where I want it to use a multi-user login. the code is below.
[Code]...
I have 2 problems. One is that mainly, it doesn't work! And Two, is there someway you can block an external script from being viewed in a browser, or someway to keep people from reading the Usernames and Passwords?
View 1 Replies
View Related
Sep 16, 2007
Is it possible to password protect a javascript and still have it work?
View 4 Replies
View Related
Sep 5, 2002
The following method should prevent users of client computer to access script and style code using the following techniques:
- View (Page) Source - either through right-click, menu or shortcut key
- Save As...
- Temporary Internet Files Folder
The suggested method uses server side scripting and is implemented using ASP.
Your HTML file:
<html>
<head>
...
<script type="text/JavaScript">
scriptsString=ƈ,6,5'
</script>
<script type="text/JavaScript" src="ScriptLoader.js" ></script>
....
ScriptLoader.js listing:
scripts=document.createElement('script');
scripts.src='ScriptLoader.asp?Scripts=' + scriptsString;
document.getElementsByTagName('head')[0].appendChild(scripts);
Action is in ScriptLoader.asp
<%@ Language=VBScript EnableSessionState=False %>
<%Option Explicit%>
<% Response.Buffer = True
Response.Expires = 0 'Prevents caching of the content
%>
<%
Dim strScripts
Dim ipsp, iFNum
Dim fso, file
Dim strReferer
Dim bRM = False
Dim Scripts(13)
Scripts(0) = "Script1.js"
...
Scripts(13) = "Script13.js"
strReferer=Request.ServerVariables("HTTP_REFERER")
'compare referer to the address of the page that uses the
'scripts and continue only if matches. This will allow access
'only by your file
strScripts=Request.QueryString("Scripts")
set fso = Server.Createobject("Scripting.FileSystemObject")
While Len(strScripts) > 0
ipsp = InStr(1,strScripts,",")
If ipsp = 0 Then
iFNum=CInt(strScripts)
strScripts=""
Else
iFNum=CInt(Left(strScripts,ipsp-1))
strScripts = Right(strScripts, Len(strScripts) - ipsp)
End If
set file = fso.opentextfile(Server.MapPath(Scripts(iFNum)), 1)
Response.Write(file.ReadAll)
file.close
set file = nothing
Wend
set fso = nothing
%>
Hope this will extinguish some of the code protection debates. If you see holes in the suggested approach let me know. It still does not protect from net traffic sniffers ....
View 3 Replies
View Related
Nov 13, 2009
I made a form, but I don't want just anyone to be able to use it. So I was wondering if it was possible for the page to check if they were logged into my forum.
View 1 Replies
View Related
Mar 4, 2009
I website I've seen recently uses a clever technique, which I'm still working to figure out. When you go to view an image, a pop-up window opens -- the image is downloaded (non-cached) and then some javascript (presumably) loads a replacement image in its place (it's not displayed) -- when you go to save it, you get the dummy image.
Further, they make some javascript call (presumably, or jquery) to replace the document content of that page, so when you do a View Source, you get something totally different.
How this is actually working, and whether something like that could be cross-browser supported.
View 8 Replies
View Related
Apr 9, 2009
I have designed a template for a script in html and planning to sell it, but i am too concerned with piracy because i need money urgently for my further studies and piracy will ruin it,
So is there anyway you can suggest from protecting it?
The 1 way i have in mind is the first time the template loads it send the domain name using the template to my site and automatically placing a php file in another directory so that if i find the user malicious (using the pirated copy) i can disable the template and request him to buy a legitimate copy.
And can that javascript be divided into parts? like 1 part in header another in body and so on, so that it is hard to find the code.
I know there is no 100% full proof way of securing but having done little from our side can also help us avoid few pirate's .
View 9 Replies
View Related
Aug 23, 2009
So the page is [url]
If you click on 'Tide' you can see the password prompt appears. But the problem I am having is that even if you press cancel or do the wrong password a few times it still open up the shadow box.
This is the script for the password protection
This is an example of how a working (non shadowbox) version works successfully.
[url]
View 1 Replies
View Related
Jan 8, 2011
I am trying to prevent an email address from being spammed as spammers use spidering tools to scan the internet for exposed email addresses in plain text.
I am using a technique and I'm not sure whether it will deter spam bots.
I have an external Javascript file with the following variables:
var usr = "mark";
var at = "@";
var domain = "fullmarksdrivingschool.co.uk";
[Code].....
When I open the web page in a browser the email address displays correctly but does this technique work to prevent spammers from indexing the email address?
View 3 Replies
View Related
Nov 28, 2006
From any page, I want to be able to call a JS function that will do the
equivelant of select all, and copy. This data will then be posted to a
page that will log it.
This would be easy using copy/paste functionality but I don't want to
screw-up users copy/paste buffer. Anyone have an example of how to
retrieve all text with similar formatting of copying page to notepad
without using copy/paste functionality?
View 2 Replies
View Related
Feb 2, 2009
i want algorithm for positive tainting and syntax aware evaluation
View 1 Replies
View Related
Jul 15, 2009
I'm looking for javascript to analyze the contents of a textbox and replace the contents with the appropriate date. To make that a little clearer, if the user types 'tomorrow' then when they tab/move onto the next text box the 'tomorrow' text should be replaced with the date for tomorrow in the format dd/mm/yyyy, if the user enters '1 week' then the text should be replaced with the date in one week in the format dd/mm/yyyy etc.
View 1 Replies
View Related
Jan 28, 2010
The javascripts files in my website are constantly getting injected with malicious codes which redirects my website
View 2 Replies
View Related
Dec 29, 2005
I'm trying to code a feature for my website using DHTML where the person viewing the website can rotate between viewing the positive/negative points of the website being reviewed. This example was in the publication called Using HTML 4 by Lee Anne Phillips. Code:
View 5 Replies
View Related
Nov 30, 2010
I have a ajax program on a page on website A. And I need to let it talk to a program on website B. I tried to put website B into the url of the parameter but it doesn't work.It gives me a "[objet XMLHttpRequest]" error.here is the code on website A:
[Code]...
View 1 Replies
View Related
May 2, 2011
Im currently working on a project with jquery... the thing is.. i need to change the contents of a div named "sub2" with the contents of "pets.html"... i've read some tutorials and i thought the best way to do this is through the use of jquery...
Here's my code:
My image which is supposed to be clicked contains this:
The code is working ., but when i transfer my codes to netbeans with Tomcat running the code didnt work ...
Is there anyone here who knows what's wrong or what should i do with my code?
View 1 Replies
View Related