UGN Security
Posted By: Moffesto using msn as a backway in at school - 02/22/03 05:57 AM
ok, our school has these gay [censored] security things that require a password to view unauthorized sites. About the only site that our teacher has set up for us to view is msn.com. me and my friend found a way to use msn to get to other sites...

http://go.msn.com/0000/5/74.asp?target= (the website of your choice)

I was wondering if i could like make a html file that could have a blank field to type the site you want to visit and then when u hit enter it would automatically combine the thing (http://go.msn.com/0000/5/74.asp?target= ) with the site of your choice. anyone have any idea or any better ideas?
Posted By: §intå× Re: using msn as a backway in at school - 02/22/03 10:53 AM
could easily be done with HTML and Java script.

Code
<form action="page with the javascript code">
<input type="text" name="domain_name">


<input type="submit" value="goto site">
</form>
Code
<html>
  <head>
<script language="JavaScript">
<!-- hide me 
document.writeln("<Meta http-equiv="refresh" content="0;http://go.msn.com/0000/5/74.asp?target=");
document.writeln(domain_name);
document.writeln("">");
// end hiding -->
</script> 
I think that would work.... Not 100% though
Posted By: Gremelin Re: using msn as a backway in at school - 02/22/03 11:00 AM
Got to love our little [censored] learner there wink ... I often ask myself, why doesn't he apply to be a globalmod, or admin even, kind of funny wink ...
Posted By: §intå× Re: using msn as a backway in at school - 02/22/03 11:05 AM
Quote:
Originally posted by Moffesto:
http://go.msn.com/0000/5/74.asp?target= (the website of your choice)
By the (the website of your choice) he means the Full url including the http://

well that dosen't work but it would be along those lines.
Posted By: pergesu Re: using msn as a backway in at school - 02/22/03 04:18 PM
You could write a little applet to do it. Or I could. It'd take me probably like 10 minutes, so if you want it let me know.
Posted By: Moffesto Re: using msn as a backway in at school - 02/23/03 03:03 AM
hey perg, if u would like please write the applet... or tell meh how smile

hey sintax.... i didnt get that to work at all..

C:\Documents and Settings\J Moffett\Desktop\page with the javascript code
^thats what i would get in the address bar when i entered http://www.yahoo.com/ in the field and i would get "this page cannot b displayed" [censored].
Posted By: pergesu Re: using msn as a backway in at school - 02/23/03 03:57 AM
http://www.javaspot.net/tools/MSNTunnel.htm

Just use your way to open that site, and then it's got an applet. Type in the url you want, press enter, and it opens up a new window... Enjoy
Posted By: BackSlash Re: using msn as a backway in at school - 02/23/03 04:03 AM
wouldn't this still cause problems, because when you clicked a link on one of the sites that you accessed through this method, it wouldn't work because it wouldn't have the msn thing before it.
Posted By: §intå× Re: using msn as a backway in at school - 02/23/03 06:58 AM
I was tired last night. I got it figured out. Plain simple HTML would do it.


Code
<html>
  <head>
    <title>
     Learner's MSN cheat
    </title>
  </head>
<body bgcolor="#000000" text="FFFFFF">
 
 <center><b>Enter Full URL to desired site</b>


  <form action="http://go.msn.com/0000/5/74.asp" METHOD="GET">
    <input type="text" name="target">
    <input type=submit value="Go to site">
  </form>


Say thankyou Learner
</center>
</body>
</html>
Posted By: pergesu Re: using msn as a backway in at school - 02/23/03 07:13 AM
yeah but my way is way cooler. First of all, it's an applet. Second, it opens a new window. Third, it already has http:// in there. It's convenient.
Posted By: §intå× Re: using msn as a backway in at school - 02/24/03 02:19 AM
Code
 
<html>
  <head>
    <title>
     Learner's MSN cheat
    </title>
  </head>
<body bgcolor="#000000" text="FFFFFF">
  <center>
   <b>
Enter Full URL to desired site
   </b>
  


  <form target="_new" action="http://go.msn.com/0000/5/74.asp" METHOD="GET">
    <input type="text" name="target">
    <input type=submit value="Go to site">
   </form>
  


 Say thankyou Learner
  </center>
</body>
</html>
Now mine opens in a new window...


If they do not have Java's latest build installed at school yours is useless.

Mine is plain and simple, It can be put on any modern computer without first installing a virtual machine.

Of course yours took longer to make, and actualy required real codeing. But mine is simple small portable and dose the same thing yours dose. phear me 1337 H7M1 5k:11z.

heh /me dosen't care what he uses, Just needed to redeem myself after the jacked up java script I wrote above. This version opens in a new window, the one above opens in the same window.

Pergesu, would you post your code for me?
Posted By: Moffesto Re: using msn as a backway in at school - 02/25/03 04:44 AM
well, thanks learner... i went w/ yours and messed w/ it a bit. i couldnt get [censored] java virtual machine to work and yours was simple enough and worked great.

http://www26.brinkster.com/hurley85/loop/sc.html

thanks perg for your support anyways, lol.
Posted By: spectre Re: using msn as a backway in at school - 02/27/03 03:05 AM
if anyone still cares, since perg doesn't have the applet up any more (or his server is down), this code should do the same thing his applet did.

Code
// Java core packages
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import java.awt.*; 
import java.awt.event.*; 
import java.net.*; 


// Java extension packages
import javax.swing.*;

public class proofofconcept extends JApplet
   implements ActionListener {

JLabel enterLabel;
   JTextField enterField;
   
   // set up applet's GUI
   public void init()
   {
      // get content pane and set its layout to FlowLayout
      Container container = getContentPane();
      container.setLayout( new FlowLayout() );

      // set up JLabel and JTextField for user input
      enterLabel = new JLabel( "Mapped Drive: " );
      // parses and chops the name to eight if there is a space (like Frankie User),
      // or leaves it as is if correct (FUser)
      container.add( enterLabel );

      enterField = new JTextField( 30 );
      container.add( enterField );

      // register this applet as enterField's action listener
      enterField.addActionListener( this );

   }  // end method init

   // obtain user input
   public void actionPerformed( ActionEvent actionEvent )
   {

      String entered = actionEvent.getActionCommand();
      String website = null;
      String server = "http://go.msn.com/0000/5/74.asp";

      if(entered.equals(""))
      {
            JOptionPane.showMessageDialog(null, "Please enter a server.");
            return;
      }
      else
      {
      	website = entered;
      }
 
   try { getAppletContext().showDocument(new URL(server+website), "_self"); } catch(MalformedURLException mue) { JOptionPane.showMessageDialog(null, mue.getMessage());; }
      
   }

}  // end class POC
Just compile that and stuff. should work. mighta done something wrong tho.
Posted By: pergesu Re: using msn as a backway in at school - 02/27/03 05:19 AM
The applet's still up, it was just that shortly after I posted this I moved my server. But everything's good now.
download a keylogger onto the computers... thats what i did....
Posted By: §intå× Re: using msn as a backway in at school - 11/16/03 05:16 AM
Quote:
download a keylogger onto the computers... thats what i did....
What the hell dose that have to do with this post?
stupid
Posted By: Sicosis Re: using msn as a backway in at school - 01/08/04 03:05 AM
My school sucks, I tried it and it still won't work
Posted By: Defcon Re: using msn as a backway in at school - 01/08/04 05:06 AM
Again, Stop bringing back old topics with crappy single sentance answers... if you can't contribute then don't post, simple as that, it's quite annoying and most topics die for a reason. So please just stop the damn crap
Posted By: §intå× Re: using msn as a backway in at school - 01/08/04 05:25 AM
Quote:
Originally posted by pc_phreak88:
My school sucks, I tried it and it still won't work
OMG, this post is over a year old and you felt the need to bring it back up to let us know you have no clue how your school block sites. That was dumb. Why did you feel the need to share this worthless bit of info. Nevrmind, do not answer that. Like Defcon says, do not bring really old posts back if you have nothing to contribute. By nothing to contribute I mean this.

1.) Will your post help anyone else?

2.)Dose your post offer knowledge not preveously discussed in the topic?

3.) is your post more than 1 sentence or more than 10 words?

If the answer to any of these is no, then do not post on the old topic.
© UGN Security Forum