Computer Science Canada

Try 2 Hack!

Author:  Triple Five [ Fri Dec 19, 2003 12:23 pm ]
Post subject:  Try 2 Hack!

go to

http://www.try2hack.nl/

i got to level 2 Very Happy

just learning


can anyone link me to a tutorial

thanks Very Happy

Author:  Mazer [ Sun Dec 28, 2003 3:02 pm ]
Post subject: 

lol, yeah level 1 was like SO hard Wink
i'm just kidding... this looks really interesting, thanks for sharing

Author:  Thuged_Out_G [ Sun Dec 28, 2003 3:24 pm ]
Post subject: 

i made it to level 5(or maybe it was 4)
i stopped when i had to download a java class, decompile it and find the password lol....i did decompile it, but i dont know java so i couldnt find the pw or username lol

if anyone wants ill post solutions for the first 5(not answers, but how to get them)

Author:  Tony [ Sun Dec 28, 2003 3:36 pm ]
Post subject: 

well for lvl one you just look at the source code for the HTML page - password is in the if statment.

For level two - password is hidden in a comment of javascript, but username has me puzzled Confused

Author:  Amailer [ Sun Dec 28, 2003 4:42 pm ]
Post subject: 

code:

 <script language="JavaScript">
      <!--
      passwd="ItIsSoEasy";
      function disable_right_click(e) {
        var browser = navigator.appName.substring ( 0, 9 );
        var event_number = 0;
        if (browser=="Microsoft")
          event_number = event.button;
        else
          event_number = e.which;
        if ( event_number==2 || event_number==3 || event_number==4) {
          alert ("Right/middle mousebutton is disabled");
          return (false);
        }
        return (true);
      }
      function check_mousekey () {
        var mouse_key = 93;
        var keycode = event.keyCode;
        if ( keycode == mouse_key )
          alert ( "Mouse Key Is Disabled" );
      }
      function trap_page_mouse_key_events () {
        var browser = navigator.appName.substring ( 0, 9 );
        document.onmousedown = disable_right_click;
        if ( browser == "Microsoft" )
          document.onkeydown = check_mousekey;
        else
          document.captureEvents( Event.MOUSEDOWN );
      }
      window.onload = trap_page_mouse_key_events;
      //-->
    </script>


What's the user name?

Author:  strife_8 [ Sun Dec 28, 2003 6:40 pm ]
Post subject: 

for level 2 the html code wont help, the password that it shows there is a decoy. I know that the answer is somewhere in the temp folder but i dont know where...

Author:  Amailer [ Sun Dec 28, 2003 7:07 pm ]
Post subject: 

Doesn't it need to use some script ( the flash ) for it to work?? or can you actually make a login script in flash?

Author:  Amailer [ Sun Dec 28, 2003 7:39 pm ]
Post subject: 

eh here guys im smart
if (txtUsername == "try2hack" && txtPassword == "irtehh4x0r!")

Author:  Amailer [ Sun Dec 28, 2003 7:57 pm ]
Post subject: 

so simple im at lvl 4

Author:  Thuged_Out_G [ Sun Dec 28, 2003 8:19 pm ]
Post subject: 

for level 2, you need to go to the temporary internet folder, and find the flash file....copy it somewhere, and open it in a text editor.

level three i think is the prompt question...i think i just pressed cancel and then stop quickly...then i think it was in the source, you gotta open the file called JavaScript

Author:  Amailer [ Sun Dec 28, 2003 9:14 pm ]
Post subject: 

http://www.try2hack.nl/levels/level4-kdnvxs.xhtml
level 4 is anoying, where can i get the PasswdLevel4.java?

Author:  Thuged_Out_G [ Sun Dec 28, 2003 10:41 pm ]
Post subject: 

http://www.try2hack.nl/levels/PasswdLevel4.class

good luck with that, youll have to get a java decompiler...i found the username & password in the program...i looked, and couldnt find it Confused

Author:  Amailer [ Sun Dec 28, 2003 10:58 pm ]
Post subject: 

thats .class there is nothing there, just how the loging in takes place

Author:  santabruzer [ Mon Dec 29, 2003 12:30 am ]
Post subject: 

don't know java.. but the decompiled is:
code:

// Source File Name:   PasswdLevel4.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.*;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.EventObject;

public class PasswdLevel4 extends Applet
    implements ActionListener
{

    public PasswdLevel4()
    {
        inuser = new String[22];
        totno = 0;
        countConn = null;
        countData = null;
        inURL = null;
        txtlogin = new TextField();
        label1 = new Label();
        label2 = new Label();
        label3 = new Label();
        txtpass = new TextField();
        lblstatus = new Label();
        ButOk = new Button();
        ButReset = new Button();
        lbltitle = new Label();
    }

    void ButOk_ActionPerformed(ActionEvent actionevent)
    {
        boolean flag = false;
        for(int i = 1; i <= totno / 2; i++)
            if(txtlogin.getText().trim().toUpperCase().intern() == inuser[2 * (i - 1) + 2].trim().toUpperCase().intern() && txtpass.getText().trim().toUpperCase().intern() == inuser[2 * (i - 1) + 3].trim().toUpperCase().intern())
            {
                lblstatus.setText("Login Success, Loading..");
                flag = true;
                String s = inuser[1].trim().intern();
                String s1 = getParameter("targetframe");
                if(s1 == null)
                    s1 = "_self";
                try
                {
                    finalurl = new URL(getCodeBase(), s);
                }
                catch(MalformedURLException _ex)
                {
                    lblstatus.setText("Bad URL");
                }
                getAppletContext().showDocument(finalurl, s1);
            }

        if(!flag)
            lblstatus.setText("Invaild Login or Password");
    }

    void ButReset_ActionPerformed(ActionEvent actionevent)
    {
        txtlogin.setText("");
        txtpass.setText("");
    }

    public void actionPerformed(ActionEvent actionevent)
    {
        Object obj = actionevent.getSource();
        if(obj == ButOk)
        {
            ButOk_ActionPerformed(actionevent);
            return;
        }
        if(obj == ButReset)
            ButReset_ActionPerformed(actionevent);
    }

    public void destroy()
    {
        ButOk.setEnabled(false);
        ButReset.setEnabled(false);
        txtlogin.setVisible(false);
        txtpass.setVisible(false);
    }

    public void inFile()
    {
        new StringBuffer();
        try
        {
            countConn = inURL.openStream();
            countData = new BufferedReader(new InputStreamReader(countConn));
            String s;
            while((s = countData.readLine()) != null)
                if(totno < 21)
                {
                    totno = totno + 1;
                    inuser[totno] = s;
                    s = "";
                } else
                {
                    lblstatus.setText("Cannot Exceed 10 users, Applet fail start!");
                    destroy();
                }
        }
        catch(IOException ioexception)
        {
            getAppletContext().showStatus("IO Error:" + ioexception.getMessage());
        }
        try
        {
            countConn.close();
            countData.close();
            return;
        }
        catch(IOException ioexception1)
        {
            getAppletContext().showStatus("IO Error:" + ioexception1.getMessage());
        }
    }

    public void init()
    {
        setLayout(null);
        setSize(361, 191);
        add(txtlogin);
        txtlogin.setBounds(156, 72, 132, 24);
        label1.setText("Please Enter Login Name & Password");
        label1.setAlignment(1);
        add(label1);
        label1.setFont(new Font("Dialog", 1, 12));
        label1.setBounds(41, 36, 280, 24);
        label2.setText("Login");
        add(label2);
        label2.setFont(new Font("Dialog", 1, 12));
        label2.setBounds(75, 72, 36, 24);
        label3.setText("Password");
        add(label3);
        add(txtpass);
        txtpass.setEchoChar('*');
        txtpass.setBounds(156, 108, 132, 24);
        lblstatus.setAlignment(1);
        label3.setFont(new Font("Dialog", 1, 12));
        label3.setBounds(75, 108, 57, 21);
        add(lblstatus);
        lblstatus.setFont(new Font("Dialog", 1, 12));
        lblstatus.setBounds(14, 132, 344, 24);
        ButOk.setLabel("OK");
        add(ButOk);
        ButOk.setFont(new Font("Dialog", 1, 12));
        ButOk.setBounds(105, 156, 59, 23);
        ButReset.setLabel("Reset");
        add(ButReset);
        ButReset.setFont(new Font("Dialog", 1, 12));
        ButReset.setBounds(204, 156, 59, 23);
        lbltitle.setAlignment(1);
        add(lbltitle);
        lbltitle.setFont(new Font("Dialog", 1, 12));
        lbltitle.setBounds(12, 14, 336, 24);
        String s = getParameter("title");
        lbltitle.setText(s);
        ButOk.addActionListener(this);
        ButReset.addActionListener(this);
        infile = new String("level4");
        try
        {
            inURL = new URL(getCodeBase(), infile);
        }
        catch(MalformedURLException _ex)
        {
            getAppletContext().showStatus("Bad Counter URL:" + inURL);
        }
        inFile();
    }

    private URL finalurl;
    String infile;
    String inuser[];
    int totno;
    InputStream countConn;
    BufferedReader countData;
    URL inURL;
    TextField txtlogin;
    Label label1;
    Label label2;
    Label label3;
    TextField txtpass;
    Label lblstatus;
    Button ButOk;
    Button ButReset;
    Label lbltitle;
}

