Author Topic: Crash IE..  (Read 705 times)

Pantso

  • Member
  • **
  • Posts: 1,249
  • Kudos: 55
    • http://www.support-freesoftware.org
Crash IE..
« on: 3 May 2003, 15:24 »
If you haven't read this until now and are using IE from version 4.0 and up, read this article on Slashdot!

Or, if you can't wait, go here, to crash your Internet Exploder. Haha, are you still using it?  :D

suselinux

  • Member
  • **
  • Posts: 711
  • Kudos: 30
Crash IE..
« Reply #1 on: 3 May 2003, 15:42 »
One time I wish I was running Windows ,so I could try to crash Explorer.

One more reason for that remove IE button in XP.

I remember a post about code that could open your CD
drives and now this crashing IE.  what next HTML code that crashes the entire System?  :D

xyle_one

  • VIP
  • Member
  • ***
  • Posts: 2,213
  • Kudos: 135
Crash IE..
« Reply #2 on: 3 May 2003, 15:47 »
i like it. i should make a sit that sees if you are using explorer, and if you are, redirects you to that page. if not of course, you will be free to wander my site and explore its magical funtivities.

TheKnifeThrower

  • Member
  • **
  • Posts: 124
  • Kudos: 0
Crash IE..
« Reply #3 on: 3 May 2003, 16:06 »
When i go to the page in IE the browser window just closes without crashing.

Pantso

  • Member
  • **
  • Posts: 1,249
  • Kudos: 55
    • http://www.support-freesoftware.org
Crash IE..
« Reply #4 on: 3 May 2003, 18:30 »
quote:
Originally posted by TheKnifeThrower:
When i go to the page in IE the browser window just closes without crashing.


Looks like that it depends on the version of Windows one ir running as well. Nonetheless, it could be a real pain in the ass. For example, try to imagine what this sort of 'trick' could do in HTML-enabled discussion boards.    

PS And all of that with only one line of HTML code.   :eek:

Refalm

  • Administrator
  • Member
  • ***
  • Posts: 5,183
  • Kudos: 704
  • Sjembek!
    • RADIOKNOP
Crash IE..
« Reply #5 on: 3 May 2003, 22:07 »
I could really use that code in the Microsoft OS forum... keeps all those Windoze trolls away  

M51DPS

  • VIP
  • Member
  • ***
  • Posts: 608
  • Kudos: 30
Crash IE..
« Reply #6 on: 3 May 2003, 22:57 »
quote:
I like it. I should make a site that sees if you are using Explorer, and if you are, redirects you to that page. if not of course, you will be free to wander my site and explore its magical funtivities.


Could someone give me code like that for my website?

Fett101

  • VIP
  • Member
  • ***
  • Posts: 1,581
  • Kudos: 85
    • http://fgmma.com
Crash IE..
« Reply #7 on: 3 May 2003, 23:07 »
Or, you could set computers at schools or your friends house to that as the home page. Most people would have no clue how to fix that.

Pantso

  • Member
  • **
  • Posts: 1,249
  • Kudos: 55
    • http://www.support-freesoftware.org
Crash IE..
« Reply #8 on: 3 May 2003, 23:53 »
quote:
Originally posted by M51DPS:


Could someone give me code like that for my website?



It's really simple. Here it is:

Code: [Select]

Notice that it's only the <input> tag and the 'type' attribute that cause the crash. Take it and do what you wish with it. After all, it might take M$ another 7 years before they magically 'patch' this one as well.   :D

dteyn

  • Newbie
  • *
  • Posts: 2
  • Kudos: 0
Crash IE..
« Reply #9 on: 4 May 2003, 00:46 »
HAHAHAHAHAHAAHAHAHAHAHA!!!  ;)

A new record has been set for M$... crash IE in only one line of code! Hahahaha... god damn, that's just hilarious.

Here are some more exploits for IE... I really, really wonder sometimes why people CHOOSE to use IE as their web browser.... I guess they're just uneducated.  ;)

http://www.pivx.com/larholm/unpatched/
"Microsoft Windows -- It's not an OS, it's a POS." -- Me

M51DPS

  • VIP
  • Member
  • ***
  • Posts: 608
  • Kudos: 30
Crash IE..
« Reply #10 on: 4 May 2003, 01:13 »
quote:
Code: [Select]

Notice that it's only the <input> tag and the 'type' attribute that cause the crash. Take it and do what you wish with it. After all, it might take M$ another 7 years before they magically 'patch' this one as well.      :D


I know the code to make it crash, i meant what ecsyle was talking about. Or maybe instead of redirecting someone I should make a tiny invisible frame that every page has.

[ May 03, 2003: Message edited by: M51DPS ]


Pantso

  • Member
  • **
  • Posts: 1,249
  • Kudos: 55
    • http://www.support-freesoftware.org
Crash IE..
« Reply #11 on: 4 May 2003, 01:22 »
quote:
I know the code to make it crash, i meant what ecsyle was talking about. Or maybe instead of redirecting someone I should make a tiny invisible frame that every page has.


You didn't hear that from me..   :D

[ May 03, 2003: Message edited by: Panos ]


zoolooo

  • Member
  • **
  • Posts: 54
  • Kudos: 0
Crash IE..
« Reply #12 on: 4 May 2003, 02:22 »
This is the bit you need - replace the bold stuff with yours.

 
quote:
<html>
<head>
        <meta http-equiv="refresh" content="1;
URL=http://http://www.domain.com/realhomepage.html">
</head>
<body>
<script language="javascript">
<!--
if (navigator.appName == "Microsoft Internet Explorer") {
        document.location = "http://www.domain.com/ie_crash.html";
} else {
        document.location = "http://www.domain.com/realhomepage.html";
}
// -->
</script>
</body>
</html>  


zooloo

M51DPS

  • VIP
  • Member
  • ***
  • Posts: 608
  • Kudos: 30
Crash IE..
« Reply #13 on: 4 May 2003, 23:28 »
Thanks everyone, now to go have some fun    ;)  .

EDIT: I just did some testing, works perfectly. To avoid making a seperate home page I modified the code slightly so that I could put it in every page. Here's what I got:

Code: [Select]

[ May 04, 2003: Message edited by: M51DPS ]