Become a part of the TranceAddict community!Frequently Asked Questions - Please read this if you haven'tSearch the forums
TranceAddict Forums > Archives > Classic old threads / Inactive Forums > Retired Forums > Humour / Funny Stuff / Cool Web Sites > lurn 2 hAAAAACK
Pages (9): « 1 2 3 4 [5] 6 7 8 9 »   Last Thread   Next Thread
Share
Author
Thread    Post A Reply
Trancealot
Supreme tranceaddict



Registered: Mar 2001
Location: Binghamton,ny--Roxy NYC!

TheCorrectAnswer then you enter level 4!!!!

intrance my bad did not know you wanted to learn how to do it hehe..laters


___________________
ATB -Let u go
Iio - Rapture(riva edit)
Dj Encore - I see right through you
Lasgo - something

The best vocal tunes on LI RIP(2001-2002)

Last edited by Trancealot on Jan-29-2002 at 05:23

Old Post Jan-28-2002 19:46  United States
Click Here to See the Profile for Trancealot Click here to Send Trancealot a Private Message Add Trancealot to your buddy list Report this Post Reply w/Quote Edit/Delete Message
inatrance
Arcteryx ClimbAddict



Registered: Oct 2001
Location: Seattle, WA

no I did not ask for the answer! I asked how do you do it!??!

Old Post Jan-28-2002 23:49 
Click Here to See the Profile for inatrance Click here to Send inatrance a Private Message Add inatrance to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Trance-Canada
Trance Titan



Registered: May 2001
Location: Calgary
Level 4

I need a bit of help on #4 where do I find the user/pass??? this is what I get...

// 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;
}

Old Post Jan-30-2002 20:53  Iceland
Click Here to See the Profile for Trance-Canada Click here to Send Trance-Canada a Private Message Add Trance-Canada to your buddy list Report this Post Reply w/Quote Edit/Delete Message
nekholm
nekholm



Registered: Jan 2001
Location: .fi

T-C, I think that you have to search your cookies for the password..


___________________

Old Post Feb-01-2002 13:14  Finland
Click Here to See the Profile for nekholm Click here to Send nekholm a Private Message Visit nekholm's homepage! Add nekholm to your buddy list Report this Post Reply w/Quote Edit/Delete Message
DJ Provocative
Supreme tranceaddict



Registered: Oct 2001
Location: @Home, The Netherlands

Hehe, finished all those levels a while ago.
Took me some nights, I can tell ya that.

Grtx,
Provocative


___________________
Shakespeare : to be or not to be
Spinoza : to be is to do
Sartre : to do is to be
Sinatra : to do be do be do

Old Post Feb-01-2002 22:15  Netherlands
Click Here to See the Profile for DJ Provocative Click here to Send DJ Provocative a Private Message Visit DJ Provocative's homepage! Add DJ Provocative to your buddy list Report this Post Reply w/Quote Edit/Delete Message
nomatteus
Senior tranceaddict



Registered: Dec 2001
Location: Toronto / Smalltown Saskatchean

ack..im stuck on level 4...ill come back to it another day with a fresh mind...

Old Post Feb-02-2002 05:05  Canada
Click Here to See the Profile for nomatteus Click here to Send nomatteus a Private Message Add nomatteus to your buddy list Report this Post Reply w/Quote Edit/Delete Message
gOuRYeLLa~!
trancEaddict in JAIL



Registered: Dec 2001
Location: Yorba Linda, California
Re: lurn 2 hAAAAACK

quote:
Originally posted by lMIlk
http://www.try2hack.nl/level1.html

tell me how far you get it gets really hard


this is HARD? noone can outsmart this 3r33t h4x0r p4x0r in t3h p4ntz0r. NOONE can defeat my trust back orifice trojans and netbus hacks. I CAN HACK YOU WITH PROGRAMS IF I MUST.

...rofl...

hi sexy milk boy, good head comes from wonderful places...

Old Post Feb-02-2002 16:19 
Click Here to See the Profile for gOuRYeLLa~! Click here to Send gOuRYeLLa~! a Private Message Visit gOuRYeLLa~!'s homepage! Add gOuRYeLLa~! to your buddy list Report this Post Reply w/Quote Edit/Delete Message
whiskers
old skool



Registered: Sep 2001
Location: in your dreams
Re: Level 4

quote:
Originally posted by Trance-Canada
I need a bit of help on #4 where do I find the user/pass??? this is what I get...



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");
}