Author:  Amailer [ Mon Dec 29, 2003 4:36 pm ]
Post subject: 

isn't that the .class file?..not .java

Author:  Homer_simpson [ Mon Dec 29, 2003 8:01 pm ]
Post subject: 

http://www.try2hack.nl/levels/level2-xfdgnh.xhtml
on (release) {
if ((txtUsername == "try2hack") and (txtPassword == "irtehh4x0r!")) {
getURL ("level3-.xhtml", "_self");
}
}


http://www.try2hack.nl/levels/level3-.xhtml
look in the source
u'll find http://www.try2hack.nl/levels/JavaScript

http://www.try2hack.nl/levels/level4-kdnvxs.xhtml

just got to lvl 4 =)

Author:  Homer_simpson [ Mon Dec 29, 2003 8:16 pm ]
Post subject: 

level 4 was easy enough...
goto http://www.try2hack.nl/levels/level4 =)


edit:


some crazy shit...!
/levels/level6-kdsvbd.xhtml
/levels/level7-xfkohc.php

Author:  Amailer [ Wed Dec 31, 2003 12:58 pm ]
Post subject: 

try the hacker test
http://www.elfqrin.com/hack/hackertest.html

Author:  shorthair [ Fri Jan 02, 2004 10:13 am ]
Post subject: 

My Dad Made it to level 8 , Found out there was no level 9 , it hasent been made yet

Author:  Tony [ Fri Jan 02, 2004 2:24 pm ]
Post subject: 

shorthair wrote:
Found out there was no level 9


what? Level 9 has been made for a while now... The goal of lvl9 is to gain moderator status in the IRC channel. It has something to do with exploiting the bot.

Author:  octopi [ Fri Jan 02, 2004 2:30 pm ]
Post subject: 

Acctually, I also made it to the end of level 8, and level nine is down right now. They say its "out of order"

Author:  Amailer [ Fri Jan 02, 2004 3:04 pm ]
Post subject: 

How did you guys get pass lvl 4?

Author:  octopi [ Fri Jan 02, 2004 3:08 pm ]
Post subject: 

Decompiled the java, looked at it, and realized wtf they are trying to do, and the read the data from where they've 'hidden' it.

Try looking for the word infile

Author:  Amailer [ Fri Jan 02, 2004 3:54 pm ]
Post subject: 

another one,
http://scifi.pages.at/hackits/

Author:  Triple Five [ Tue Jan 27, 2004 5:12 pm ]
Post subject: 

how do u view the source for lv 5 in VB Question for try2hack.nl


+33bits for 1st one to tell me Very Happy

Author:  Mazer [ Tue Jan 27, 2004 6:22 pm ]
Post subject: 

Can't tell you, that's called "cheating." Although you might be able to see something by either decompiling the program or trying to open it in notepad.

Anyways, has anybody gotten past level 8 for http://scifi.pages.at/hackits/ ?
It asks for a password, but based on the script I just need to find the link to the next challenge. And unfortunately, the next one doesn't seem to be "number9.htm"

Author:  Cervantes [ Tue Jan 27, 2004 6:44 pm ]
Post subject: 

I'm with you tony... Username on level 2 stumped me Confused

Author:  santabruzer [ Tue Jan 27, 2004 6:59 pm ]
Post subject: 

lvl 5 killed me Sad.... and i finished Try2Hack... just like as i'm making this post Razz

Author:  Cervantes [ Tue Jan 27, 2004 7:15 pm ]
Post subject: 

man I can't get past lvl 2 on either http://scifi.pages.at/hackits/ or try2hack...

help! Confused

Author:  shorthair [ Tue Jan 27, 2004 7:19 pm ]
Post subject: 

Made 8 , there is no 9 , we had this discussion before , my dad taught me how to do it all

Author:  Mazer [ Tue Jan 27, 2004 7:49 pm ]
Post subject: 

shorthair > If you were talking to me, I was talking about a different challenge, this one goes up to 16, and getting to level 8 is really a pain.

Cervantes > Level 2 isn't actually that bad. It's the same logic pretty much as level 1, the only problem it poses is if you're on Internet Explorer or Netscape Navigator in which case you can't right-click on the page to view source. Although, you can still use the button on your keyboard, or go to view->source

Author:  Cervantes [ Tue Jan 27, 2004 7:54 pm ]
Post subject: 

