Annonce

Réduire
Aucune annonce.

Enigme cryptologie:

Réduire
X
 
  • Filtre
  • Heure
  • Afficher
Tout nettoyer
nouveaux messages

  • Enigme cryptologie:

    Je suis actuellement entrain d'essayer de résoudre une énigme, la voici :

    ------------------------------------------------------------------------------------------------------------------------
    Vigenere
    gdhh://h.saytb.qgl/mxD7EvC.hmq

    You are going to need luck to have any hope of winning this monstrosity of a raffle. Seven days. Seven. SEVEN. JESUS.

    It's also worth noting that, if you ever get stuck, you're probably not looking in the right place. All portions are solvable.
    ------------------------------------------------------------------------------------------------------------------------

    j'ai déjà réussi à résoudre la première partie, avec l'url, mais après je sèche...
    L'url décodé: http://i.imgur.com/cjL7FlO.png

    J'arrive sur une image, mais comment la décoder, pfff...

    Merci de votre aide !

  • #2
    J'avais mal lu, j'ai répondu pour la première partie mais en fait c'est bon...
    Pour l'image, utilise des logiciels de stenographie ? Vas y au pif ^^
    Dernière modification par Earthquake, 09 octobre 2016, 21h54.

    Commentaire


    • #3
      T'en a pas a me proposer?

      Commentaire


      • #4
        --> www.caesum.com/handbook/Stegsolve.jar
        deux et deux font cinq

        Commentaire


        • #5
          Voici la solution, j'ai un peu galérer.

          En premier lieu

          Vigenere
          gdhh://h.saytb.qgl/mxD7EvC.hmq

          You are going to need luck to have any hope of winning this monstrosity of a raffle. Seven days. Seven. SEVEN. JESUS.

          It's also worth noting that, if you ever get stuck, you're probably not looking in the right place. All portions are solvable.

          Il s'agit d'un chiffrement Vegenere dont la clé est : ZKOS

          On tombe sur cette image : https://i.imgur.com/cjL7FlO.png

          Qui est une image transformer par stenographie. Ensuite, on arrive sur du cryptage stegano en LSB 8 bit. Pas d'info sur l'EXIF, ni sur les Propriétés, ni sur les DATA. Donc, si il y a info il faut reconstituer l'image caché, car j'ai tiré le texte il est incompréhensible. Je bute ici, donc au même point que toi. Si je trouve ou quelqu'un de calé sur LSB se sent l'âme de tenter le coup. SVP pas besoin de refaire un cours sur le LSB, juste trouvé une soluce merci .

          Commentaire


          • #6
            Mcminecraft110

            est ce que tu peux nous expliquer ton "code" ?

            Code:
             
             window.onload = function() { 	var canvas = document.getElementById('game'); 	if(!canvas) 	{ 		alert("Impossible de récupérer le canvas."); 		return; 	} 	 	var context = canvas.getContext('2d'); 	if(!context) 	{ 		alert("Impossible de récupérer le contexte du canvas."); 		return;		 	} 	 	var img = new Image(); 	img.src = "noise.png"; 	 	var size = 250000; 	var data = new Float32Array(size); 	var pxlData = new Array(size);   	for ( var i = 0; i < size; i ++ ) {         data[i] = 0     } 	 	for (var i = 0; i < size; i++)  	{ 		pxlData[i] = new Array(4); 		pxlData[i][0] = 0; 		pxlData[i][1] = 0; 		pxlData[i][2] = 0; 	} 	 	img.onload = function()  	{ 		context.drawImage(img, 0, 0); 		 		var imgd = context.getImageData(0, 0, 500, 500); 	 		context.clearRect(0, 0, canvas.width, canvas.height); 		 		var pix = imgd.data;  		var j=0; 		var x=0; 		var y=0; 		var i=0; 		 		for (var i = 0, n = pix.length; i < n; i += (4)) { 			var all = pix[i]+pix[i+1]+pix[i+2]; 			 			pxlData[j][0] = pix[i]; 			pxlData[j][1] = pix[i+1]; 			pxlData[j][2] = pix[i+2]; 			pxlData[j][3] = pix[i+3]; 			 			data[j++] = all/3; 		}		 		 		var alpha; 		 		for(y = 0; y < 500; y++) 		{ 			for(x = 0; x < 500; x++) 			{ 				if(data[x * y] <= 100){ 					context.fillStyle = "blue"; 				}else if(data[x * y] >= 100){ 					context.fillStyle = "green"; 				} 				//context.fillStyle = 'rgba('+ data[x * y] +', '+ data[x * y] +', '+ data[x * y] +', 1)'; 				context.fillRect(x, y, 1, 1); 				 				// context.fillStyle = 'rgba('+ pxlData[x * y][0] +', '+ pxlData[x * y][1] +', '+ pxlData[x * y][2] +', '+ pxlData[x * y][3] +')'; 				// context.fillRect(x, y, 1, 1); 			} 		} 	}; 	  }
            Code HTML:
              <!DOCTYPE html> 	<html> 		<head> 			<link rel="stylesheet" href="style.css" type="text/css">  			<script type="text/javascript" src="game.js"></script> 			<title>Génération de terrain</title> 		</head> 		<body> 			<canvas id="game" width="500" height ="500">Votre navigateur ne supporte pas les canvas.</canvas> 		</body> 	</html>
            source: http://stackoverflow.com/questions/3...o-an-heightmap

            en réalité la source du code vient d'ici:

            http://deptinfo.unice.fr/~renevier/w...as%20HTML5.pdf

            le challenge il vient d'ou ??? c'est toi ? ta generé un noise avec un canvas ?... est ce que réellement il y a quelques choses a trouver ?

            je me méfie des images, surtout quand la personne qui propose le challenge ne se présente pas

            http://www.ehackingnews.com/2011/11/...peg-image.html

            http://blog.trendmicro.com/trendlabs...nd-cc-traffic/

            https://blogs.technet.microsoft.com/...ng-by-numbers/

            http://blogs.cisco.com/security/talo...er-net-malware

            on est jamais trop prudent


            site interéssant sur la cryptography :

            http://www.datagenetics.com/blog/november32013/

            Commentaire


            • #7
              Dans mon precedent commentaire le dernier lien est vraiment utile, j'ai cherché a reproduire le même effet de superpositions des images et ca c'est avéré payant


              En utilisant la tecchnique magic eyes j'ai pu découvrir le lien caché

              étape 1:

              http://www.hostingpics.net/viewer.ph...32738chal1.png

              étape 2 (manuellement, image par image) :

              http://www.hostingpics.net/viewer.ph...51010chal2.png

              Bingo !

              Maintenant la suite avec une autre image, elle représente le buste en marbre de l'empereur Hadrian, je pense qu'il y a encore quelques choses de caché, si vous avez des pistes n’hésitez pas.

              soyez prudent, ouvrez les images sur une machine virtuelle, on sait jamais...



              Commentaire


              • #8
                Pour le moment rien de bien interessant, je check:

                Code:
                [email protected]:~/Bureau# identify -verbose 08PCLqB.png
                Image: 08PCLqB.png
                  Format: PNG (Portable Network Graphics)
                  Mime type: image/png
                  Class: DirectClass
                  Geometry: 312x312+0+0
                  Units: Undefined
                  Type: TrueColor
                  Endianess: Undefined
                  Colorspace: sRGB
                  Depth: 8-bit
                  Channel depth:
                    red: 8-bit
                    green: 8-bit
                    blue: 8-bit
                  Channel statistics:
                    Pixels: 97344
                    Red:
                      min: 2 (0.00784314)
                      max: 255 (1)
                      mean: 133.614 (0.523975)
                      standard deviation: 69.6918 (0.273301)
                      kurtosis: -1.58999
                      skewness: 0.19625
                    Green:
                      min: 0 (0)
                      max: 255 (1)
                      mean: 148.155 (0.580999)
                      standard deviation: 56.1647 (0.220254)
                      kurtosis: -0.808673
                      skewness: 0.16661
                    Blue:
                      min: 0 (0)
                      max: 255 (1)
                      mean: 136.354 (0.534723)
                      standard deviation: 49.0721 (0.19244)
                      kurtosis: 0.496274
                      skewness: -0.240429
                  Image statistics:
                    Overall:
                      min: 0 (0)
                      max: 255 (1)
                      mean: 139.374 (0.546566)
                      standard deviation: 58.9336 (0.231112)
                      kurtosis: -0.851371
                      skewness: 0.0738274
                  Rendering intent: Perceptual
                  Gamma: 0.454545
                  Chromaticity:
                    red primary: (0.64,0.33)
                    green primary: (0.3,0.6)
                    blue primary: (0.15,0.06)
                    white point: (0.3127,0.329)
                  Background color: white
                  Border color: srgb(223,223,223)
                  Matte color: grey74
                  Transparent color: black
                  Interlace: None
                  Intensity: Undefined
                  Compose: Over
                  Page geometry: 312x312+0+0
                  Dispose: Undefined
                  Iterations: 0
                  Compression: Zip
                  Orientation: Undefined
                  Properties:
                    date:create: 2016-10-11T00:10:48+02:00
                    date:modify: 2016-10-11T00:10:48+02:00
                    png:IHDR.bit-depth-orig: 8
                    png:IHDR.bit_depth: 8
                    png:IHDR.color-type-orig: 2
                    png:IHDR.color_type: 2 (Truecolor)
                    png:IHDR.interlace_method: 0 (Not interlaced)
                    png:IHDR.width,height: 312, 312
                    png:sRGB: intent=0 (Perceptual Intent)
                    signature: 25e48eed7dab82c7e875a9af1d55f1d4f85b3aac8960fd30ea182559fe3d5b62
                  Artifacts:
                    filename: 08PCLqB.png
                    verbose: true
                  Tainted: False
                  Filesize: 135KB
                  Number pixels: 97.3K
                  Pixels per second: 9.734MB
                  User time: 0.010u
                  Elapsed time: 0:01.010
                  Version: ImageMagick 6.8.9-9 Q16 x86_64 2016-06-29 http://www.imagemagick.org

                Dernière modification par pl3x, 11 octobre 2016, 22h29.

                Commentaire


                • #9
                  Merci beaucoup pour toutes ces réponses.
                  Je continue sur cette piste.
                  Je vous tiens au courant.
                  Il ne me reste malheureusement que 1 jour pour y répondre avant l'expiration.

                  Commentaire


                  • #10
                    Je suis vraiment planté la...
                    Bon je continue a chercher

                    Commentaire

                    Chargement...
                    X