Sailor Moon - The Power of Friendship (TV Show, Vol. 2)

VHS : Sailor Moon - The Power of Friendship (TV Show, Vol. 2)

Sailor Moon - The Power of Friendship (TV Show, Vol. 2)

starring: Jill Frappier, Katie Griffin, Susan Roman, Ron Rubin, Karen Bernstein
directed by: Junichi Sato



 : Sailor Moon - The Power of Friendship (TV Show, Vol. 2)
See Larger Image







Audience Rating: Unrated
Binding: VHS Tape
EAN: 0702727077432
Format: Animated, Color, NTSC
Label: A.D. Vision
Manufacturer: A.D. Vision
Number Of Items: 1
Publisher: A.D. Vision
Release Date: 2000-11-21
Studio: A.D. Vision
Theatrical Release Date: 1995-09-11



Editorial Review:

Amazon,comBy day she is Serena, a student at Crossroads Junior Academy. But when the safety of the world is at stake, she transforms into the magical Sailor Scout known as Sailor Moon. With the guidance and wisdom of her talking cat, Luna, Sailor Moon is one tough super hero. In this second volume of four episodes ('Computer School Blues,' 'Time Bomb,' 'An Uncharmed Life,' and 'Nightmare in Dreamland'), we are introduced to some new Sailor Scouts, Sailor Mars and Sailor Mercury. These brave girls take on the menacing forces of Queen Beryl and her evil sidekick Jedite. They use their quick wits and fantastical powers to triumph over the villains, proving that friendship and doing the right thing win out. At the end of each episode Sailor Moon gives her ideas on what it takes to have strong character. They include 'do your homework,' 'get a good night's sleep,' 'listen to your parents.' These words of wisdom are some that both young and old can live by. Sailor Moon is a favorite of young girls around the world, and this collection features the edited shows that play on the Cartoon Network. For ages 5-12. --Peggy Maltby Etra

















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: 1 out of 5 stars - Mommy can i have the orignal
This tape is not very good. Its all chopped up. All of the good parts are taken out. Why can't DIC leave it UNCUT. The Uncut version is so much better. It makes more sense to . So if you love Sailor Moon buy Sailor Moon season one uncut on DVD.If you go to ebay you can get episodes 1-200.



Rating: 4 out of 5 stars - Mizu no Mercury! Hi no Mars!
A four great episodes. If you like Ami Mizuno/Amy Anderson or Rei/Raye Hino then buy this. It isn't as good as the orginal Japanese but it is still pretty good.



Rating: 5 out of 5 stars - the 2nd volume!
I've watched all the seasons except Stars on TV, and I want to try to have as many videos and dvds of Sailor Moon as possible. One day I hope to have all the videos and dvds so i can see all of sailor moon's great adventures. buy this videos, it's great!



Rating: 3 out of 5 stars - it is ok
it isnt so bad but i like hearts in ice better.i watch it a little while.and well serana's voice sounds diffrent.my favorite salior scout is salior mini moon but on this show it does not have salior mini moon.



Rating: 4 out of 5 stars - friends to the resuce moon prisim power
Hi it's good has 2 unseen episdoes and the story line is about serena making new friends who happen to also be new scouts . In saving the universe even serena needs sidekicks and Mercury and Mars fit the bill to a T . enjoy



read more customer reviews on Sailor Moon - The Power of Friendship (TV Show, Vol. 2)


 



  wisescreen tv
Kitchen and Housewares  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.






Sailor Moon - The Power of Friendship (TV Show, Vol. 2)

Shopping