blargh I already figured out how to view the source but on lvl 2 that didn't help me... Is the usrname and pword in the source?? (for lvl 2)

Author:  Mazer [ Tue Jan 27, 2004 7:55 pm ]
Post subject: 

Oh, you mean try2hack? I didn't want to take the time to find the username, so I just gave up on it Razz .
I was talking about the hackits one.

Author:  Cervantes [ Tue Jan 27, 2004 8:00 pm ]
Post subject: 

yeah I did mean try2hack but I couldn't get past lvl 2 on the other one either Razz

Author:  Tony [ Tue Jan 27, 2004 8:04 pm ]
Post subject: 

lvl2 Confused is that the flash one? You got to get the flash file from the temp folder and open it in any text editor... its there somewhere

Author:  Cervantes [ Tue Jan 27, 2004 8:05 pm ]
Post subject: 

hhmmm still can't do it... (hackits)

How do you (in internet Explorer) view the source code when that applet thingy is up? what I've been doing is going okay then letting it say access denied then doing vIew --> source

Author:  shorthair [ Tue Jan 27, 2004 8:28 pm ]
Post subject: 

i thought try to hack was hard , this one is just insane

Author:  Cervantes [ Tue Jan 27, 2004 8:39 pm ]
Post subject: 

whats "this one"

tony -> lvl 2 on try2hack is the one with the blue gradient boxes where you must enter username and password

Author:  shorthair [ Tue Jan 27, 2004 8:40 pm ]
Post subject: 

The one that has 16 levels , to lazy to go to the main page , i jsut clicked the link , its pretty hard , i got 2 level 3 but i think im gonna give up

Author:  Cervantes [ Tue Jan 27, 2004 8:45 pm ]
Post subject: 

thats the hackits one

how'd you do lvl 2 on that one? Confused

Author:  shorthair [ Tue Jan 27, 2004 8:47 pm ]
Post subject: 

* Shorthair bows in shame , my daddy did it for me *, i dont wanna ruin it , it says no cheating in the rules , iafter he did it , i found that it was quite easy after you figure the first step , but i would of never thought of it

Author:  Cervantes [ Tue Jan 27, 2004 8:49 pm ]
Post subject: 

PM me then Confused

Author:  Mazer [ Tue Jan 27, 2004 8:57 pm ]
Post subject: 

Don't give up on hackits, I like that one! Razz
The hardest part is finding a way to view the page's source. Just try everything you can to find it, and if you give up go download Mozilla Firebird for which the no-right-click script doesn't work Wink

Author:  santabruzer [ Tue Jan 27, 2004 9:58 pm ]
Post subject: 

hackits i found is extremly easy.. up to number 5, where i have to know javascript.. and know what code.length means.. where code is the array.. any suggestions ?

Author:  Cervantes [ Wed Jan 28, 2004 9:07 am ]
Post subject: 

sweet I just did it!!

