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!

WebSite Secure

Newbie Spellweaver
Joined
Oct 26, 2006
Messages
52
Reaction score
0
Hello all ! I derasey what you all know your idea, work image can another noob take of yours website ..
Soo its very easy go in website push right mouse button and what you see xD you see ccommands print,secure,properties,encoding ....

With this commands you can copy all website files ideas and more... Its soo poor whan you go in another server website and see you created table or image ... not nice yes soo you can STOP it !!!! You only need download it :)

Whan you download it put in your website encrypt.php file go in file whare you want set this secure and paste it !

<?php include("encrypt.php"); ?>

Soo you website protected ! :)
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Sep 11, 2007
Messages
257
Reaction score
0
Re: [Release]WebSite Secure

Thanks men! Realy needet thing!
 
Newbie Spellweaver
Joined
Aug 13, 2006
Messages
19
Reaction score
0
Re: [Release]WebSite Secure

Your are sure this work?
 
Newbie Spellweaver
Joined
Oct 26, 2006
Messages
52
Reaction score
0
Re: [Release]WebSite Secure

xDD 100% work perfekt
 
Experienced Elementalist
Joined
Jun 24, 2005
Messages
287
Reaction score
41
Re: [Release]WebSite Secure

Protected ? lol its just disable right click on mouse :))
Anyway you can cheack Page Source and y can open image from webserver.

example:your site secured ?


Thx but more simple and faster for web add this to index
half of script what y posted...

Code:
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 
</script>

Credits:Maximus (DynamicDrive)
 
Experienced Elementalist
Joined
Apr 29, 2007
Messages
260
Reaction score
4
Re: [Release]WebSite Secure

haha even right click isn't security

Example :
Open Mozila Firefox
Open the "secured" web and push Ctrl+U there's the source code so no need of right click protection script
 
Newbie Spellweaver
Joined
Jan 20, 2006
Messages
73
Reaction score
0
Re: [Release]WebSite Secure

looool :)))) disable right click = secure ???????? :O :O :))))) no comment
 
Newbie Spellweaver
Joined
Oct 26, 2006
Messages
52
Reaction score
0
Re: [Release]WebSite Secure

xDD ehh mb you look to the script...
 
Experienced Elementalist
Joined
May 18, 2005
Messages
293
Reaction score
6
Re: [Release]WebSite Secure

Ahh nice

The script encrypts the source code so if I make my html like this:
<b>my cool bold</b> it would show up as a normal a bold thing in the browser but in the source it is encrypted text

But if the user disables javascript your page will be blank remember that

Here is the script with with out the "disable right click thing" and a example attachted to it:
Code:
<?php
function _fwk_filter_encrypt($content) 
{ 
$table = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_@"; 
$xor = 165; 
$table = array_keys(count_chars($table, 1)); 
$i_min = min($table); 
$i_max = max($table); 
for ($c = count($table); $c > 0; $r = mt_rand(0, $c--)) 
array_splice($table, $r, $c - $r, array_reverse(array_slice($table, $r, $c - $r))); 
$len = strlen($content); 
$word = $shift = 0; 
for ($i = 0; $i < $len; $i++) 
{ 
$ch = $xor ^ ord($content[$i]); 
$word |= ($ch << $shift); 
$shift = ($shift + 2) % 6; 
$enc .= chr($table[$word & 0x3F]); 
$word >>= 6; 
if (!$shift) 
{ 
$enc .= chr($table[$word]); 
$word >>= 6; 
} 
} 
if ($shift) 
$enc .= chr($table[$word]); 
$tbl = array_fill($i_min, $i_max - $i_min + 1, 0); 
while (list($k,$v) = each($table)) 
$tbl[$v] = $k; 
$tbl = implode(",", $tbl); 
$fi = ",p=0,s=0,w=0,t=Array({$tbl})"; 
$f  = "w|=(t[x.charCodeAt(p++)-{$i_min}])<<s;"; 
$f .= "if(s){r+=String.fromCharCode({$xor}^w&255);w>>=8;s-=2}else{s=6}"; 
$r = "<script language=JavaScript>"; 
$r.= "function decrypt_p(x){";
$r.= "var l=x.length,b=1024,i,j,r{$fi};"; 
$r.= "for(j=Math.ceil(l/b);j>0;j--){r='';for(i=Math.min(l,b);i>0;i--,l--){{$f}}document.write(r)}"; 
$r.= "}decrypt_p(\"{$enc}\")"; 
$r.= "</script>"; 
return $r; 
} 
ob_start("_fwk_filter_encrypt"); 
?>

<b>Bold tag. Try an push ctrl + u in Firefox (You will see no bold tag there</b>

Protected ? lol its just disable right click on mouse :))
Anyway you can cheack Page Source and y can open image from webserver.

example:your site secured ?


Thx but more simple and faster for web add this to index
half of script what y posted...

Code:
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>
Credits:Maximus (DynamicDrive)

He doesnt use this script lol.

Learn to understand code before you diss some one :)
 
Initiate Mage
Joined
Oct 31, 2007
Messages
1
Reaction score
0
Re: [Release]WebSite Secure

Coders wars.... :))
Memmer - You hawe posted working script! Thanks!
 
Newbie Spellweaver
Joined
Apr 21, 2005
Messages
98
Reaction score
0
Re: [Release]WebSite Secure

on opera this script don't helps haha :D
 
Experienced Elementalist
Joined
Oct 1, 2006
Messages
287
Reaction score
0
Re: [Release]WebSite Secure

nice but , thx but this script no by you ;)


}
ob_start("_fwk_filter_encrypt");
?>



<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit
 
Legendary Battlemage
Loyal Member
Joined
Nov 3, 2006
Messages
648
Reaction score
2
Re: [Release]WebSite Secure

Eh , just disabling right click wont solve anything .. people can take your website from website downloaders like surfoffline and more ..
 
Experienced Elementalist
Joined
May 18, 2005
Messages
293
Reaction score
6
Re: [Release]WebSite Secure

Eh , just disabling right click wont solve anything .. people can take your website from website downloaders like surfoffline and more ..

Read my post.. This doesnt (I SAID DOESNT) just disable right click

It encrypts the html with php and javascript
 
Newbie Spellweaver
Joined
Oct 26, 2006
Messages
52
Reaction score
0
Re: [Release]WebSite Secure

Ehh soo if you no need soo no say nothing.. MB some pp need this NOOBZ !
 
Newbie Spellweaver
Joined
Oct 9, 2004
Messages
30
Reaction score
0
Re: [Release]WebSite Secure

I like it but.
If you run your mu server on and web server on the same machine, it could be a performance problem. The script will encrypt your entire code, slow down the php layer pretty much. It will also take alot of cpu resource for these work when there are many visitors to your web and each one comes by 4-5 pages, imagine that.
 
Back
Top