Accueil > > > CRYPTER/DECRYPTER VOS CODES SOURCES
CRYPTER/DECRYPTER VOS CODES SOURCES
Information sur la source
Description
Se code permet de crypter/decrypter une source (en hexadécimal)... Ce mode de cryptage est très connu mais il est intéressant, et oui l'hexadécimal qui compri du navigateur ... exemple : avant : <html> <title>tiredelapage<title> <a href="http://www.site.fr">lien</a> </html> après : <script> <!-- document.write(unescape("%3Chtml%3 E%0A%3Ctitle%3Etiredelapage%3Ctitle%3E%0A%3Ca%20hr ef%3D%22http%3A//www.site.fr%22%3Elien%3C/a%3E%0A% 3C/html%3E")); //--> </script>
Source
- <html>
- <head>
- <title>Crypter vos pages html</title>
- </head>
-
-
- <!-- Compilation Panel -->
- <script language="JavaScript">
- <!--
-
- var i=0;
- var ie=(document.all)?1:0;
- var ns=(document.layers)?1:0;
-
- function initStyleElements() /* Styles for Buttons Init */
- {
- var c = document.pad;
- if (ie)
- {
- //c.text.style.backgroundColor="#DDDDDD";
- c.compileIt.style.backgroundColor="#D7D7D7";
- c.compileIt.style.cursor="hand";
- c.select.style.backgroundColor="#D7D7D7";
- c.select.style.cursor="hand";
- c.view.style.backgroundColor="#D7D7D7";
- c.view.style.cursor="hand";
- c.retur.style.backgroundColor="#D7D7D7";
- c.retur.style.cursor="hand";
- c.clear.style.backgroundColor="#D7D7D7";
- c.clear.style.cursor="hand";
- }
- else return;
- }
-
- /* Buttons Enlightment of "Compilation" panel */
- function LightOn(what)
- {
- if (ie) what.style.backgroundColor = '#D7D7D7';
- else return;
- }
- function FocusOn(what)
- {
- if (ie) what.style.backgroundColor = '#ffffff';
- else return;
- }
- function LightOut(what)
- {
- if (ie) what.style.backgroundColor = '#ffffff';
- else return;
- }
- function FocusOff(what)
- {
- if (ie) what.style.backgroundColor = '#ffffff';
- else return;
- }
- /* Buttons Enlightment of "Compilation" panel */
-
- function generate() /* Generation of "Compilation" */
- {
- code = document.pad.text.value;
- if (code)
- {
- document.pad.text.value='Compilation ...';
- setTimeout("compile()",1000);
- }
- else alert('Placer votre html dans la fenetre')
- }
- function compile() /* The "Compilation" */
- {
- document.pad.text.value='';
- compilation=escape(code);
- document.pad.text.value="<script>\n<!--\ndocument.write(unescape(\""+compilation+"\"));\n//-->\n<\/script>";
- i++;
- if (i=1) alert("Page html compil?e !");
- else alert("Page compiled "+i+" times!");
- }
- function selectCode() /* Selecting "Compilation" for Copying */
- {
- if(document.pad.text.value.length>0)
- {
- document.pad.text.focus();
- document.pad.text.select();
- }
- else alert('Rien à séléctionner !')
- }
- function preview() /* Preview for the "Compilation" */
- {
- if(document.pad.text.value.length>0)
- {
- pr=window.open("","Preview","scrollbars=1,menubar=1,status=1,width=700,height=320,left=50,top=110");
- pr.document.write(document.pad.text.value);
- }
- else alert('Arg!')
- }
- function uncompile() /* Decompiling a "Compilation" */
- {
- if (document.pad.text.value.length>0)
- {
- source=unescape(document.pad.text.value);
- document.pad.text.value=""+source+"";
- }
- else alert('Il n y a rien à compiler !')
- }
- // -->
- </script>
- <form method="post" name="pad" align="center">
- <p align="center">
- <textarea rows="11" name="text" cols="58" style="background-color: rgb(215, 215, 215); color: Black;
-
- font-family: Verdana; font-size: 11px;"></textarea>
- <br>
-
- <input type="button" value="Chiffrer" name="compileIt" onclick="generate()" onmouseover="LightOn(this)"
-
- onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
-
- font-size: 11px;">
-
- <input type="button" value="Selection" name="select" onclick="selectCode()" onmouseover="LightOn(this)"
-
- onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
-
- font-size: 11px;">
- <input type="button" value="Voir" name="view" onclick="preview()" onmouseover="LightOn(this)"
-
- onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
-
- font-size: 11px;">
- <input type="button" value="Source" name="retur" onclick="uncompile()" onmouseover="LightOn(this)"
-
- onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
-
- font-size: 11px;">
- <input type="reset" value="Effacer" name="clear" onmouseover="LightOn(this)"
-
- onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
-
- font-size: 11px;">
- <br>
- <font face="Verdana, Arial, Helvetica, sans-serif"
-
- size="1"></font></p>
- </form>
- <!-- Compilation Panel -->
- </html>
<html>
<head>
<title>Crypter vos pages html</title>
</head>
<!-- Compilation Panel -->
<script language="JavaScript">
<!--
var i=0;
var ie=(document.all)?1:0;
var ns=(document.layers)?1:0;
function initStyleElements() /* Styles for Buttons Init */
{
var c = document.pad;
if (ie)
{
//c.text.style.backgroundColor="#DDDDDD";
c.compileIt.style.backgroundColor="#D7D7D7";
c.compileIt.style.cursor="hand";
c.select.style.backgroundColor="#D7D7D7";
c.select.style.cursor="hand";
c.view.style.backgroundColor="#D7D7D7";
c.view.style.cursor="hand";
c.retur.style.backgroundColor="#D7D7D7";
c.retur.style.cursor="hand";
c.clear.style.backgroundColor="#D7D7D7";
c.clear.style.cursor="hand";
}
else return;
}
/* Buttons Enlightment of "Compilation" panel */
function LightOn(what)
{
if (ie) what.style.backgroundColor = '#D7D7D7';
else return;
}
function FocusOn(what)
{
if (ie) what.style.backgroundColor = '#ffffff';
else return;
}
function LightOut(what)
{
if (ie) what.style.backgroundColor = '#ffffff';
else return;
}
function FocusOff(what)
{
if (ie) what.style.backgroundColor = '#ffffff';
else return;
}
/* Buttons Enlightment of "Compilation" panel */
function generate() /* Generation of "Compilation" */
{
code = document.pad.text.value;
if (code)
{
document.pad.text.value='Compilation ...';
setTimeout("compile()",1000);
}
else alert('Placer votre html dans la fenetre')
}
function compile() /* The "Compilation" */
{
document.pad.text.value='';
compilation=escape(code);
document.pad.text.value="<script>\n<!--\ndocument.write(unescape(\""+compilation+"\"));\n//-->\n<\/script>";
i++;
if (i=1) alert("Page html compil?e !");
else alert("Page compiled "+i+" times!");
}
function selectCode() /* Selecting "Compilation" for Copying */
{
if(document.pad.text.value.length>0)
{
document.pad.text.focus();
document.pad.text.select();
}
else alert('Rien à séléctionner !')
}
function preview() /* Preview for the "Compilation" */
{
if(document.pad.text.value.length>0)
{
pr=window.open("","Preview","scrollbars=1,menubar=1,status=1,width=700,height=320,left=50,top=110");
pr.document.write(document.pad.text.value);
}
else alert('Arg!')
}
function uncompile() /* Decompiling a "Compilation" */
{
if (document.pad.text.value.length>0)
{
source=unescape(document.pad.text.value);
document.pad.text.value=""+source+"";
}
else alert('Il n y a rien à compiler !')
}
// -->
</script>
<form method="post" name="pad" align="center">
<p align="center">
<textarea rows="11" name="text" cols="58" style="background-color: rgb(215, 215, 215); color: Black;
font-family: Verdana; font-size: 11px;"></textarea>
<br>
<input type="button" value="Chiffrer" name="compileIt" onclick="generate()" onmouseover="LightOn(this)"
onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
font-size: 11px;">
<input type="button" value="Selection" name="select" onclick="selectCode()" onmouseover="LightOn(this)"
onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
font-size: 11px;">
<input type="button" value="Voir" name="view" onclick="preview()" onmouseover="LightOn(this)"
onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
font-size: 11px;">
<input type="button" value="Source" name="retur" onclick="uncompile()" onmouseover="LightOn(this)"
onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
font-size: 11px;">
<input type="reset" value="Effacer" name="clear" onmouseover="LightOn(this)"
onmouseout="LightOut(this)" style="background-color: rgb(255, 255, 255); color: Black; font-family: Verdana;
font-size: 11px;">
<br>
<font face="Verdana, Arial, Helvetica, sans-serif"
size="1"></font></p>
</form>
<!-- Compilation Panel -->
</html>
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Quand tu pèse sur une touche Afficher SOURCE de la page !!!!! [ par ATH|500| ]
Moi ce que je voudrais savoir c'est comment on fait pour afficher la source d'une page en appuyant sur Exemple wJ'ai essayer ça mais ça marche sauf qu
desactivation du menu "source" [ par djpop ]
Cher Internaute,comme vous le savez peut etre, sous IE6, on a la possibilité de visualiser les codes sources des pages WEB ( dans le menu du navigateu
Code Source Caché [ par Zinodine ]
J'ai déjà vu sur un site que lorsqu'on désire accèder au code source de la page, l'option est grisée c-à-d qu'on ne peut rien afficher. On ne sait mêm
cacher le code source d'1 page web [ par patator51 ]
salut a tous,j'ai un PB, je ne sais pas comment empecher la lecture d'un source ou bloquer l'option "afficher la source" dans IEmerci encorepatator51
code source [ par woofy ]
Voila j'ai télécharger un code source pour faire ejecter le cd-rom. mais je ne sais pas comment ca marche ... je le met dans bloc note et ensuite je l
Caher le code source [ par NHenry ]
Formulaires d'ajout [ par neo1502 ]
neo1502...Salut à tous...J'ai vachement besoin d'aides.J'ai besoin d'un formulaire d'ajout du meme genre que celui de ce site quand vous ajoutez une s
Delai pour validé un code source. [ par samgoa ]
Je viens de poster un code source sur le site. Mais il n'est pas apparu aussitôt. Est-ce normal? y'a t'il un délai? (après vérification)La fonction qu
Voir source en javascript [ par Yuleesize ]
Bjr j'aimerais savoir s'il y a un moyen de voir la source d'un fichier en javascriptMerciI'm The Yuleesize!
cacher le code source [ par morgandetoi06 ]
bonjour, j aimerait savoir comment faire pour cacher le code source de ma page, pour pas qu il soit visible en faisant "affichage > source" sous IE
|
Derniers Blogs
[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA par cyril
Le deuxième keynote du mix fut très riche en contenu. Internet Explorer 9 Juste un après le lancement de Internet Explorer 8, Microsoft a dévoilé les nouveautés de Internet Explorer 9. Désormais, IE supportera HTML5, SVG et CSS3. L'élément ...
Cliquez pour lire la suite de l'article par cyril CERTIFICATIONS BETA .NET 4CERTIFICATIONS BETA .NET 4 par KooKiz
Les inscriptions pour les certifications beta .NET 4 ont commencé. L'inscription est offerte pour les examens suivants : - 71-511, TS: Windows Applications Development with Microsoft .NET Framework 4 - 71-515, TS: Web Applications Development with...
Cliquez pour lire la suite de l'article par KooKiz [MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2[MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2 par redo
J'imagine que la plupart d'entre vous connaissent bien et utilisent le service de traduction de Google, mais connaissez-vous celui de Microsoft . Microsoft Translator ? Effectivement, Microsoft nous annoncé le lancement version 2 de la Technologie Preview...
Cliquez pour lire la suite de l'article par redo LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010!LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010! par MPOWARE
Toutes les vidéos de ce lancement sont en ligne!
Partie I - Intro
http://www.youtube.com/watch?v=LkQzTQ8T6CA
Partie II - Démo 1
http://www.youtube.com/watch?v=drAhYQ7lqvo
Partie III - Démo 2
http://www.youtube.com/watch?v=c8KM_1Gqybc...
Cliquez pour lire la suite de l'article par MPOWARE [WP7] JE NE VEUX PAS D'UN NOUVEL IPHONE[WP7] JE NE VEUX PAS D'UN NOUVEL IPHONE par FREMYCOMPANY
Je pense qu'ils ont besoin d'une piqure de rappel chez Microsoft : c'est bien gentil d'avoir une interface jolie, mais si c'est pour avoir un truc qui ne convainct pas dedans, c'est peine perdue.
---->
Système ouvert ----> Fermé ?
P...
Cliquez pour lire la suite de l'article par FREMYCOMPANY
Logiciels
Xilisoft Convertisseur Vidéo Ultimate (5.1.39.0305)XILISOFT CONVERTISSEUR VIDéO ULTIMATE (5.1.39.0305)Xilisoft Convertisseur Vidéo Ultimate est un outil puissant de conversion vidéo, facile à utilise... Cliquez pour télécharger Xilisoft Convertisseur Vidéo Ultimate Xilisoft DVD Ripper Ultimate (5.0.64.0304)XILISOFT DVD RIPPER ULTIMATE (5.0.64.0304)Xilisoft DVD Ripper Ultimate est un logiciel excellent pour copier et convertir DVD vers presque ... Cliquez pour télécharger Xilisoft DVD Ripper Ultimate Rigs of Rods (63.3)RIGS OF RODS (63.3)c'est un jeu de multi-simulation camions,autobus voitures, avions, bateaux, hélicoptère avec défo... Cliquez pour télécharger Rigs of Rods Konvertor (4.00)KONVERTOR (4.00)Le logiciel est un gestionnaire multimedia affichant, jouant et convertissant plus de 2000 format... Cliquez pour télécharger Konvertor
|