This is the only working way to completely hide your JavaScript code from the client just like PHP or ASP code.
Here we'll need the help of PHP. Here is the code:
index.php
_______________ _______________ _______________ ___________
_______________ _______________ _______________ _______________ _
javascript.php
_______________ _______________ _______________ _______________ _
See if you can get my JavaScript code. You'll never be able to. I hope this will help all of you.
Here we'll need the help of PHP. Here is the code:
index.php
_______________ _______________ _______________ ___________
Code:
<?PHP @session_start(); //Start our session. if(@!session_is_registered('PrintTheJavaScript')){ //If the session is not registered (and it's not). @session_register('PrintTheJavaScript'); //Register the session. } // End if(@!session_is_registered('Pri... $_SESSION["PrintTheJavaScript"] = true; //Set the session value to TRUE. ?>
Code:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1256" /> <title>Hide Javascript Code</title> <!--Here we call our Javascript page the first time it'll provide us with our javascript code --> <script language="javascript" src="./javascript.php"></script> <!-- We call the same page again AND THIS IS SECOND PART OF THE TRICK. because after we called it the first time it will set the session value to FALSE which mean it will print NOTHING --> <script language="javascript" src="./javascript.php"></script> </head> Try to save this page or go straight from your browser to the (javascript.php) page<br> and see if you can get my javascript code.<br> YOU'LL NEVER CAN. <body> </body> </html>
javascript.php
_______________ _______________ _______________ _______________ _
Code:
<?php /* ___________________________________________________________ | | | Script name: Hide Javascript Code. | | Script date: 16/12/2007 | | Script author: Mahr Bakr | | admin@SOLAV.com | | Script goal: Hiding the javascript code from the client like PHP & ASP | | Script license: Free for personal and commercial. | | ******************************************************* | | Keep this note or at least point to me as the author of the script | | ******************************************************* | /___________________________________________________________\ */ @session_start(); //Start our session. header("Cache-Control: no-store, no-cache"); //Tell the browser to not cache this page (don't store it in the internet temp folder). header("Content-type: text/javascript"); //Let the browser think that this is a Javascript page. //If the session value is TRUE that means the client has opened the main page (which creates our session and sets its value to TRUE). if ($_SESSION["PrintTheJavaScript"] == true){ //Now we can print our javascript code using PHP's echo command. echo ' // Here is our hidden javascript source. var Something="This is a real hidden Javascript code"; alert(Something); // End of our hidden javascript source. '; }else{ //If the client tried to open the page straight from the browser (he is trying to see our hidden code). // Print some fake code or don't print anything. } //Set the session value to false AND THIS IS FIRST PART OF THE TRICK. //because we are going to call this page again and it'll print nothing (because $_SESSION["PrintTheJavaScript"] <> TRUE) //so even if the client tried to SAVE the page this page will be saved empty. $_SESSION["PrintTheJavaScript"] = false; ?>
Comment