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
TECHDAYS PARIS 2010 : SHAREPOINT 2010 POUR LES DéVELOPPEURSTECHDAYS PARIS 2010 : SHAREPOINT 2010 POUR LES DéVELOPPEURS par ROMELARD Fabrice
Animé par: Laurent Cotton Le développement dans SharePoint 2010 passe par plusieurs axes qui seront évoqués dans cette session, mais plus particulièrement les développements simples lié au besoin Business Business Connectivity Services Ce BCS es...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOURTECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOUR par ROMELARD Fabrice
Cette session est la dernière pleinière de ces 3 jours de TechDays Paris 2010. Généralement, cette troisième journée est plus axée sur l'avenir vu par Microsoft. Après un retour sur l'avenir vu par la Science Fiction ou par ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
|