Wat is de HTML code om het rechtsklikken onbruikbaar te maken bij alleen plaatjes? Het is mogelijk. Er kan nog wel tekst geselecteerd worden.
<script language="JavaScript">
<!--
var message="© Copyright: koetjeboe";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</script>
<!--
var message="© Copyright: koetjeboe";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</script>
Verwijderd
#!/usr/bin/perl
#
##############################################################################
# Bandwidth Bandit v1.6 #
# Copyright (c) 1999 by Mike's World. All Rights Reserved. #
# http://www.mikesworld.net #
# mike@mikesworld.net #
# #
# You should carefully read all of the following terms and conditions #
# before using this program. Your use of this software indicates #
# your acceptance of this license agreement and warranty. #
# #
# This program is being distributed as freeware. It may be used and #
# modified free of charge, so long as this copyright notice, and the #
# header above remain intact. Please also send me an e-mail, and let #
# me know where you are using this script. #
# #
# By using this program you agree to indemnify Mike's World from any #
# liability. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. Obtain permission before redistributing this #
# program over the Internet or in any other medium. In all cases #
# copyright and header must remain intact. #
##############################################################################
# Installation -
#
# 1 - Upload in ascii mode to your cgi-bin
# 2 - Chmod 755 bbandit.cgi
# 3 - Insert the following HTML tag in place of whatever image HTML tag that
# you want to protect with Bandwidth Bandit:
# [img]"/cgi-bin/bbandit.cgi?image&ext"[/img] Make sure to change "image" to
# whatever the image is called and "ext" to the appropriate image extension
# whether it be gif or jpg. IMPORTANT: Leave the "&" in between the image
# name and extension.
$domain = "mikesworld.net";
# Set this to whatever address your site is at. If your address is
# www.yourdomain.com make sure to just list yourdomain.com.
$busted = "http://www.mikesworld.net/images/dontthinkso.gif";
# This is the image that will be shown when someone copies the SRC in the IMG
# tag. Make sure to point this to whatever image you are going to use.
$directory = "/full/path/to/images";
# This is the directory that will store all of the images that you want to
# protect with Bandwidth Bandit. As an additional security feature you will
# probably want to chmod this directory 711 so that no one can see a listing
# of all the images from a Internet browser.
unless ($ENV{'HTTP_REFERER'} =~ $domain) {
print "Location: $busted\n\n";
exit;
}
($name,$ext)=split('&',$ENV{'QUERY_STRING'});
print "Content-type: image/" . (($ext eq 'jpg') ? 'jpeg' : $ext) . "\n\n";
open (image,"$directory/"."$name".".$ext") or die;
while (read image, $buf, 1024) {
print $buf;
}
close image;
#
##############################################################################
# Bandwidth Bandit v1.6 #
# Copyright (c) 1999 by Mike's World. All Rights Reserved. #
# http://www.mikesworld.net #
# mike@mikesworld.net #
# #
# You should carefully read all of the following terms and conditions #
# before using this program. Your use of this software indicates #
# your acceptance of this license agreement and warranty. #
# #
# This program is being distributed as freeware. It may be used and #
# modified free of charge, so long as this copyright notice, and the #
# header above remain intact. Please also send me an e-mail, and let #
# me know where you are using this script. #
# #
# By using this program you agree to indemnify Mike's World from any #
# liability. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. Obtain permission before redistributing this #
# program over the Internet or in any other medium. In all cases #
# copyright and header must remain intact. #
##############################################################################
# Installation -
#
# 1 - Upload in ascii mode to your cgi-bin
# 2 - Chmod 755 bbandit.cgi
# 3 - Insert the following HTML tag in place of whatever image HTML tag that
# you want to protect with Bandwidth Bandit:
# [img]"/cgi-bin/bbandit.cgi?image&ext"[/img] Make sure to change "image" to
# whatever the image is called and "ext" to the appropriate image extension
# whether it be gif or jpg. IMPORTANT: Leave the "&" in between the image
# name and extension.
$domain = "mikesworld.net";
# Set this to whatever address your site is at. If your address is
# www.yourdomain.com make sure to just list yourdomain.com.
$busted = "http://www.mikesworld.net/images/dontthinkso.gif";
# This is the image that will be shown when someone copies the SRC in the IMG
# tag. Make sure to point this to whatever image you are going to use.
$directory = "/full/path/to/images";
# This is the directory that will store all of the images that you want to
# protect with Bandwidth Bandit. As an additional security feature you will
# probably want to chmod this directory 711 so that no one can see a listing
# of all the images from a Internet browser.
unless ($ENV{'HTTP_REFERER'} =~ $domain) {
print "Location: $busted\n\n";
exit;
}
($name,$ext)=split('&',$ENV{'QUERY_STRING'});
print "Content-type: image/" . (($ext eq 'jpg') ? 'jpeg' : $ext) . "\n\n";
open (image,"$directory/"."$name".".$ext") or die;
while (read image, $buf, 1024) {
print $buf;
}
close image;
Verwijderd
Hehehehe, dat werkt misschien wel bij rechtsklikken, maar wat je dan noch wel kunt doen om die plaatjes te jatten: 
Selecteer het plaatje (slepen met de muiswijzer)
[CTRL]+C
Of
Bewerken Copieëren
Selecteer het plaatje (slepen met de muiswijzer)
[CTRL]+C
Of
Bewerken Copieëren
het is NIET TE BEVEILIGEN....
en het is nog vervelend ook nog..
iets wat nog een beetje werkt is het gehele plaatje opdelen in een hoop stukken, en dan dat op je page zetten, maar dan 1 keer printscreen, en je bent er ook..
nogmaals, HET IS NIET TE BEVEILIGEN.
en het is nog vervelend ook nog..
iets wat nog een beetje werkt is het gehele plaatje opdelen in een hoop stukken, en dan dat op je page zetten, maar dan 1 keer printscreen, en je bent er ook..
nogmaals, HET IS NIET TE BEVEILIGEN.
met een applet is het kutst om te kopieren, moet je eerst screenshot maken, dan cpoy/pasten in photoshop en dan croppen.
ander moet dan redelijk veel moeite doen maar er is ook een 100% copy-proof methode:
HOU ZE VOOR JEZELF
wrom zoveel moeite om iets op het web te zetten in de hoop dattet niet wort gekopiert........
one for the internet, the internet for all
ander moet dan redelijk veel moeite doen maar er is ook een 100% copy-proof methode:
HOU ZE VOOR JEZELF
wrom zoveel moeite om iets op het web te zetten in de hoop dattet niet wort gekopiert........
one for the internet, the internet for all
Er is een programma voor... daarmee is het echt te beveiligen, weet de naam niet meer maar heb het ergens gelezen, ook printscreen werkt dan niet, tenminste, er word dan een ander plaatje afgebeeld! maar je moet er wel een plugin voor hebben (iedereen die die site wil zien ook)
Dan zou je nog met een fotocamera een foto van het scherm kunnen maken maar dat is wel een beetje ver gezocht
Het is niet te beveiligen inderdaad, er is altijd een manier om omheen te komen, en zo'n anti-rechts klik scriptje is ook nog eens erg irritant.
Jij bedoelt die Terraserver meuk zeker met hun Clever-Content plugin..Op zondag 17 december 2000 19:43 schreef Xtuv het volgende:
Er is een programma voor... daarmee is het echt te beveiligen, weet de naam niet meer maar heb het ergens gelezen, ook printscreen werkt dan niet, tenminste, er word dan een ander plaatje afgebeeld! maar je moet er wel een plugin voor hebben (iedereen die die site wil zien ook)
ik heb een 864 GB floppydrive! - certified prutser - the social skills of a thermonuclear device
Verwijderd
Het is wel te beveiligen.
En dit gesprek heb ik al vaker op tweakers gehad, dus ik ga het niet weer helemaal uitleggen..
En dit gesprek heb ik al vaker op tweakers gehad, dus ik ga het niet weer helemaal uitleggen..
Ja dan moeten ze eerst een plug in downloaden voordat je op de site mag komen en die plug in zorgt er voor dat je niet kunt printscreenen e.d.
Verwijderd
pim_: Het is wel te beveiligen.
Nee, het is niet te beveiligen. Als jij me een plaatje geeft kan ik het opslaan.
Nee, het is niet te beveiligen. Als jij me een plaatje geeft kan ik het opslaan.
Precies, en dat is ook de enige methode. Maar aangezien toch niemand een plug-in gaat downloaden om plaatjes te bekijken, die met een beetje zoekwerk, ergen anders ook wel te krijgen zijn.Op maandag 18 december 2000 03:16 schreef Mastermind het volgende:
Ja dan moeten ze eerst een plug in downloaden voordat je op de site mag komen en die plug in zorgt er voor dat je niet kunt printscreenen e.d.
Verwijderd
Het is NIET te beveiligen.
Het beste is nog met een Applet maar dat is te dumpen.
Verder kun je wel lekker dat rechtermuisknop ding gaan implementeren, maarja ooit gedacht aan windowstoetsen,javascriptuitschakelen,plaatjedirectaanroepen,screendumpen?
Ik zeg altijd maar zo: als iemand echt iets wil jatten lukt het hem ook wel.
Dussuh learn 2 live with it, of neem een ander beroep
Je kunt natuurlijk wel gaan digimarken voor je copyrights, maar ja..... of dat altijd zo nuttig is
Het beste is nog met een Applet maar dat is te dumpen.
Verder kun je wel lekker dat rechtermuisknop ding gaan implementeren, maarja ooit gedacht aan windowstoetsen,javascriptuitschakelen,plaatjedirectaanroepen,screendumpen?
Ik zeg altijd maar zo: als iemand echt iets wil jatten lukt het hem ook wel.
Dussuh learn 2 live with it, of neem een ander beroep
Je kunt natuurlijk wel gaan digimarken voor je copyrights, maar ja..... of dat altijd zo nuttig is
ik dacht dat het inet ging om het delen van informatie
zeikers...
zeikers...
Klaar voor een nieuwe uitdaging.
Pagina: 1