public void inFile()
{
new StringBuffer();
try
{
countConn = inURL.openStream();
countData = new BufferedReader(new InputStreamReader(countConn));
String s;
while((s = countData.readLine()) != null) (WTF is that?
if(totno < 21)
{
totno = totno + 1;
inuser[totno] = s;
s = "";
} else
{
lblstatus.setText("Cannot Exceed 10 users, Applet fail start!");
destroy();
}



arggggghh, took me 5 minutes to get to level 4 and now i've been stuck on it for an hour!!!

it seems that the password is stored in the INUSER string in the following way: the username starts @ location [2] (which is the 3 slot) and the next letter is @ [4] and so on

the password starts @ [3] and takes up every odd slot

unfortunately, the only tools i have are ie and notepad... sorta like picking a lock with a pen and sunglasses


___________________

Last edited by whiskers on Aug-22-2002 at 18:28

Old Post Aug-22-2002 18:19  Ukraine
Click Here to See the Profile for whiskers Click here to Send whiskers a Private Message Add whiskers to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Hi-Voltage
Fullmoon Festival addict



Registered: Jan 2001
Location: Buddha-pest
Question WTF?

hey?I'm absoluetly confused!HOW DID U MANAGED TO KNOW THOSE PWs?Did u use any program or something?


___________________
ARE YOU PREPARED TO DRINK THE DARK NECTAR?
(Dark Nebula - Dark Nectar)

Old Post Aug-22-2002 19:10  Hungary
Click Here to See the Profile for Hi-Voltage Click here to Send Hi-Voltage a Private Message Add Hi-Voltage to your buddy list Report this Post Reply w/Quote Edit/Delete Message
KilldaDJ
birth.school.trance.death



Registered: Sep 2001
Location: tranceaddict wants to know your location
Talking

me got up to xxxxxxxxl-6.html
ROFL and meh only 15 yrz of age too
meh 1337 h4x0r


___________________


Found Atlantis - Mixography [mix archive/mokumentary/my soul]?
i writed a song.

Old Post Aug-22-2002 19:14 
Click Here to See the Profile for KilldaDJ Click here to Send KilldaDJ a Private Message Visit KilldaDJ's homepage! Add KilldaDJ to your buddy list Report this Post Reply w/Quote Edit/Delete Message
whiskers
old skool



Registered: Sep 2001
Location: in your dreams
Re: Level 4

quote:
Originally posted by Trance-Canada
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");
}



damn it, i'm addicted... i've been working on this for like 2 hours (with IRC chatting and music listening of course )

i'm kinda confused about the if statement... it seems as if it checks ONLY 1 letter from each field and then goes on to load the next level..

that's not how i would've programmed it anyway...:

for (blah)
if (this !=that)
{
refuse login
break
}
accept login


but their site switches the refuse and the accept statements


___________________

Old Post Aug-22-2002 19:40  Ukraine
Click Here to See the Profile for whiskers Click here to Send whiskers a Private Message Add whiskers to your buddy list Report this Post Reply w/Quote Edit/Delete Message
smh
Bla Bla Bla



Registered: Aug 2002
Location: Preston, UK

WTF is all this codin, it looks like sumint of the matrix to me!


___________________

Old Post Aug-22-2002 20:32  England
Click Here to See the Profile for smh Click here to Send smh a Private Message Add smh to your buddy list Report this Post Reply w/Quote Edit/Delete Message

TranceAddict Forums > Archives > Classic old threads / Inactive Forums > Retired Forums > Humour / Funny Stuff / Cool Web Sites > lurn 2 hAAAAACK
Post New Thread    Post A Reply

Pages (9): « 1 2 3 4 [5] 6 7 8 9 »  
Last Thread   Next Thread
Click here to listen to the sample!Pause playbackPlease, help to ID old trance track. [2010] [2]

Click here to listen to the sample!Pause playbackThomas Penton - "Domenica" [2008]

Show Printable Version | Subscribe to this Thread
Forum Jump:

All times are GMT. The time now is 22:30.

Forum Rules:
You may not post new threads
You may not post replies
You may not edit your posts
HTML code is ON
vB code is ON
[IMG] code is ON
 
Search this Thread:

 
Contact Us - return to tranceaddict

Powered by: Trance Music & vBulletin Forums
Copyright ©2000-2026, Jelsoft Enterprises Ltd.
Privacy Statement / DMCA
Support TA!