Tim Burton's The Nightmare Before Christmas

VHS : Tim Burton's The Nightmare Before Christmas

Tim Burton's The Nightmare Before Christmas

starring: Danny Elfman, Chris Sarandon, Catherine O'Hara, William Hickey, Glenn Shadix
directed by: Henry Selick



 : Tim Burton's The Nightmare Before Christmas
See Larger Image







Audience Rating: PG (Parental Guidance Suggested)
Binding: VHS Tape
EAN: 9786303122649
Format: Animated, Closed-captioned, Color, Dolby, NTSC
ISBN: 6303122647
Label: Walt Disney Video/Touchstone Home Video
Manufacturer: Walt Disney Video/Touchstone Home Video
Number Of Items: 1
Publisher: Walt Disney Video/Touchstone Home Video
Release Date: 1997-08-26
Studio: Walt Disney Video/Touchstone Home Video
Theatrical Release Date: 1993-10-29



Editorial Review:

Amazon.comFor those who never thought Disney would release a film in which Santa Claus is kidnapped and tortured, well, here it is! The full title is Tim Burton's The Nightmare Before Christmas, which should give you an idea of the tone of this stop-action animated musical/fantasy/horror/comedy. It is based on characters created by Burton, the former Disney animator best known as the director of Pee-wee's Big Adventure, Beetlejuice, Edward Scissorhands, and the first two Batman movies. His benignly scary-funny sensibility dominates the story of Halloweentown resident Jack Skellington (voice by Danny Elfman, who also wrote the songs), who stumbles on a bizarre and fascinating alternative universe called ... Christmastown! Directed by Henry Selick (who later made the delightful James and the Giant Peach), this PG-rated picture has a reassuringly light touch. As Roger Ebert noted in his review, 'some of the Halloween creatures might be a tad scary for smaller children, but this is the kind of movie older kids will eat up; it has the kind of offbeat, subversive energy that tells them wonderful things are likely to happen.' --Jim Emerson

















Related Items:
     see more

Related Items:



banned interdit verboden prohibido vietato proibido
  banned    interdit    verboden   vietato     prohibido    verboden  banned      vietato      interdit proibido   vietato       interdit      verboden      banned  prohibido   

Your IP has been blocked. Please perform the action below to regain access.

Code:  security image
Please enter the Code: 



Customer Reviews
Average Rating:  out of 5 stars

Rating: 5 out of 5 stars - The Nightmare Before Christmas
Tim Burton has created a masterpiece with The Nightmare Before Christmas.
In the Blu-Ray Format you see the amazing amount of detail that has been painstakingly built into this movie. The color and shadings are more impressive than it has ever been seen in Theaters. The depth looks very
much like the 3D film that was re-released last year. The over all look
including color depth exceeds the 3D version. This is a must own for collectors who want to show off there home theater.



Rating: 4 out of 5 stars - Nightmare delivery!
This order was lost in the mail & I sent an email stating I had yet to receive the DVD that was ordered to be received in time for my daughter to enjoy will recouperating from surgery....Amazon promptly resent the DVD next day air, while it wasn't the surprise I hoped it was still nice to have that kind of service to replace a missing order.



Rating: 4 out of 5 stars - Missing scenes
I bought the special edition DVD for my husband on our anniversary. We were all excited to watch it on Halloween...as we were watching it my husband realized that they cut out some parts...the best part of "This is Halloween" song. My husband was disappointed b/c he loves that song and he noticed that a few lines from the song were cut. We don't know if our DVD skipped, got a bad copy or if this was actually cut from the original version.



Rating: 5 out of 5 stars - Blu-Ray Makes this Classic Shine
I agree that this film is an absolute masterpiece, so I'll just review it's Blu-Ray attributes. The digital mastering and sound is simply superb. On a 1080p display, the picture is so clear that it looks like a 3D live puppet show happening in your living room. The audio is absolutely stunning too. On a surround sound system, this disc simply rocks. With all of the added commentary and bonus features this Blu-Ray Disc is an absolute must for any Hi-Def aficionado. Highly recommended.



Rating: 5 out of 5 stars - amazing story and fun video
I was 25 when I saw Nightmare Before Christmas for the first time. A lot of us know what it's like to be stuck in a particular role and be longing for something else. Jack Skellington tries to break away from that mold in order to find a deeper meaning in life. It's a wonderful movie I encourage everyone to see.



read more customer reviews on Tim Burton's The Nightmare Before Christmas


 



  Plasms TV
Toys  equipment





Ford's next-gen hybrid is aimed squarely at the Toyota Camry Hybrid, and it's one car that just might help Ford escape the implosion of Detroit.
Add to Facebook Add to Reddit Add to digg Add to Google


Make winter a wonderland with these high-end snow toys.

via Salon

It's almost cruel of us to post about the Schöpfer Oculus, a 250-foot luxury yacht inspired by an oceanic fish.

With room for 12 people to comfortably cruise at 25 knots, the rear of the Oculus remains open like a gigantic jaw that's eating the passengers alive in luxury. And what appears to be a cleverly-placed window fills in an apt spot for an eye.

Inside, the ceilings reach an impressive 12-feet (hey, those are higher than where I live every day!) while the entire boat is still described as a "low rider," featuring retractable panels that protect the decks from swells. Wait, why are we even bothering to explain all of this to you? You can't afford it. [Schopfer Yachts via DVICE]


