| Joined: Apr 2002 Posts: 730 UGN Supporter | UGN Supporter Joined: Apr 2002 Posts: 730 | 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?
2 people can keep a secret as long as one is dead
| | |
▼ Sponsored Links ▼
▲ Sponsored Links ▲
| | | Joined: Dec 2002 Posts: 3,255 Likes: 3 UGN Elite | UGN Elite Joined: Dec 2002 Posts: 3,255 Likes: 3 | could easily be done with HTML and Java script. <form action="page with the javascript code">
<input type="text" name="domain_name">
<input type="submit" value="goto site">
</form> <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 | | | | Joined: Feb 2002 Posts: 7,203 Likes: 11 Community Owner | Community Owner Joined: Feb 2002 Posts: 7,203 Likes: 11 | Got to love our little [censored] learner there ... I often ask myself, why doesn't he apply to be a globalmod, or admin even, kind of funny ... | | | | Joined: Dec 2002 Posts: 3,255 Likes: 3 UGN Elite | UGN Elite Joined: Dec 2002 Posts: 3,255 Likes: 3 | 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. | | | | Joined: Mar 2002 Posts: 1,136 UGN Elite Poster | UGN Elite Poster Joined: Mar 2002 Posts: 1,136 | 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. | | | | Joined: Apr 2002 Posts: 730 UGN Supporter | UGN Supporter Joined: Apr 2002 Posts: 730 | hey perg, if u would like please write the applet... or tell meh how 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].
2 people can keep a secret as long as one is dead
| | | | Joined: Mar 2002 Posts: 1,136 UGN Elite Poster | UGN Elite Poster Joined: Mar 2002 Posts: 1,136 | 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 | | | | Joined: Mar 2002 Posts: 599 UGN's Resident Homo | UGN's Resident Homo Joined: Mar 2002 Posts: 599 | 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.
"It's better to burn out, than to fade away."
| | | | Joined: Dec 2002 Posts: 3,255 Likes: 3 UGN Elite | UGN Elite Joined: Dec 2002 Posts: 3,255 Likes: 3 | I was tired last night. I got it figured out. Plain simple HTML would do it. <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> | | | | Joined: Mar 2002 Posts: 1,136 UGN Elite Poster | UGN Elite Poster Joined: Mar 2002 Posts: 1,136 | 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. | | | | Joined: Dec 2002 Posts: 3,255 Likes: 3 UGN Elite | UGN Elite Joined: Dec 2002 Posts: 3,255 Likes: 3 |
<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? | | | | Joined: Apr 2002 Posts: 730 UGN Supporter | UGN Supporter Joined: Apr 2002 Posts: 730 | 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.
2 people can keep a secret as long as one is dead
| | | | Joined: Mar 2002 Posts: 56 Junior Member | Junior Member Joined: Mar 2002 Posts: 56 | 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. // 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. | | | | Joined: Mar 2002 Posts: 1,136 UGN Elite Poster | UGN Elite Poster Joined: Mar 2002 Posts: 1,136 | The applet's still up, it was just that shortly after I posted this I moved my server. But everything's good now. | | | | Joined: Nov 2003 Posts: 13 Junior Member | Junior Member Joined: Nov 2003 Posts: 13 | download a keylogger onto the computers... thats what i did....
Perfection Through Silence.
| | | | Joined: Dec 2002 Posts: 3,255 Likes: 3 UGN Elite | UGN Elite Joined: Dec 2002 Posts: 3,255 Likes: 3 | download a keylogger onto the computers... thats what i did.... What the hell dose that have to do with this post? | | | | Joined: Jan 2004 Posts: 28 Junior Member | Junior Member Joined: Jan 2004 Posts: 28 | My school sucks, I tried it and it still won't work
Life's a [censored] and then you die so [censored] the world and let's get high!
| | | | Joined: Mar 2002 Posts: 384 Member | Member Joined: Mar 2002 Posts: 384 | 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
"Remember how much fun you had shooting spitwads at the teacher in seventh grade? Imagine applying that kind of attitude to actually [censored] with Mitsubishi!" - Jello Biafra
| | | | Joined: Dec 2002 Posts: 3,255 Likes: 3 UGN Elite | UGN Elite Joined: Dec 2002 Posts: 3,255 Likes: 3 | 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. | | |
Forums41 Topics33,840 Posts68,858 Members2,176 | Most Online3,253 Jan 13th, 2020 | | | |