Stefan Löbrich: Nochmal wegen Passwort

Moin zusammen,

hat jemand Level 12 gerafft? Ich versteh nicht was da vorgeht und komme da nicht weiter, helft mir mal auf die Sprünge! Bitte, bitte!

http://www.hannover.ionichost.com/

  1. hat jemand Level 12 gerafft? Ich versteh nicht was da vorgeht und komme da nicht weiter, helft mir mal auf die Sprünge! Bitte, bitte!

    http://www.hannover.ionichost.com/

    Wenn ich mich richtig entsinne, dann ist es 2161. Du verdirbst Dir
    damit zwar den Spaß am Selbstlösen des Levels, aber das nächste ist
    ja auch noch schwierig genug, viel Spaß dann dabei, ganz alleine ;-)

    1. Hi

      bei der 13 hab ich mal die classe decompiliert:

      // Decompiled by DJ v3.5.5.77 Copyright 2003 Atanas Neshkov  Date: 27.05.2003 14:22:52
      // Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
      // Decompiler options: packimports(3)
      // Source File Name:   Pwd.java

      import java.applet.Applet;
      import java.applet.AppletContext;
      import java.awt.*;
      import java.awt.event.ActionEvent;
      import java.awt.event.ActionListener;
      import java.io.PrintStream;
      import java.net.URL;

      public class Pwd extends Applet
          implements Runnable, ActionListener
      {

      public Pwd()
          {
              l = new Label("Passwort");
              tf = new TextField();
              li = new Button("Enter");
              p = "event.Action";
          }

      public void actionPerformed(ActionEvent actionevent)
          {
              try
              {
                  if(p.equals(tf.getText()))
                      getAppletContext().showDocument(new URL(getDocumentBase(), p + ".htm"), "_self");
                  else
                      getAppletContext().showDocument(new URL(getDocumentBase(), "button.htm"), "_self");
              }
              catch(Exception exception)
              {
                  System.out.println(exception);
              }
          }

      public void init()
          {
              Panel panel = new Panel();
              setForeground(Color.black);
              panel.setLayout(new BorderLayout(10, 10));
              panel.setSize(200, 25);
              panel.setLocation(0, 3);
              panel.add(l, "West");
              panel.add(tf, "Center");
              setLayout(null);
              add(panel);
              li.setSize(100, 25);
              li.setLocation(50, 70);
              add(li);
              li.addActionListener(this);
          }

      public void run()
          {
          }

      public void start()
          {
              if(th == null)
              {
                  th = new Thread(this);
                  th.start();
              }
          }

      public void stop()
          {
              if(th != null)
              {
                  th.interrupt();
                  th = null;
              }
          }

      private Label l;
          private TextField tf;
          private Button li;
          private Thread th;
          private String p;
      }

      Vielleicht hilft Dirs ja

      Gruß Christoph

      --
      Ich bin ein spezialisz!
      (Zitat von VENGA JO)
      sh:) fo:) rl:° br:& ie:| mo:) va:) fl:) ss:| ls:< js:|
      Die Erklärung zum Selfcode findest du hier: http://emmanuel.dammerer.at/selfcode.html
      Einen Decoder für den Selfcode findest du hier: http://peter.in-berlin.de/projekte/selfcode
  2. Hi

    ich komm beim Level Matrix nicht weiter.

    Ich weiss das das Passwort und der Username in diesem String verschlüsselt wurde aber dann bleib ich auch schon stecken :(

    Weiss jemand Rat?

    Gruß Christoph

    --
    Ich bin ein spezialisz!
    (Zitat von VENGA JO)
    sh:) fo:) rl:° br:& ie:| mo:) va:) fl:) ss:| ls:< js:|
    Die Erklärung zum Selfcode findest du hier: http://emmanuel.dammerer.at/selfcode.html
    Einen Decoder für den Selfcode findest du hier: http://peter.in-berlin.de/projekte/selfcode