one question though, when the grey box is up that says "Script Prompt: Please enter password!", is there any way that I can view the source code (I'm using internet explorer) at that point without hitting okay or cancle and waiting for it to say Access Denied and then going to view ==> source

Cheers

Author:  Mazer [ Wed Jan 28, 2004 9:32 am ]
Post subject: 

santabruzer > Well, if 'code' is an array, I suppose 'code.length' might be a function to return the length or number of elements in said array Wink

Cervantes > Yes, you need to get the source without having the browser loading the page, and thus executing the script. Now what program can you use to make notes or possibly view html code without actually running it? One that allows you to 'open' a file by selecting open from the file menu and then typing in the location on the hard drive or internet address of the desired file?

Author:  shorthair [ Wed Jan 28, 2004 10:05 am ]
Post subject: 

Ie makes the first couple of levels harder , mozilla all the way , trying level 5 now

Author:  Cervantes [ Wed Jan 28, 2004 10:10 am ]
Post subject: 

well I'm on level 4 with IE..

Mazer > no clue Confused what program are you referring to?

Author:  Cervantes [ Wed Jan 28, 2004 10:16 am ]
Post subject: 

hey, what does
code:
var a=unescape("%43%4f%44%45%5a");

mean? its from level 4 at hackits... can't get passed that one Confused

Author:  Mazer [ Wed Jan 28, 2004 10:18 am ]
Post subject: 

Mazer wrote:
to make notes

I'm referring to notepad. Wink
Well, there goes my no-cheating policy. Open up notepad, go to open, then type in the address to the htm file, give it a second to download the source and then you should be able to find the password there.

EDIT: unescape? You know how when you upload a pic or something that has spaces in the filename, the spaces turn into '%20' or something? That's escaping, kinda. JavaScript has a function to 'unescape' so you can turn that back into what it said originally. You can make your own html and javascript page to simply output that.
EDIT II: OK, I kinda suck at explaining things. Google.com search "unescape" hit number 2.

Author:  Cervantes [ Wed Jan 28, 2004 10:21 am ]
Post subject: 

hmm thats a neat way of doing it. never thought of that

unfortunately, I already have the source code for the level, I just can't get the password from the source code, it confuses me Confused

Author:  Triple Five [ Wed Jan 28, 2004 10:50 am ]
Post subject: 

lv 5 for try to hack- i cant seem to get the source for it.. wont let me open it in notepad or anything...how would you decomplie it... cause all i did was download the .dll file for VB 3.0 to open the prog. Confused plz help or a little hint Idea plz


...also level 2 for hackits has me confused! Confused any help! thanks....



Idea hint for levels in try to hack

1- source
2- Temp Internet Files
3- Source
4- Temp Internet Files

Author:  santabruzer [ Wed Jan 28, 2004 11:32 am ]
Post subject: 

ok.. lvl 5 ... seach on google.. if that's the one that is VB 3... i don't remember.. there was another which was VB 6.. and you had to use another method.. anyways.. i did the first 7 hackits challenges.. and the 8th one with the redirect has me stumped.. seriously.. how can you pass that... Sad...

Author:  Cervantes [ Wed Jan 28, 2004 12:16 pm ]
Post subject: 

for hackits lvl 4 is the password in the source or do you have to use temp internet files??

Author:  Mazer [ Wed Jan 28, 2004 12:35 pm ]
Post subject: 

Yeah, it's in the source code. You have to find out what the unescape function will return, then type that in as the password.

Author:  Cervantes [ Wed Jan 28, 2004 12:55 pm ]
Post subject: 

I don't know the language at all so I don't know what unescape does though..

Author:  Delos [ Wed Jan 28, 2004 1:25 pm ]
Post subject: 

Cervantes wrote:
man I can't get past lvl 2 on either http://scifi.pages.at/hackits/ or try2hack...

help! Confused


For hackits, just look at the source for lvl 2.

It's not hard.

For lvl3, however, the source is hidden in a pw() function. So, meh.

Author:  santabruzer [ Wed Jan 28, 2004 3:12 pm ]
Post subject: 

ha ha.. lvl 8 on hackits is quite simple.. Razz... it's right in front of you..

Author:  Cervantes [ Wed Jan 28, 2004 4:33 pm ]
Post subject: 

Delos wrote:
Cervantes wrote:
man I can't get past lvl 2 on either http://scifi.pages.at/hackits/ or try2hack...

help! Confused


For hackits, just look at the source for lvl 2.

It's not hard.

For lvl3, however, the source is hidden in a pw() function. So, meh.


Cervantes wrote:
well I'm on level 4


thanks I got it though Smile
what oh what is unescape / where could I find out what it is?

Author:  Mazer [ Wed Jan 28, 2004 5:05 pm ]
Post subject: 

santabruzer wrote:
ha ha.. lvl 8 on hackits is quite simple.. Razz... it's right in front of you..

Oh geez... why didn't I think of that? I still think it was stupid though.

Author:  Mazer [ Wed Jan 28, 2004 5:23 pm ]
Post subject: 

Well, just finished number 9.... the stupid way Shifty

Author:  shorthair [ Wed Jan 28, 2004 5:50 pm ]
Post subject: 

Lvl 7 so proud , and i havent cheated yet , this is like a life time acheivement

Author:  santabruzer [ Wed Jan 28, 2004 5:50 pm ]
Post subject: 

mazer.. how when why.. wha? ... did you just brute force it Razz ... cause everything on google is german Sad

Author:  Triple Five [ Wed Jan 28, 2004 6:07 pm ]
Post subject: 

u got that right! Laughing everyone on google is german Twisted Evil

not that thers anything wrong with Germans Confused

Author:  santabruzer [ Wed Jan 28, 2004 6:41 pm ]
Post subject: 

yea.. it was actually alot simpler than i thought.. all you had to do *censor*... and then you would get to the next level Razz... yea.. well i'm at lvl 13.. and don't want to use my brain for it.. so i'm just bruteforcing all possible combinations Razz..

Author:  Mazer [ Wed Jan 28, 2004 9:40 pm ]
Post subject: 

santabruzer wrote:
mazer.. how when why.. wha? ... did you just brute force it Razz ... cause everything on google is german Sad

Security level 9? Well, apparently you're supposed to make a tiny edit in the page's source and everything will pretty much fall into place. I kinda missed that part, and ended up writing a program in turing to read and parse the source... it was still ugly but oh well.

Author:  Maverick [ Wed Jan 28, 2004 10:14 pm ]
Post subject: 

yA well i got to level 3 without cheating so there.

Author:  santabruzer [ Wed Jan 28, 2004 10:17 pm ]
Post subject: 

ha ha... dude.. we are still all so far away from hacking as this is not even close.. i would expect someone like Hacker Dan, or some of the senior members to be able to really hack, as for us, these are just simply games Razz.. and i got to lvl 12 on Hackits.. without cheating Razz

Author:  shorthair [ Wed Jan 28, 2004 10:18 pm ]
Post subject: 

Doin 9 , ive glanced over the posts , so i cant say i havent had some hints but mostly alone

Author:  Maverick [ Wed Jan 28, 2004 10:23 pm ]
Post subject: 

thats a load of you know what








daisies

Author:  Mazer [ Thu Jan 29, 2004 10:51 am ]
Post subject: 

What are people talking about "without cheating"? The whole idea is to exploit (intentional) flaws in the web pages security to learn about how JavaScript is insubstantial to protecting private web pages. Nothing is done "without cheating".

Author:  santabruzer [ Thu Jan 29, 2004 3:48 pm ]
Post subject: 

i just don't know which did he imply that message, me or shorthair.. i dunnu.. but yea, without cheating for some reason is not considered without looking at the post made here... so i dunnu..

Author:  Cervantes [ Fri Jan 30, 2004 5:28 pm ]
Post subject: 

woot I've gotten to level 7 on hackits!

except I've got no clue about this one... Sad

Author:  santabruzer [ Wed Feb 04, 2004 10:08 pm ]
Post subject: 

good job.. even though i'm bringing an old topic.. i've come across one of the best hacking challenges.. well to my opinion:
http://m4tr1x.wsn.at/... you have to join, and it's forum like.. but it has amazing challenges.. that use a veriety of things... plus it has a matrix story Razz.. well i'm on lvl 3...

Author:  Cervantes [ Wed Sep 22, 2004 9:12 pm ]
Post subject: 

santabruzer wrote:
even though i'm bringing an old topic..

ditto. Laughing
I'll try that matrix one out tommorow probably Confused

anyways, I'm trying this hacits out again, and first off, they've moved to http://academy.dyndns.org
I'm stuck on level 10. i know that that bit about n and 2n is not a hint to the pword, but on a forum that came up from googling somebody said that you have to find source4.js somewhere on the site. is there anyway to do that other than just trying a bunch of different URLs?

Author:  TheFerret [ Thu Sep 23, 2004 9:12 pm ]
Post subject: 

If you are stuck on Hackits lvl 3 then you could do it the easy way and change the URL...

EDIT: Can't get past lvl 7...

Author:  Cervantes [ Fri Sep 24, 2004 7:32 am ]
Post subject: 

have you found the source code for number 6? That's the hard part. Once you've done that, it's only as hard as level 2.
If you haven't found the source code, read back through this thread and you'll learn from Mazer a nifty way of getting the source code.

Author:  Amailer [ Fri Sep 24, 2004 7:39 am ]
Post subject: 

*sigh* peoeple are still trying this? Rolling Eyes

Author:  Genesis [ Fri Sep 24, 2004 2:48 pm ]
Post subject: 

Haha, ya it is fun. Though it's not really my idea of "hacking" as people have come to use the word. It's just testing your ability to find and read javascript source code.

Author:  Dan [ Fri Sep 24, 2004 4:40 pm ]
Post subject: 

Also thess sites are an effctive way of teching polope to not uses java scripted, flash nor unecripted java applets for secuity on there site.

Author:  rizzix [ Fri Sep 24, 2004 4:45 pm ]
Post subject: 

actually u could use unencrypted applets.. so long as its designed using a client server model.. where ur applet is the client.. its pretty safe that way.. but just make sure to encrypt the network stream.

Author:  Dan [ Fri Sep 24, 2004 5:26 pm ]
Post subject: 

I was meaning more in the terms of an passowrd progame to get to a webpage like most of thess hacking sites are. But you are right if u put some effert in to it, it deftaly whould be secure but then why not just use php for somting simple?

Author:  the_short1 [ Fri Sep 24, 2004 5:40 pm ]
Post subject: 

whats this java compiler??.... is it small download??

or just notepad.. hahah

sounds like a fun game....



anyways.. i needed to post so i could see it when i search for posts by me and so i dont loose this topic...

Author:  Genesis [ Fri Sep 24, 2004 9:25 pm ]
Post subject: 

the_short1 wrote:
whats this java compiler??.... is it small download??

or just notepad.. hahah


The Java compiler would be what is used to compile java code! (Though where was the compiler mentioned in this thread?) The download isn't too big I don't think...I cant remember though.

And notepad is what you would use to write the code before compiling it.

(Unless you use an IDE, such as JCreator, which is one of my favourites.)

Author:  templest [ Fri Sep 24, 2004 9:38 pm ]
Post subject: 

Oh my God!

I'm stuck on level 10 from the "hackit" site. I've honestly been staring at the10th.htm's source for 3 straight hours trying to figure something out but can't think of crap. Like... fück. Everything's been pretty straight-forward so far... It's just this little number that's fücking me over! Mad

EDIT: I'm thinking that since the page I get a link to:

code:
<script language="JavaScript" src="www.academy.dyndns.org/hackits/security_levels/source4.js">


Being a script, it produced a bogus ".js" file, and displays that instead of the real source. Now... How to get the browser to load that page (or transfer to local file) without it running the script. Confused

Hm... maybe if I load it in lynx... but, meh... I'll keep thinking for now.

Author:  rizzix [ Sat Sep 25, 2004 12:21 am ]
Post subject: 

haha not even lynx can help u out there.. but if ur observant u'll notice something... really really tricky.. wow they are smart lol

Author:  templest [ Sat Sep 25, 2004 12:30 am ]
Post subject: 

I'm probably brain dead from all this thinking, going to sleep... I swear I'll have lvl 16 done before this weekend's over or I'm donating all my bits to shorthair.

Author:  rizzix [ Sat Sep 25, 2004 12:49 am ]
Post subject: 

hey could u give me the code to 7,8 and 9? cuz i need it for 12

Author:  Paul [ Sat Sep 25, 2004 8:34 am ]
Post subject: 

its fun... I can't get past 8 though, the other ones have been easy, the one javascript one with the code.length, I kinda took more than 3 minutes because I didn't notice the array was named code. But 8, it prolly has something to do with the geocities js? maybe? I dunno, too lazy now.

Author:  templest [ Sat Sep 25, 2004 8:57 am ]
Post subject: 

Paul wrote:
its fun... I can't get past 8 though, the other ones have been easy, the one javascript one with the code.length, I kinda took more than 3 minutes because I didn't notice the array was named code. But 8, it prolly has something to do with the geocities js? maybe? I dunno, too lazy now.


Once you get it, you'll realize just how stupid you were for not doing so earlier. I smacked my head against the keyboard after finding out what it was.

EDIT: I'm still stuck on 10. Confused

Author:  Cervantes [ Sat Sep 25, 2004 9:54 am ]
Post subject: 

the only thing i've notcied is that all the pages are http://academy.... but the URL for the source4.js is www.academy.....

does this have anything to do with it? I'm so confused Confused

EDIT: WOOHOO!! I got it 8)

