mod-x: Mission 2

Hi,

komme nicht weiter.. Die Mission 1 bei Mod-X war sehr leicht.... Die zwei allerdings nicht... Es steht ich solle folgendes entschlüsseln:

Code:
7*,*).9



@-0*>D14(&1D2&(-.3*A84+9<&7*A2NHWTXTKYA<NSIT\XA(ZWWJSY;JWXNTSA7ZSB

(TSYWTQ"(AA<NSIT\XAA)JGZLAA(TSYWTQJ]J

Aber ich krieg das nicht hin... Das ganze war in einer the_FILE.zip und heisst the_FILE.enc

Gruss
PMTheQuick ;)
 
Will mal nicht hoffen, dass es sich um dieses "Mod-X" handelt :

Original von http://www.mod-x.co.uk/rules.html :

4. Cheating

Mod-X is a single player game...if you help another agent or recieve help - you are cheating.

Every agent should earn their place on Mod-X, and we often help agents on the forums or over email when they are in great difficulties...so there is no need to cheat.
Purer CipherText ohne weitere Informationen lässt sich nicht entschlüsseln.
 
Hier eine Information:

Code:
 I don't know why I am doing this...

Your clue is: "Maybe research what ASCII is, and how shifts/shifting encryptions work...perhaps you could then write a program to help you :)"

Äh doch... Aber ein Thread unten auf dieser Seite ist auch mod-x....

Gruss
pmthequick ;)
 
"shift", "shifting" heisst "verschieben".

Beispiel : "merker" verschoben nach rechts um drei wird "phunhu".

Such im Internet mal nach "cesar-cypher". :-)
 
Nimm Dir jetzt mal aus dem CiperText diese Zeichenfolge : "2NHWTXTKY" und schreibe sie auf ein Blatt Papier.

Nimm Dir eine ASCII-Tabelle und verschiebe die Zeichenfolge so lange nach rechts bis etwas "lesbares" herauskommt.

Sorry, aber diese Arbeit musst Du Dir schon machen. :-)
 
Hier mal mein aktueller Status:

EDIT: Code gelöscht!


Habs geschafft... Ein kleines Progrämmchen gecodet, konsolenbasis, muss man nur solange auf Enter (im programm weiter) drücken bsi man es hat... Nur Check ich nicht was ich damit machen muss... Hab gar keinen solche eintrag, dieses proggi hab ich auch nicht :( Ja halt! Das ist eine .reg Datei!

Gruss
PMTheQuick ;)
 
Klasse !

Irgendwo habe ich mal gelesen, dass sich "Arbeit wieder lohnt". :-)

Lösche jetzt den PlainText aus Deinem Posting, weil Du sonst gegen die Regeln verstösst.
 
Das muss doch aus der Aufgabenstellung hervorgehen.

Zumindest wenn Du diese .reg "startest", dann hast Du den besagten Eintrag in Deiner Registry, so dass das besagte Programm bei jedem Neustart des Rechners via "Run" gestartet wird.

Auf meiner Festplatte gibt es das besagte Programm auch nicht.
 
Hier ein Ausschnitt:

Code:
A file has been found on the system that is not our own. All we can think of is that this is some kind of installation file the hacker used to speed up his job while he was in our system. We have examined the file, but there appears to be a form of encryption used. I know this is your speciality, so we have assigned you the task of breaking the encryption. Once broken, if you find the location of any other files put on the system include the full location (in standard Windows format) in your mission conclusion.

Good luck PMTheQuick.

Ich check das irgendwie nicht... ?(

Gruss
PMTheQuick 8)
 
Original von PMTheQuick
Hier ein Ausschnitt:

Code:
A file has been found on the system that is not our own. All we can think of is that this is some kind of installation file the hacker used to speed up his job while he was in our system. We have examined the file, but there appears to be a form of encryption used. I know this is your speciality, so we have assigned you the task of breaking the encryption. Once broken, if you find the location of any other files put on the system include the full location (in standard Windows format) in your mission conclusion.

Good luck PMTheQuick.

Ich check das irgendwie nicht... ?(

Gruss
PMTheQuick 8)

Du sollst den Pfad der Datei angeben(steht im entschlüsselten Text). Hackits sind aber eigentlich nicht dafür gedacht, derart ausführlich besprochen zu werden.
 
Ich hab mal auf die schnelle ein Cäser chiffre Programm geschriben das eine Verschiebung bis 255 Zeichen anzeigt

Code:
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
	char crypt[250];
	int key=256;
	char temp;
	cout<<"Geben sie die Verschluesselte Zeichenfolge ein: "<<endl;
	cin>>crypt;
	while(key>0)
	{
		cout<<"Schluessel "<<setw(3)<<key<<": ";
		for(int i=0;i<strlen(crypt);i++)
		{
			temp=crypt[i]+key;
			cout<<temp;
		}
		cout<<endl;
		key--;
	}
}
 
Ich sag dir was : Hör auf weiter mod-x zu spielen.
Das ist gafür gemacht damit man es alleine schafft.
Ich bin auch im Level 6 und komm nicht weiter. Troztdem solltest du alleine denken und alleine arbeiten. und nicht hier im Internet lösungen suchen !!
Wenn du willst ich kann dir per MP schicken wir du bis 6level kommst, das bringt dir aber nix, nix nix... X( X(

Mod.x ist das beste hackit das es im internet gibt. also machen wir es nicht kapputt. sie arbeiten schon viel. und jetzt gibts auch das OmegaProject.


hör auf so was zu tun sonst kommst nicht bis zu Level 4 ;(

und noch mal :

Original von http://www.mod-x.co.uk/rules.html :

4. Cheating

Mod-X is a single player game...if you help another agent or recieve help - you are cheating.

Every agent should earn their place on Mod-X, and we often help agents on the forums or over email when they are in great difficulties...so there is no need to cheat.
 
Zurück
Oben