via Gizmodo

Joe Walker

If you want to protect yourself from a XSS attack, what characters should you escape? I've seen 2 recommendations:

  • ', ", <, > and & should be converted to ', ", <, >, &
  • Convert anything that isn't ASCII alphanumeric to &#xx;

I've seen the second recommended more and more recently. Which is best?

The argument for escaping all non-ASCII alphanumeric

It's a known security tenet that whitelisting is safer than blacklisting. If you're just escaping ', ", <, > and & then you're blacklisting, which isn't as safe as whitelisting.

There are some practical examples of how this can play out -

(I'm using $ to represent the injection point. This would probably crop up in a template something like this: )

If all the escape() function does is to escape ', ", <, > and &, then what if the user entered a data: URL? You could end up with the following output:

test

Which in case you can't do base64 in your head is equivalent to this:

test

Clearly this is bad - we've let a user XSS us even though we are filtering for XSS. There are many more examples that are similar.

The argument for escaping only ', ", <, > and &

The bad news is that more filtering does not help. If we enhance our escape function to encode every non-alpha, then we would get the following output:

test

Here's the bad news - the above works. (Look: test (if this script gets into your RSS aggregator, then you need a new RSS aggregator.))

Adding the extra filtering has had the following effect:

  • It's hidden the hole, so now we're less likely to notice it, and fall in.
  • It's wasted bandwidth

So how do we keep ourselves clear of XSS attacks?

The solution is to understand about insertion points.

The following insertion points, are ones that I believe are safe if ', ", <, > and & are escaped:

  • $
    (Where div could be p, h*, li, etc - things expecting textual content)
  • (i.e. somewhere else that expects textual content)
  • (needs different escaping rules)

I think it's likely that virtually any other insertion point is likely to be dangerous. Some examples:

  • (no amount of escaping will protect you, prepare to die)
  • $> (there are countless events we could latch into, including several non-standard, hard to find ones)
  • ... (JavaScript pops up in CSS in many places like width:expression(script_here))
  • ... (The example we used above)
  • (For similar reasons)
  • etc.

The key it to understand the environment into which we are allowing injection. The trend for separating content, style and action into separate files is good because it more clearly defines the environment, but that doesn't stop HTML from being able to embed CSS.

I once saw some code that was JSP containing Java containing HTML containing CSS and JavaScript containing SQL all on one line. An environment so confused that it contained it's very own security hole built right in.

Filtering in DWR

DWR version 3 is nearly cooked, and our escaping functions use the simpler escaping system of just escaping ', ", <, > and &. If anyone knows of any attack that a broader filtering system would protect people from, then please comment.

If you want to protect yourself from a XSS attack, what characters should you escape? I've seen 2 recommendations:

  • ', ", <, > and & should be converted to ', ", <, >, &
  • Convert anything that isn't ASCII alphanumeric to &#xx;

I've seen the second recommended more and more recently. Which is best?

The argument for escaping all non-ASCII alphanumeric

It's a known security tenet that whitelisting is safer than blacklisting. If you're just escaping ', ", <, > and & then you're blacklisting, which isn't as safe as whitelisting.

There are some practical examples of how this can play out -

(I'm using $ to represent the injection point. This would probably crop up in a template something like this: )

If all the escape() function does is to escape ', ", <, > and &, then what if the user entered a data: URL? You could end up with the following output:

test

Which in case you can't do base64 in your head is equivalent to this:

test

Clearly this is bad - we've let a user XSS us even though we are filtering for XSS. There are many more examples that are similar.

The argument for escaping only ', ", <, > and &

The bad news is that more filtering does not help. If we enhance our escape function to encode every non-alpha, then we would get the following output:

test

Here's the bad news - the above works. (Look: test (if this script gets into your RSS aggregator, then you need a new RSS aggregator.))

Adding the extra filtering has had the following effect:

  • It's hidden the hole, so now we're less likely to notice it, and fall in.
  • It's wasted bandwidth

So how do we keep ourselves clear of XSS attacks?

The solution is to understand about insertion points.

The following insertion points, are ones that I believe are safe if ', ", <, > and & are escaped:

  • $
    (Where div could be p, h*, li, etc - things expecting textual content)
  • (i.e. somewhere else that expects textual content)
  • (needs different escaping rules)

I think it's likely that virtually any other insertion point is likely to be dangerous. Some examples:

  • (no amount of escaping will protect you, prepare to die)
  • $> (there are countless events we could latch into, including several non-standard, hard to find ones)
  • ... (JavaScript pops up in CSS in many places like width:expression(script_here))
  • ... (The example we used above)
  • (For similar reasons)
  • etc.

The key it to understand the environment into which we are allowing injection. The trend for separating content, style and action into separate files is good because it more clearly defines the environment, but that doesn't stop HTML from being able to embed CSS.

I once saw some code that was JSP containing Java containing HTML containing CSS and JavaScript containing SQL all on one line. An environment so confused that it contained it's very own security hole built right in.

Filtering in DWR

DWR version 3 is nearly cooked, and our escaping functions use the simpler escaping system of just escaping ', ", <, > and &. If anyone knows of any attack that a broader filtering system would protect people from, then please comment.






Tim Burton's The Nightmare Before Christmas

Shopping