You're right rizzix, that is tricky Evil or Very Mad

[mod:9d27282131="rizzix"]spoiler warning.. yep so i reduced the font size and made it white[/mod:9d27282131]

Author:  rizzix [ Sat Sep 25, 2004 11:05 am ]
Post subject: 

btw do u have code to 9, 8 and 7?

Author:  templest [ Sat Sep 25, 2004 11:37 am ]
Post subject: 

Cervantes wrote:
the only thing i've notcied is that all the pages are http://academy.... but the URL for the source4.js is www.academy.....

does this have anything to do with it? I'm so confused Confused

EDIT: WOOHOO!! I got it 8)

You're right rizzix, that is tricky Evil or Very Mad


OMFG! Hit Wall

Excuse me, while I go commit suicide.

Author:  the_short1 [ Sat Sep 25, 2004 9:38 pm ]
Post subject: 

opk...jsut to help u all out here..

plus this is handy for other things..

www.update.mozilla.org

download the Allow Right Click extension... it makes it so no mater what u can right click when using firefox,,,


ENJOY... id post a direct link... but im too busy on level 5 < try to hack.... but i think im gona give upo..



ok.. i open the Level5.exe in ntoepade or wordpad.... and i see the password and username

AlmostAHacker
ZqrE01A2d

yet it DONT WORK.... WTF?

Author:  Paul [ Sat Sep 25, 2004 10:17 pm ]
Post subject: 

we're talking about the dydns one, or w/e its called.

Author:  TheFerret [ Sun Sep 26, 2004 1:35 am ]
Post subject: 

UGGH, I am on #9 at the "hackit" site and I have it done but I am not sure what the country "password" is... I have seached for it and all I have come up with is hannover in Germany but it is wrong and I have found that it is in the US but when I tye that in, it is wrong... "a wrong answer"

Sorry for the small hard to read print but I don't want to give stuff away...

Author:  Cervantes [ Sun Sep 26, 2004 7:12 am ]
Post subject: 

Ferret: You have the password. They want a city for the password, not a country.

theshort: right clicking is not a proble. There are so many ways to get around it.

Rizzix: Why can't you get them yourself? too lazy to go back a few levels? Eh

EDIT EDIT EDIT: PMed you the codes rizzix.
I finally beat level 11. I liked that level: its not tricky so you won't be doing it forever, but it takes thought. plus the final password for that level rules Very Happy

Author:  rizzix [ Sun Sep 26, 2004 11:24 am ]
Post subject: 

yep 11 was sort of like reverse engineering (well sort of cuz they give u the code) Smile

PS: thanks for the codes.. yep ur right.. i'm lazy. Razz

anyways i really dont want it to get easier.. i need more of a challenge here Razz

Author:  Cervantes [ Sun Sep 26, 2004 11:44 am ]
Post subject: 

err, why did you need the codes for 7 8 and 9 for level 12? I just beat it without em.

for level 13, I suppose I need to decomple the pwd.class file somehow?

Author:  TheFerret [ Sun Sep 26, 2004 11:58 am ]
Post subject: 

Wow, lvl 10 is soo stupid, I have read what other people have said and still can not figure it out... When I view the js file, it tells me about a math problem...

Author:  Cervantes [ Sun Sep 26, 2004 12:12 pm ]
Post subject: 

a bloody interesting math problem at that!
Just think about the code logically.

Level 14 here I am. 13 was too easy, though it was a humourous way of hiding the password. Razz

Author:  rizzix [ Sun Sep 26, 2004 12:15 pm ]
Post subject: 

shoot Hit Wall ur right.. u just need the lvl 11 codes

Author:  Cervantes [ Sun Sep 26, 2004 12:24 pm ]
Post subject: 

Laughing I didn't use level 11 source code either.
why do you need to?
we are talking about the one with the numberpad right?

Author:  rizzix [ Sun Sep 26, 2004 12:39 pm ]
Post subject: 

no the previous one.. anyways.. the numberpad is annoying.. there are countless combinations.. which one is it?

