How to prevent people from click "save as" and cop

 
Post new topic   Reply to topic    Webmaster Forum -> Hacking and Security
saveas
Guest




Gender: None specified

PostPosted: Fri Jun 08, 2007 1:17 pm    Post subject: How to prevent people from click "save as" and cop
View Single PostView Single Post

How to prevent people from click "save as" and copy the site?

Anyone have some codes that will disable "save as"  that will prevent people from copying your web page to their computer? anyone would like to share the codes with us?
 
ADs
robot
Aliens
Guest




Gender: None specified

PostPosted: Fri Jun 08, 2007 1:18 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

You can't, you are viewing this page or able to view this page is because your computer can see and downloaded the page from this site. So it is not possible. If it downloaded to your computer, you can do anythings with it, no one can stop you.
 
coder
Guest




Gender: None specified

PostPosted: Fri Jun 08, 2007 1:19 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

I need codes like that too. I went to a website, while I was reading an article I clicked "save as" to save that page to my computer for later read. I was able to clicked "save as" but then it said "can't save". Must be some kinds of javascript that prevented me from saved that page.
 
anoob
Guest




Gender: None specified

PostPosted: Fri Jun 08, 2007 1:19 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

I need codes like that too. I went to a website, while I was reading an article I clicked "save as" to save that page to my computer for later read. I was able to clicked "save as" but then it said "can't save". Must be some kinds of javascript that prevented me from saved that page.
 
minh
Guest




Gender: None specified

PostPosted: Fri Jun 08, 2007 1:21 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

None of those sites can prevent people from "save as". They can stop newbies or new internet users from saving the page but they can't stop other internet expert users from doing that. There are many ways to "save as" not just right click "save as" and like Aliens said:

                                 
Quote:
You can't, you are viewing this page or able to view this page is because your computer can see and downloaded the page from this site. So it is not possible. If it downloaded to your computer, you can do anythings with it, no one can stop you.
 
meiji
Guest




Gender: None specified

PostPosted: Mon Jul 16, 2007 6:21 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

sorry for putting this link...
                                 
Code:
www.worldofwarcraft.com


it has something to do with the topic... the forum of this site can't be save... so there is a script to stop saving the page when it reach 99.9%...

if anyone knows the script kindly tell us...
 
javascripting
Guest




Gender: None specified

PostPosted: Mon Jul 16, 2007 9:31 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

Disable Save As

                                 
Code:
<script>
<!--
// Save As in Toolbar
var PageViewer = ADViewer.Viewer;
PageViewer.ShowCommand("SAVE", FALSE);

// Save As in Context Meni
ADViewer.ContextMenu.RemoveItem("Root.SaveAs", -1);
-->
</script>



no right click for images..

                                 
Code:
<script language="JavaScript">
<!--
function noway(go) { if
(document.all) { if (event.button == 2) { alert(popup); return false; } } if (document.layers)
{ if (go.which == 3) { alert(popup); return false; } } } if (document.layers)
{ document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=noway;
// -->
</script>



no right click for source code..

                                 
Code:
<script language="JavaScript1.1">
<!--
var debug = true; function
right(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which
== 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer'
&& (event.button == 2 || event.button == 3)) { alert('This Page is fully
protected!'); return false; } return true; } document.onmousedown=right; if (document.layers)
window.captureEvents(Event.MOUSEDOWN); window.onmousedown=right;
//-->
</script>



Disable Copy and Paste.
Add the following html code to your BODY tag:

                                 
Code:
<body bgcolor="#FFFFFF" ondragstart="return false" onselectstart="return false">



Disable Print screen

                                 
Code:
<script>
<!--
void prtsc_allow(int allow) /* 0=disable, nonzero=enable */
{
unsigned char far* flag = (unsigned char far*)0x00400100UL;
*flag = (unsigned char)!allow;
}
-->
</script>
 
luckymurari
Experienced Talker
Experienced Talker


Joined: 02 Mar 2008
Posts: 81
Gender: None specified

PostPosted: Mon Mar 03, 2008 1:17 pm    Post subject: : How to prevent people from click "save as" and cop
View Single PostView Single Post

But still if u are expert you could get it by using GET command from terminal in UNIX system.So there's really no way to protect it.These are all the techniques only to stop a n00b
 
Display posts from previous:   
Post new topic   Reply to topic All times are GMT
Page 1 of 1