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
VOTEZ POUR LE TOP 10 DES INFLUENCEURS SHAREPOINT FRANCOPHONES !VOTEZ POUR LE TOP 10 DES INFLUENCEURS SHAREPOINT FRANCOPHONES ! par Patrick Guimonet
Si ce n'est déjà fait (comme plus de 600 personnes déjà), il est encore temps de voter pour le concours TOP 10 des influenceurs SharePoint francophones ! Il est organisé par harmon.ie et accessible ici : http://harmon.ie/top-...
Cliquez pour lire la suite de l'article par Patrick Guimonet [CONF'SHAREPOINT] DERNIER RAPPEL ! :-)[CONF'SHAREPOINT] DERNIER RAPPEL ! :-) par Patrick Guimonet
La Conf'SharePoint en chiffres c'est : 3 jours de SharePoint ! 4 parcours et 60 sessions 17 partenaires représentant toutes les fac...
Cliquez pour lire la suite de l'article par Patrick Guimonet [ #SHAREPOINT 2013 ] LES MODèLES DE SITES STANDARDS.[ #SHAREPOINT 2013 ] LES MODèLES DE SITES STANDARDS. par Patrick Guimonet
C'est un point peu mis en avant mais SharePoint 2013 a été l'occasion de remettre de l'ordre dans les modèles de sites. Tout d'abord, un certain nombre de modèles ont été tout simplement rendus obsolètes (cf. Fonctionnalités déco...
Cliquez pour lire la suite de l'article par Patrick Guimonet 10 ERREURS DE COMPRéHENSION CONCERNANT SHAREPOINT.10 ERREURS DE COMPRéHENSION CONCERNANT SHAREPOINT. par Patrick Guimonet
Une excellente infographie (qui a sa source ici :http://www.evokeit.com/sharepoint-blog/misconceptions-of-microsoft-sharepoint) que j'ai traduite et commentée sur le blog d'Abalon : http://abalon.fr/blog/10-erreurs-de-comprhension-...
Cliquez pour lire la suite de l'article par Patrick Guimonet
Logiciels
Nego Facturation (1.84)NEGO FACTURATION (1.84)Nego Facturation est un logiciel complet qui permet de gérer vos factures et devis très simplemen... Cliquez pour télécharger Nego Facturation Revealer Keylogger Free (2.07)REVEALER KEYLOGGER FREE (2.07)Keylogger invisible et gratuit pour Windows 8, 7, Vista ou XP. Revealer Keylogger Free vous perme... Cliquez pour télécharger Revealer Keylogger Free Devis-Factures PHMSD (2.1.0.1)DEVIS-FACTURES PHMSD (2.1.0.1)Configuration minimale
Nécessite Windows™ 2000, XP, Windows 7, 8, Vista (Service Pack à... Cliquez pour télécharger Devis-Factures PHMSD Ludoprêt (3.2)LUDOPRêT (3.2)Logiciel gratuit de gestion de ludothèque.
Gestion des jeux et des adhérents.
Gestion des for... Cliquez pour télécharger Ludoprêt 974 Application Server (13.2.1.3)974 APPLICATION SERVER (13.2.1.3)Ecommerce, Blogueur, Vitrine, Newsletter, Java IDE, ..., in the cloud et sous haute dispo. Facile... Cliquez pour télécharger 974 Application Server
|