Author:  Cervantes [ Sun Sep 26, 2004 12:47 pm ]
Post subject: 


2161
countless = 36(4*3*3)
4*3 as part of 4 factorial (not 4*3*2 because in all of them there is a repeated number). *3 for each possible combination (1134, 1126, 1223)



aaugh level 14 is nuts. I really hope I don't actually have to understand the majority of what they coded. Confused

Author:  rizzix [ Sun Sep 26, 2004 1:07 pm ]
Post subject: 

hmm do u have to deassembled code with u? post it if u do..

Author:  Cervantes [ Sun Sep 26, 2004 3:21 pm ]
Post subject: 

err, deassembled code for level 13 you mean?
You can download JCavaj at http://www.bysoft.se/sureshot/jcavaj/. Install it and you can get the code.

PMed you the code, since you're lazy. Rolling Eyes Laughing

Author:  TheFerret [ Sun Sep 26, 2004 3:47 pm ]
Post subject: 

hhhmmm, I still cannot get lvl 10 for some reason, something is not clicking in... Would someone PM it to me and how your got it...

Author:  Cervantes [ Sun Sep 26, 2004 5:38 pm ]
Post subject: 

arrgh, can't seem to get the source code for level 15: when I do the 'open the URL in notepad' trick it is saying that it is not valid. That's no good Confused
any other ways of viewing the source? (being able to right click doesn't help me)

Author:  Cervantes [ Sun Sep 26, 2004 6:58 pm ]
Post subject: 

lol!! I just cheated my way past level 15. If you have Firefox 1.0 or any previous version of firefox with the DOM inspector installed, typing the link to level 15 (the page that says CONGRATULATIONS! Security level 15) and then clicking inspect will change the URL that you typed in to the URL that says "CONGRATULATIONS, SECURITY LEVEL 16, ENTER"

Very Happy I have no idea what the username and password are Laughing

Author:  Amailer [ Sun Sep 26, 2004 7:21 pm ]
Post subject: 

Cervantes wrote:
lol!! I just cheated my way past level 15. If you have Firefox 1.0 or any previous version of firefox with the DOM inspector installed, typing the link to level 15 (the page that says CONGRATULATIONS! Security level 15) and then clicking inspect will change the URL that you typed in to the URL that says "CONGRATULATIONS, SECURITY LEVEL 16, ENTER"

Very Happy I have no idea what the username and password are Laughing


that could be hacking, not cheating... who knows Rolling Eyes

Author:  Paul [ Sun Sep 26, 2004 8:54 pm ]
Post subject: 

Amailer wrote:
Cervantes wrote:
lol!! I just cheated my way past level 15. If you have Firefox 1.0 or any previous version of firefox with the DOM inspector installed, typing the link to level 15 (the page that says CONGRATULATIONS! Security level 15) and then clicking inspect will change the URL that you typed in to the URL that says "CONGRATULATIONS, SECURITY LEVEL 16, ENTER"

Very Happy I have no idea what the username and password are Laughing


that could be hacking, not cheating... who knows Rolling Eyes

well yea, any tools can be used, as long as it woks, ya know?

Author:  templest [ Sun Sep 26, 2004 9:36 pm ]
Post subject: 

Cervantes wrote:
lol!! I just cheated my way past level 15. If you have Firefox 1.0 or any previous version of firefox with the DOM inspector installed, typing the link to level 15 (the page that says CONGRATULATIONS! Security level 15) and then clicking inspect will change the URL that you typed in to the URL that says "CONGRATULATIONS, SECURITY LEVEL 16, ENTER"

Very Happy I have no idea what the username and password are Laughing


That's actually how you're supposed to beat it, believe it or not; Kinda like lvl 8.

P.S.: I beat lvl 16, right now before going to sleep. So I guess I don't have to give shorthair all my bits! Dance

Author:  Cervantes [ Mon Sep 27, 2004 5:17 pm ]
Post subject: 

That's how? Can't be. You're not actually getting the username and password and beating the level, you're just skipping to the next level. Say you were hacking some business' website and you wanted to get information on something and you needed the username and password, simply skipping by the page won't help you!

have you figured out a way to view the source for level 15?

Author:  templest [ Mon Sep 27, 2004 8:12 pm ]
Post subject: 

Cervantes wrote:
That's how? Can't be. You're not actually getting the username and password and beating the level, you're just skipping to the next level. Say you were hacking some business' website and you wanted to get information on something and you needed the username and password, simply skipping by the page won't help you!

have you figured out a way to view the source for level 15?


I hassled someone for the pass to 16. But for the record, when you're actually hacking into a site it's by any means necessary... so... if I could get the pass because someone wasn't diligent enough to keep their password secret, that's their fault, not mine. I just exploit the human bug. Smile

Author:  Dan [ Tue Sep 28, 2004 1:04 pm ]
Post subject: 

templest wrote:

I hassled someone for the pass to 16. But for the record, when you're actually hacking into a site it's by any means necessary... so... if I could get the pass because someone wasn't diligent enough to keep their password secret, that's their fault, not mine. I just exploit the human bug. Smile


I whould think that social engering whould be just as vaild, affter all with todays deftion of hacking it dose count.

Author:  djlenny_3000 [ Wed Sep 29, 2004 8:48 am ]
Post subject: 

PLEASE HELP, me n gigaman have been stuck on level 8 in hackits for days now, we cant find the damn password, can someone explain how it,s "right in front of us" anymore time doin this im gonna curl up in a corner and bang my head on the wall to a bloody pulp, help, or clean up the mess

this is such a headache im gonna Hit Wall Hit Wall Hit Wall Hit Wall Hit Wall Hit Wall Hit Wall Hit Wall ARRRGGHH

thnx 4 ur help

Author:  templest [ Wed Sep 29, 2004 12:27 pm ]
Post subject: 

Hacker Dan wrote:
templest wrote:

I hassled someone for the pass to 16. But for the record, when you're actually hacking into a site it's by any means necessary... so... if I could get the pass because someone wasn't diligent enough to keep their password secret, that's their fault, not mine. I just exploit the human bug. Smile


I whould think that social engering whould be just as vaild, affter all with todays deftion of hacking it dose count.


I have to give your post a generous: "WTF? 'Sif!"

Modern Definition of the word "hacking":

Quote:
Unauthorized use, or attempts to circumvent or bypass the security mechanisms of an information system or network.


I certainly did "bypass" the "security mechanisms" of an "information system or network". Just because I didn't use conventional methods (ie: decompiling source-code) in-order to "bypass" the "security mechanisms", doesn't mean I didn't actually "bypass" it. I did "bypass" it, much more efficiently than any of you, might I add. Smile

Author:  rizzix [ Wed Sep 29, 2004 2:31 pm ]
Post subject: 

templest wrote:
more efficiently than any of you, might I add. Smile


that is unnecessary.. and only partially correct

Author:  Dan [ Wed Sep 29, 2004 2:44 pm ]
Post subject: 

templest wrote:

I have to give your post a generous: "WTF? 'Sif!"


Ummm, i was agering with you......saying that it was hacking........

Author:  templest [ Wed Sep 29, 2004 3:13 pm ]
Post subject: 

Heh, when I read "it dose count", I saw: "it doesn't count".
There's always a possibility that you modded yours and my post in order for it to make me look like a jack-ass.

Author:  Dan [ Wed Sep 29, 2004 3:21 pm ]
Post subject: 

templest wrote:
Heh, when I read "it dose count", I saw: "it doesn't count".
There's always a possibility that you modded yours and my post in order for it to make me look like a jack-ass.


Now it whould the context realy make much scecn if i did mod it? Social engering in the context i was using it ment to tirck poleop in to giving you information like a password. Ie. what you did == social engering == moder term of hacking

Author:  josh [ Wed Sep 29, 2004 5:41 pm ]
Post subject: 

if you are interested in social engineering you shuld read "the Art of Deception" by Kevin Mitnik. I am reading it right now and it is really interesting. It tells you stories and shows how social engineers can get any info.

The stuff is pretty neat. It is written from the standpoint that they are trying to tell you how to protect your busness but in the process he tellls you exactly how social enginering works. It is facinating Very Happy

Author:  templest [ Wed Sep 29, 2004 6:18 pm ]
Post subject: 

rhysticlight wrote:
if you are interested in social engineering you shuld read "the Art of Deception" by Kevin Mitnik. I am reading it right now and it is really interesting. It tells you stories and shows how social engineers can get any info.

The stuff is pretty neat. It is written from the standpoint that they are trying to tell you how to protect your busness but in the process he tellls you exactly how social enginering works. It is facinating Very Happy


Who do you think invented the term "Social Engineering"? Confused What do you take us for, BOOBS!? sorry... NOOBSZ??!

Author:  josh [ Wed Sep 29, 2004 7:22 pm ]
Post subject: 

wooooooh, take it easy. I am knew to the social engineering so I just thought I would make that post. No need to blow up with it.

I don't take u for a noob, I am a noob, so their

I AM SORRY IF I OFFENDED YOUR SENSE OF SELF SUPERIORITY!!!!!

Author:  templest [ Wed Sep 29, 2004 8:04 pm ]
Post subject: 

Heh, who's the spaz now? If the "BOOBZ!?" part didn't tip you off, Let me be a bit more direct...

I'm being mildly sarcastic. Rolling Eyes

Author:  josh [ Wed Sep 29, 2004 8:09 pm ]
Post subject: 

I am sorry, I overreacted. I thought you were making fun of me.
Please accept my appology and we will forget this whole thing ever happened.

Author:  rizzix [ Wed Sep 29, 2004 9:19 pm ]
Post subject: 

rhysticlight wrote:
I am sorry, I overreacted. I thought you were making fun of me.
Please accept my appology and we will forget this whole thing ever happened.


this is not the first time (with templest).. and ur not the first one you know.. Laughing

Author:  josh [ Wed Sep 29, 2004 9:24 pm ]
Post subject: 

thats good to know Very Happy

Author:  djlenny_3000 [ Thu Sep 30, 2004 7:47 am ]
Post subject: 

ya rosen u were wrong, now returning to the subject at hand and 4 days straight level 8 in starfleet, can someone explain how to find the password
the code is
code:
<script language="JavaScript">var PUpage="76001079"; var PUprop="geocities"; </script><script language="JavaScript" src="http://www.geocities.com/js_source/pu5geo.js"></script><script language="JavaScript" src="http://www.geocities.com/js_source/ygIELib9.js?v3"></script><script language="JavaScript">var yviContents='http://us.toto.geo.yahoo.com/toto?s=76001079&l=NE&b=1&t=1093639008';yviR='us';yfiEA(0);</script>
<!-- text above generated by server. PLEASE REMOVE -->

<html>
<head>
<meta name="robots" content="noindex,nofollow">
</head><body bgcolor="#000000" text="red">
  <br><br><br><center><h1>SECURITY LEVEL 8</h1><br><br><img src="tactic.jpg" border=0></center>

<script language=JavaScript>
   
UserEingabe = window.prompt("password security level 8","");
document.location.href=UserEingabe + ".htm";

// -->
</script>
  <script language="JavaScript1.2">
if (window.Event)
  document.captureEvents(Event.MOUSEUP);
function nocontextmenu() 
{
 event.cancelBubble = true
 event.returnValue = false;
 
 return false;
}
function norightclick(e)
{
 if (window.Event)
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
}
 
document.oncontextmenu = nocontextmenu; 
document.onmousedown = norightclick; 
</script>
  </font></h1>
  </body>
</html>


                       
                       
                       
                       
                       
 
<!-- text below generated by server. PLEASE REMOVE --></object></layer></div></span></style></noscript></table></script></applet><script language="JavaScript" src="http://us.i1.yimg.com/us.yimg.com/i/mc/mc.js"></script><script language="JavaScript" src="http://geocities.com/js_source/geov2.js"></script><script language="javascript">geovisit();</script><noscript><img src="http://visit.webhosting.yahoo.com/visit.gif?us1093639008" alt="setstats" border="0" width="1" height="1"></noscript>
<IMG SRC="http://geo.yahoo.com/serv?s=76001079&t=1093639008" ALT=1 WIDTH=1 HEIGHT=1>


can someone please show me wher eth password is.[/code]

Author:  gigaman [ Thu Sep 30, 2004 7:48 am ]
Post subject:  need help still

Yo me and djlenny are still stuck on level 8 the URL is http://academy.dyndns.org/number8.htm so if anyone has some advice can you please be a little more specific than it's right in front of you.

Author:  josh [ Thu Sep 30, 2004 7:58 am ]
Post subject: 

be quite lenard. Y u have to but your nose into everything???

Author:  Dan [ Thu Sep 30, 2004 3:01 pm ]
Post subject: 

I just looked at it realy fast, is there any chance it is "login" as the pass? lol


Seems to work from what i understand of the site, but if i am right that is the dumested thing i have ever seen.

Author:  Paul [ Thu Sep 30, 2004 3:18 pm ]
Post subject: 

I thought it had something to do with the geocities banner that appears ONLY in this challenge Question

Author:  rizzix [ Thu Sep 30, 2004 3:24 pm ]
Post subject: 

that is there to mess up ur mind.. which as u see.. did a pretty good job Razz

Author:  Dan [ Thu Sep 30, 2004 3:24 pm ]
Post subject: 

Paul wrote:
I thought it had something to do with the geocities banner that appears ONLY in this challenge Question


Well if we read the code we whould know that it dose not check the password entered but insted just loads a page based on this password ie passuentered.htm

Now when we look at all the fines in the dir it is loading from the only .htm files are the site with the password screen and the one that says congergualtions with is caled login.htm

so if one enters login as the pass it will load the page login.htm

i could be totaly wrong tho, it did seem to easy but it also seemed to work.

Author:  djlenny_3000 [ Thu Sep 30, 2004 4:39 pm ]
Post subject: 

Hacker Dan wrote:

Well if we read the code we whould know that it dose not check the password entered but insted just loads a page based on this password ie passuentered.htm

Now when we look at all the fines in the dir it is loading from the only .htm files are the site with the password screen and the one that says congergualtions with is caled login.htm

so if one enters login as the pass it will load the page login.htm

i could be totaly wrong tho, it did seem to easy but it also seemed to work.


i dont see where it say login i understood righ taway that what u enter is the htm it will go to because when i oush cancel it goes to null.htm can u explain where u got the password to be "login" oh and thanks for the help it was a huge headache relieved
Smile

Author:  Dan [ Thu Sep 30, 2004 5:12 pm ]
Post subject: 

as i side (or tryed to), the passowrd is login b/c the page you are trying to get to is login.htm.

I found this out by simpley looking at the code and seeing that all it did was load a page given the file name and then i looked in the dir where it was loading pages and all that was in there where 2 htm files, the login.htm one and the one where you got that code from.

Author:  Paul [ Thu Sep 30, 2004 5:17 pm ]
Post subject: 

interesting, so u look at the dir... lol
btw, level 9 is really ez.

Author:  djlenny_3000 [ Thu Sep 30, 2004 5:21 pm ]
Post subject: 

ya lvl 9 is easy if u clear the clutter, the 1 im stuck on is 10 i figured out that the math problem has NOTHINg to do with it . so i looked more and more but now my eyeshurt, i can just imagine how 2morows compsci clas with gigaman is gonna be, 1 hour 20 minutes of staring at html code, YAY FUN

Author:  Paul [ Thu Sep 30, 2004 5:24 pm ]
Post subject: 

you don't need to clear the clutter, all u need to do is change the bg color -_-, I can't imagine going and deleting all the color codes.

Author:  djlenny_3000 [ Thu Sep 30, 2004 5:26 pm ]
Post subject: 

no all i did was replace <font bla bla bla > and </font? with "" it ended up being a question that was too easy, either way it was simple but do u have an answer for lvl 10 well not an answer but a hint

Author:  Paul [ Thu Sep 30, 2004 5:33 pm ]
Post subject: 

read back a few pages.
I somehow think that advanced mathematics has nothing to do with this.
although it IS interesting
http://mathworld.wolfram.com/BertrandsPostulate.html

its actually saying, you have a number larger than 3, there will always be a prime number between n and 2n

n=4 2n=8 prime = 5,7
n=10 2n=20 prime=11,13,17

etc...

Author:  djlenny_3000 [ Thu Sep 30, 2004 5:51 pm ]
Post subject: 

i am soooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo confused im gonna shoot myself i've spent 4 and a half ours staring at the same to notepad documents all i got was so stupid html code and a mathematical quote Hit Wall Blowing up


im going crazy i hust dont get it ive read everything before and i feel so thick headed because when i get it its gonna be so easy im actually gonna jump out my window and hit the ground and walk back in and be like oooooooohhhhhhhhhhhh myyyyyyyyyyy gooooooooooooooood so someone just explain step by step where and what is the code cuz im gonna cry Crying or Very sad

mod edit: I deleted a bunch of the emoticons. Don't worry about this time, but in the future please try to take into consideration those who are at computers which are less capable and less willing of display so many animations. Besides, it's freaky annoying on the eyes Wink

Author:  gigaman [ Thu Sep 30, 2004 9:11 pm ]
Post subject:  Excuse me while I find my revolver

Dan thank you so much for the code i can;t beleive I missed it although I new about the variable being the password which went into the URL. for level 9 i'd like to thank notepad for find and replace. I am currently working on level 10. DJ_lanny c ya 2moro hope i hav the level 10 password. any tips anyone?

Author:  Cervantes [ Fri Oct 01, 2004 10:14 am ]
Post subject: 

find source4.js
Read through the source of level 10 logically and you should notice something.. interesting

Author:  Paul [ Fri Oct 01, 2004 2:09 pm ]
Post subject: 

I just want to know if it has anything to do with the Bertrands Postulate.

Author:  templest [ Fri Oct 01, 2004 3:41 pm ]
Post subject: 

Paul wrote:
I just want to know if it has anything to do with the Bertrands Postulate.


No.

Author:  rizzix [ Fri Oct 01, 2004 7:14 pm ]
Post subject: 

Paul wrote:
I just want to know if it has anything to do with the Bertrands Postulate.


well.. it depends.. on your perspective..

Author:  templest [ Fri Oct 01, 2004 11:02 pm ]
Post subject: 

rizzix wrote:
Paul wrote:
I just want to know if it has anything to do with the Bertrands Postulate.


well.. it depends.. on your perspective..


No.

Author:  rizzix [ Sat Oct 02, 2004 12:30 am ]
Post subject: 

pfft.. get the sarcasm. *sigh*

Author:  templest [ Sat Oct 02, 2004 9:06 am ]
Post subject: 

rizzix wrote:
pfft.. get the sarcasm. *sigh*


No. Are you stupid? Confused

It has NOTHING to do with it.

Author:  gigaman [ Mon Oct 04, 2004 8:23 am ]
Post subject:  update

djlenny and I are on 13 now and we went to the matrix site for a bit and it is so much harder than the hakits one. anyone else doing it?

Author:  templest [ Mon Oct 04, 2004 8:10 pm ]
Post subject:  Re: update

gigaman wrote:
djlenny and I are on 13 now and we went to the matrix site for a bit and it is so much harder than the hakits one. anyone else doing it?


"Matrix Site"? Confused

Author:  Lairens [ Sun Oct 10, 2004 6:31 am ]
Post subject: 

Got to level 11 of Hackit, I am stuck with the 5 passes...

Author:  Cervantes [ Sun Oct 10, 2004 7:09 am ]
Post subject: 

Err, if I remember correctly, wasn't the one with five passwords level 11? Level 15 is the second level to use a username and password (only in level 15, it pops up, whereas in level 14, it's directly on the page).
edit: http://m4tr1x.wsn.at/ Santabruzer gave us this link a while back... In february. Laughing

Author:  Paul [ Sun Oct 10, 2004 8:34 am ]
Post subject: 

oh yea, I stopped at the 5 passwords one in february lol.

Author:  Lairens [ Sun Oct 10, 2004 9:05 am ]
Post subject: 

[quote="Cervantes"]Err, if I remember correctly, wasn't the one with five passwords level 11? Level 15 is the second level to use a username and password (only in level 15, it pops up, whereas in level 14, it's directly on the page).


Yeah you're right, it was a typo Rolling Eyes


: