Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Right click disabling (Stealing safety)

Rey

The Shrewd
Loyal Member
Joined
Oct 29, 2011
Messages
1,336
Reaction score
196
If you are aware of your cms getting ripped off heres the solution

Code:
				<!-- 
				//Disable right click script 
				//visit http://www.rainbow.arch.scriptmania.com/scripts/ 
				var message="Sorry, right-click has been disabled"; 
				/////////////////////////////////// 
				function clickIE() {if (document.all) {(message);return false;}} 
				function clickNS(e) {if 
				(document.layers||(document.getElementById&&!document.all)) { 
				if (e.which==2||e.which==3) {(message);return false;}}} 
				if (document.layers) 
				{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} 
				else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} 
				document.oncontextmenu=new Function("return false") 
				// -->

that should be in the footer.

unless they use a winhttrack website copier.
 
• ♠️​ ♦️ ♣️ ​♥️ •
Joined
Mar 25, 2012
Messages
909
Reaction score
464
If you are aware of your cms getting ripped off heres the solution

Code:
				<!-- 
				//Disable right click script 
				//visit http://www.rainbow.arch.scriptmania.com/scripts/ 
				var message="Sorry, right-click has been disabled"; 
				/////////////////////////////////// 
				function clickIE() {if (document.all) {(message);return false;}} 
				function clickNS(e) {if 
				(document.layers||(document.getElementById&&!document.all)) { 
				if (e.which==2||e.which==3) {(message);return false;}}} 
				if (document.layers) 
				{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} 
				else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} 
				document.oncontextmenu=new Function("return false") 
				// -->

that should be in the footer.

unless they use a winhttrack website copier.

there are many common protection methods that are not efficient at all. People can disable JavaScript, pressing F12 and tracking the images. Everything that has been uploaded is free to store on any drive, it's lost in the world wide web and will never stay protected anymore.

There is an interesting fact I was reading in many threads where people asked to disable right click or other mouse functions. People disliked it. Specially the ability to mark text (that is useful for many people so they will not skip any text line) will be missed by many people, so they are saying they will leave any site that disables mouse function in any case instantly.

At least and last, ripping a "CMS" is a controversial statement. The design (HTML) and client sided logic (JS) can be ripped, always. The "own written" server-sided mechanics behind it cannot be ripped as long as you stay secure. The only exception is your server sided code is ripped from open sources / templates. So a CMS source is available anywhere in any case.

But you can do it a lot of harder for rippers like using canvas or flash. Flash that loads other content dynamically was the only protection I was too lazy to hack to get any image / video. However, it's exploitable, too. Specially the "Print"-Button trick for images.

In conclusion, there is no protection for your CMS. The only way to stay on top is to be better and faster than others as well as never getting bored for your visitors ... staying alive, dude.
 
Last edited:
Joined
Jul 2, 2011
Messages
783
Reaction score
230
If you are aware of your cms getting ripped off heres the solution

Code:
				<!-- 
				//Disable right click script 
				//visit http://www.rainbow.arch.scriptmania.com/scripts/ 
				var message="Sorry, right-click has been disabled"; 
				/////////////////////////////////// 
				function clickIE() {if (document.all) {(message);return false;}} 
				function clickNS(e) {if 
				(document.layers||(document.getElementById&&!document.all)) { 
				if (e.which==2||e.which==3) {(message);return false;}}} 
				if (document.layers) 
				{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} 
				else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} 
				document.oncontextmenu=new Function("return false") 
				// -->

that should be in the footer.

unless they use a winhttrack website copier.

1. This is far from the solution. (Bypass-able via Ctrl+U) (Windows/Mac Auto-Ripping Stuff)
2. >unless they use a winhttrack website copier.
This is the reason why this solution will not work. Also, this is extremely annoying, due to the fact I use right click to open poop too a new tab. (Maybe, 0.01% effective against rips.)

3. Ripping (on ragezone) usually happens only on Maple Section lol. So, this has no use here.

In conclusion, there is no protection for your CMS. The only way to stay on top is to be better and faster than others as well as never getting bored for your visitors ... staying alive, dude.

This is very true.
 
Experienced Elementalist
Joined
May 10, 2013
Messages
213
Reaction score
6
Agreed with Burblish. Once you put your CMS/Website online, anyone will be able to get it. Even if you disable right-clicking.
 
• ♠️​ ♦️ ♣️ ​♥️ •
Joined
Mar 25, 2012
Messages
909
Reaction score
464
so how i protect my source code?

At least and last, ripping a "CMS" is a controversial statement. The design (HTML) and client sided logic (JS) can be ripped, always. The "own written" server-sided mechanics behind it cannot be ripped as long as you stay secure. The only exception is your server sided code is ripped from open sources / templates. So a CMS source is available anywhere in any case.

But you can do it a lot of harder for rippers like using canvas or flash. Flash that loads other content dynamically was the only protection I was too lazy to hack to get any image / video. However, it's exploitable, too. Specially the "Print"-Button trick for images.

Is it so hard to read the whole topic?
 
Elite Diviner
Joined
Jul 25, 2013
Messages
466
Reaction score
55
Goto view-source:url and you can see the source, so no use of this.
 
Back
Top