Hacking MySpace AfterMath: Code, Explanations and Prevention Google公司:代码,解释和预防
Update: You may also want to look at:更新:您可能也想要看看: MySpace Hack: How To View Any Users Private Videos myspace哈克:如何看待任何用户的私人影片 . 。
Recently最近 Samy德萨米 [samy at namb dot la] released a worm ["Samy worm" or "JS.Spacehero worm"] in MySpace, popular social networking platform like Friendster, which caused him to be added as hero to millions of MySpace users (”but most of all, samy is my hero.”) as well as add him as their friend, all without their explicit permission. [德萨米在北美传道部斑点香格里拉]发布了一个蠕虫[ “德萨米蠕虫”或“ js.spacehero蠕虫” ]在MySpace上,流行的社交网络平台一样,和Friendster ,这使他增加一条,作为英雄,数以百万计的MySpace上的用户( “但最所有,德萨米是我的英雄“ ) ,以及添加他为他们的朋友,都没有他们的明确许可。
After flooding the Network, MySpace stepped in and fixed the hole.水浸后,网络,在MySpace上加强和固定孔。 Samy is still “hero” to millions of MySpace users in their profile.德萨米仍是“英雄” ,数以百万计的MySpace上的用户在他们的个人资料。
The purpose of this article is to highlight the security issues exposed by this worm.本文的目的是要强调安全问题所暴露出来的这种蠕虫病毒。 It is definitely not limited to MySpace alone and the worm propagated not due to MySpace’s fault but fault of browser like Internet Explorer.这绝对不是仅限于MySpace上单独和蠕虫病毒传播并不是因为MySpace上的故障,但故障的浏览器如Internet Explorer 。 And the flaw is waiting to be exploited in several other web applications of similar nature like Ryze or LinkedIn etc..和缺陷是等待被剥削,在其他几个Web应用程序类似性质的一样, ryze或LinkedIn的等。 In the remainder of this article I will summarize the modus-operandi of his script and suggest on ways to protect your web application against such attacks.在本文的其余部分,我会总结的手法-的运作,他的脚本,并建议就如何保障您的Web应用程序对此类攻击。
Samy used AJAX to add himself as a friend and hero when users visited his page.德萨米使用Ajax的添加自己作为一个朋友和英雄,当用户访问其网页。 This requires Javascript to be executed in the browser which does the dirty work.这需要JavaScript来执行,在浏览器是否肮脏的工作。
MySpace dutifully eliminates javascript from users html (which becomes their profile). MySpace上尽职尽责地消除了用户的JavaScript的HTML (即成为他们的个人资料) 。 However Sammy disguised the word javascript with an embedded newline - “java\nscript”.但萨米变相字的JavaScript与嵌入式换行符-“华\ n script” 。
MySpace doesn’t allow script tags. MySpace上是不容许的脚本标记。 So he embedded his javascript in CSS - style=”background:url(’javascript:eval(document.all.mycode.expr)’)”因此,他嵌入式他的JavaScript在CSS -作风= “背景:网址( '的J avaScript: e val( d ocument.all.mycode.expr) ' ) ”
AJAX can fetch documents from the same domain (or sub-domain) only.阿贾克斯可以撷取文件来自相同网域(或子网域)只。 So if the user was on profile.myspace.com, he moved them to www.myspace.com which provides the same information but allows him to be added as a friend.因此,如果用户对profile.myspace.com ,他提出他们www.myspace.com ,其中提供相同的信息,但让他被加入成为好友。
if (location.hostname == 'profile.myspace.com') document.location = 'http://www.myspace.com' + location.pathname + location.search; 如果( location.hostname == ' profile.myspace.com ' ) document.location = ' http://www.myspace.com ' + location.pathname + location.search ;
After overcoming a trvial hash issue he adds his code and “but most of all, samy is my hero.” text to users profile.之后,克服trvial哈希的问题,他说他的代码和“ ,但最重要的是,德萨米是我的英雄” 。文本给用户的个人资料。 This causes the worm to propagate not only when users visit his site but also when they visit any of the infected users.这会导致蠕虫传播,不仅当用户访问他的网站,而且当他们访问任何受感染的用户。 Yes, simple exponential spreading.是的,简单的指数蔓延。
Samy provides德萨米提供 detailed notes and code for his exploit详细的笔记和代码,他利用 after the exploit was filtered / stopped by MySpace.后利用过滤/阻止MySpace上。
How can you protect your web application from such attacks? 你如何能保护您的Web应用程序,从这类攻击呢?
First and foremost I assume you have filtering in place like MySpace did filtering scripts and javascript tags etc. However obviously that is not enough; not even close.首先我假定你有滤波在的地方,像MySpace没有过滤脚本和JavaScript标记等,但显然是不够的;甚至不密切。
Your filtering tags should be intelligent to recognize words separated by newlines as shown above.您的过滤标签应智能承认的话分隔换如上所示。
Other users profile (or any html content) should be viewable only from a separate sub-domain.其他用户的个人资料(或任何HTML内容) ,应检视只从一个单独的子网域。
Any actions like adding a link, friend, connection etc. must be done from pages which can never contains any other users code.任何行动一样,添加链接,朋友,连接等必须做的,从页面,可从来没有包含任何其他使用者守则。 If you provide a link while viewing others profile to add his as a friend then on clicking you take him to a separate page where the users gets to edit information about his friend and add him after confirmation.如果您提供了链接,而看其他配置文件,以添加他为朋友,然后点击你带他到一个单独的网页,用户得到编辑的资料,他的朋友和添加后,他确认。 This page should not contain any html content from the user being added.这个网页应该不包含任何HTML内容从用户正在补充。
In essence we need to captalize on AJAX security model which prevents code execution from different site.在本质上我们需要captalize对Ajax的安全模式,防止代码执行,从不同的网站。
Filed under提起下 Computer Security计算机安全 , , Headline News头条新闻 , , MySpace MySpace上 , , Social Networking社会网络 , , Tech Note技术说明 , , Technology技术 , , Web网页 , , Web Services Web服务 | |
| |
RSS 2.0 2.0 | |
Trackback Trackback跟踪 this Article |此文章|
Email this Article电子邮件此文章
You may also like to read您也可以想读 |



June 8th, 2006 at 10:46 pm 2006年6月8日在下午10时46分
[Editor] [编辑]
This comment has been deleted as it appears to be a scam to get users passwords in the guise of allowing them to hack another’s account.此评论已被删除,因为它似乎是一个骗局,以获得用户的密码的幌子,让他们入侵他人的帐户。
Please immediately change your password if you have followed the procedure here.请立即更改您的密码如果您有遵循的程序在这里。 Thanks to skeptic and none pointed out the scam (see their comment below).感谢怀疑 ,并没有指出骗案(见他们的评论下文) 。
David Skinner, please change your password immediately if you still can.朱斯金纳,请更改您的密码立即如果您仍可以。
–Original comment -原来的评论
How to hack myspace passwords!如何入侵MySpace上的密码! It is possible and it is easy.是有可能的,这是很容易。 This way of hacking into Myspace accounts was brought to my attention by a ex-girlfriend of mine who is a bit of a computer wizard.这样,黑客进入MySpace帐户被带到了我的注意由前女友矿井谁是位一台电脑精灵。 I have tried the method a least a dozen times and it has worked on all but 2 occasions, I don’t know the reason why it failed a couple of times, but on every other occasion it has got me the password for the requested Myspace address.我曾尝试的方法,至少十多倍,并已对所有工作,但二场合,我不知道原因,却没有一对夫妇的时代,但对每一个其他的场合,它已得到我的密码被请求MySpace上地址。 This is how it is done:这是它是如何做的:
[Removed by editor - see above] [删除编辑器-见上文]
June 11th, 2006 at 2:34 pm 2006年6月11日在下午2时34分
I’m certian the writer of this post has created the /myspaceserveer4you account in order to get the passwords of anyone who writes to him.我certian作家这个职位创造了/ myspaceserveer4you帐户,以取得密码的人谁写信给他。 Think about it - you’re giving YOUR email and password when following these steps!想想它-您给您的电子邮件地址和密码时,按照下列步骤!
June 11th, 2006 at 4:35 pm 2006年6月11日在下午4时35分
its bullshit, the “Server page” is just some random persons myspace account with a name that might sound like its be controled by myspace.其布尔什特, “服务器页” ,只是一些随机人士MySpace上的帐户使用一个名称,可能听起来像是其控制MySpace上。 it isnt, its some dink trying to harvet peoples passwords.它isn't ,它的一些丁克试图harvet人民的密码。
1) Its not a “different server” if it was they would be using something like server.myspace.com. 1 )它不是一个“不同的服务器: ”如果这是他们会使用一些像server.myspace.com 。 the name myspace.com/myspaceserver4you looks just like yours and everyone elses myspace page.名称myspace.com/myspaceserver4you看起来就像你和大家elses MySpace网页。
2) the link you click on to their page is just an “email this user” link, same as any other page. 2 )链接,您按一下他们的网页只是一个“电子邮件此用户”链接,同时作为任何其他网页。
3) type in your own password? 3 )类型,在您自己的密码? O AND your own email address.澳及自己的电子邮件地址。 With that information the person can login with your account.与该信息的人可以登录与您的帐户。 the system KNOWS your email address all ready, because your logged in.该系统知道您的电子邮件地址的所有准备,因为你的登录。
4) If you look up near the top you can see a banner trying to cover up the nav to the other parts of the site. 4 )如果你看看附近的顶端你可以看到一面旗帜,试图掩盖起来,以资产净值的其他部分,该网站。 Why would myspace do that.为什么会MySpace上这样做。
5) the email will be sent in a day? 5 )电子邮件将被发送在某一天呢? It takes a few seconds for a “forgot your password” email to get sent, they expect you to wait a day because thats how long it will take for them to login to your account and change your password.它需要几秒钟为一个“忘了你的密码”的电子邮件得到发送,他们希望你要等待一天,因为这就是需时多久,他们登录到您的帐户和更改密码。
GO ahead try it, your a fucking idiot if you do, and should lose your myspace account because of it.继续尝试它,您的一他妈的白痴,如果你这样做,并要不失时机地MySpace上您的帐户,因为它。
June 11th, 2006 at 9:51 pm 2006年6月11日在下午9点51分
hi, i tried adding him earlier, and i think he accepted, but when i went to find him in my friends list he wasnt there, so when i went to the webiste again, for him, it said he was an invalid user, and it was either cancelled or deleted, now what do i do, or do they just not want me hacking嗨,我试图加入他所说,我认为,他接受了,但是当我去找到他,在我的朋友清单,他wasn't有,所以当我去了webiste再次,对他来说,它说,他是一个无效的用户,这是不是取消或删除,现在我该怎么做,或做他们只是不希望我的黑客
June 11th, 2006 at 10:51 pm 2006年6月11日在下午10时51分
Thanks Skeptic & None for pointing out the scam.感谢怀疑&没有指出骗案。 The comment has been removed to prevent people from getting duped.该意见已被移除,以防止有人得到欺骗。
David Skinner,朱斯金纳
Please immediately change the password of your account.请立即更改密码您的帐户。
Best,最好的,
Angsuman由Angsuman
June 16th, 2006 at 10:26 am 2006年6月16日在上午10时26分
Can someone please tell me how to get my friends myspace password by the giving email address?….I already have the email address, but I need the password!….please give me the steps…thank you有人可以请告诉我如何获得我的朋友MySpace上的密码提供电子邮件地址? … 。我已经有电子邮件地址,但我需要密码! …请给我的步骤…谢谢
June 21st, 2006 at 6:16 am 2006年6月21日在上午06时16分
This is for andre…这是安德烈…
To hack your friend it is simple.侵入你的朋友,这是简单的。 I have never done this but i know it will work.我从来没有这样做,但我知道它会工作。
Use the email site: fmail or fastmail使用电子邮件网站: fmail或fastmail
i do not remmember the site but w/e.我不remmember网站,但瓦特/ e.
Just find any email system/site taht will let you change what the FROM section looks like to the reciever.只要找到任何电子邮件系统/网站,将让你改变什么,从第看起来像到接收器。 Then request YOUR password from myspace and copy and paste ALL of the text from it and then paste it into UR email to ur friend.然后要求您的密码,从MySpace和复制并粘贴所有文字,从它然后将其粘贴到乌拉圭回合的电子邮件,以乌拉圭回合的朋友。 Then find a site that lets you to HTML editing.然后找到一个网站,让您能HTML编辑。 Make your site look like the requested friend’s site.让您的网站样子所要求的朋友的网站。 However make it have an extra page taht says: For extra security please login.不过使它有一个额外的网页,内容为:为额外的安全请登录。 You need to change the login spot so that the info gets sent to your email INSTED of the myspace server.您需要更改登录现货,使信息得到发送到您的电子邮件insted的MySpace上服务器。 Then once ur all done with this editing and script writing which shudnt be that hard, send it to ur friends email taht he uses for his myspace.然后,一旦乌拉圭回合所有做这个编辑和剧本创作,其中shudnt是艰苦奋斗,它传送给乌拉圭回合的朋友的电子邮件,他用他的MySpace上。 Now if he or she falls for it u now have the password.现在,如果他或她属于它u现在有密码。 Before u send it try it out ot make sure it works.前u它传送试试这个城市旅游局确定它的工程。
I reccomend not doing this becuz it is illegal!我建议没有这样做becuz它是非法的! I am not responsible for what you do with these steps of getting a password and have nothing to do with you.我不负责什么,你做这些步骤获得一个密码,并已完全没有与您联系。
June 21st, 2006 at 6:19 am 2006年6月21日在上午06时19分
dear editor u can delete my ocmment if u want i did not write it…亲爱的编辑器u可以删除我的ocmment如果u想,我并没有将它写…
June 28th, 2006 at 8:06 pm 2006年6月28日在下午8时06分
im a dood即时通讯一多德
July 1st, 2006 at 11:41 pm 2006年7月1日在下午11时41分
Is there any other way to stop playgerism?有没有其他办法阻止playgerism ? Cuz this one person(criminal) to0k another person’z (victom) layoutz and place it on there own page, knowing that it was custom made and not free for the public to use. cuz这一人(刑事) to0k另一person'z ( victom ) layoutz将它放在有自己的网页上,明知这是自定义作出,而不是免费提供给公众使用。 The victom is very unhappy and had asked me to find a way to stop this from ocurring or remove their work from the criminalz page.该victom是非常不满,并已要求我找到一种方法,制止这种从ocurring或删除其工作从criminalz页。 Is that possible?是可能的吗? Plz help with w/e U can. plz帮助瓦特/ E的u可以。 Thank-You感谢您
July 4th, 2006 at 8:38 am 2006年7月4日在上午8时38分
nak,洛渊,
You can contact the offender.你可以联络罪犯。 If that doesn’t prove fruitful then you can contact his hosting provider and complain with full details.如果没有证明卓有成效的,然后你可以联络他的托管服务提供商和抱怨,与全部细节。 A filled out DMCA form along with your complaint normally does the trick and the offender is booted from the server in most cases. 1填写DMCA的形式,随着您的投诉,通常的伎俩和罪犯是启动从服务器在大多数情况下。 You final options are respectively:你最后的选择,分别是:
1. 1 。 sending a laywers notice派遣一个laywers通知
2. 2 。 take him to small claims court他向小额钱债法庭
July 8th, 2006 at 10:55 pm 2006年7月8日在下午10时55分
I was just wondering if someone can get a password for me on myspace?!我只是想如果有人可以得到一个密码,我在MySpace上吗! It would be greatly appreciated!!这将大大赞赏! If you know how will you please email me?如果您知道如何将请您发送电子邮件给我? Rocio_mrtn06@yahoo.com rocio_mrtn06@yahoo.com Thank you for your time!谢谢您的时间! =o) =海外)
~!~RM~!~ 〜 ! 〜室〜 ! 〜
July 10th, 2006 at 6:52 am 2006年7月10日在上午06时52分
hey i was wondering if you can get a myspace password for me it would be great!!!嘿我想知道如果你能得到MySpace上的密码对我来说,将是伟大的!
well if soo plz plz plz e-mail me!!!以及如果洙plz plz plz以电子邮件通知我!
japan_niiga@yahoo.com
well its not my e-mail its my bothers because i lost my password lol well yeah plzplzplz this dude has been bothering me for the longist u just dont understand well if u get this plz be sure to write back alright thnx i look forword to hearing frm u!!!以及其不是我的电子邮件,其我的困扰,因为我失去了我的密码lol以及啊plzplzplz这dude一直困扰我为longist u只是不用理解,以及如果u得到这个plz一定要回写好吗thnx我期待forword ,以听证会frm u !
July 10th, 2006 at 9:38 pm 2006年7月10日在下午9点38分
i need my password for my profile i just made!!我需要密码,我的个人资料我刚才提出的! it sux i already forgat it plz email me back im desperate!它sux我已经forgat它plz发送电子邮件给我回即时通讯绝望!
July 11th, 2006 at 11:51 am 2006年7月11日在上午11时51分
hi,my name is kimberly and i have this friend but we are in a fight.ok she hacked into my name and changed my profile deleated all my friends and now is badmouthing me to everyone!i really need help to get into her name.please help me she also even wrote that im lesbian but im not!i really need someones help and FAST before she gets my new password AGAIN!can you or someone help me her email is您好,我的名字是金巴利和我这位朋友,但我们正处在一个fight.ok她侵入了我的名字和改变了我的个人资料deleated我所有的朋友和现在是唱衰我向大家!我真的很需要帮助,得以进入她的名字。请帮助我,甚至她还写道,即时通讯女同志,但即时通讯不是!我真的需要someones帮助和快速之前,她得到我的新密码再次!你能或有人帮助我,她的电子邮件是 jojorocks370@aim.com and thats what she uses to get into myspace please email me with help and answers my email is和这就是她所使用的进入MySpace上,请发电邮给我的帮助和回答我的电子邮件是
deviledbunny@aim.com PLEASE HELP !!!请帮帮忙!
July 13th, 2006 at 1:32 pm 2006年7月13日在下午1时32分
i need the pasword to我需要pasword ,以 chantel_eubanks@yahoo.com for myspcae.com because she keeps doing stuff to my account so can i get the password to that email address email me on为myspcae.com ,因为她一直做的东西到我的帐户,所以我可以得到密码,以该电子邮件地址发送电子邮件给我就
chantel_eubannks@yahoo.com
July 13th, 2006 at 2:30 pm 2006年7月13日下午2时30分
You can retrieve your MySpace password您可以检索您的MySpace上的密码 here这里 . 。
July 16th, 2006 at 11:58 pm 2006年7月16日在下午11时58分
WoW!哇! I just reed this!我只是芦苇! Crazzy! crazzy ! I have a few questions…I’v hacked into someone’s page before by using there page sorce and posting it in myspace groups and then would post a pic in the code…I was just messing around, But Some how it changed the kids page!我有几个问题… i'v侵入某人的网页之前,用有一页sorce和张贴在MySpace上团体,然后将事先知情同意后在代码中… …我只是梅辛左右,但一些如何改变孩子们页! I just wanna know what exactly did i do?我只想知道,究竟做我该怎么办?
I’m just getting into hacking…So can you tell me how i did it…& recommended any great Hacking Bookz to learn more!我只是进入黑客… ,使你能告诉我,我如何没有… &建议,任何伟大的黑客bookz ,以了解更多!
Thx! thx !
July 17th, 2006 at 2:19 am 2006年7月17日在上午02时19分
I neither encourage nor condone hacking into other people’s account. i既不鼓励,也不纵容黑客入侵到其他人的帐户。
July 18th, 2006 at 4:00 am 2006年7月18日上午4:00
[...] The unnamed worm isn’t malicious but the Shockwave Flash (.swf) file containing the payload embeds JavaScript into the profile of any MySpace user who views the .swf file. [ … … ]无名蠕虫并非恶意,但的Shockwave Flash ( 。瑞士法郎)文件,其中包含有效载荷的JavaScript嵌入到个人资料的任何MySpace上的用户谁的意见。 SWF文件。 This can easily replicate Samy is my friend worm without breaking a sweat.这可以很容易复制德萨米是我的朋友蠕虫没有打破了汗水。 [...] [ … … ]
July 18th, 2006 at 4:53 pm 2006年7月18日在下午4时53分
this crazy bitch got on my profle and made my URL isuckcowdick and made ppl think i wuz a nut case so i wanna hack in2 hers 2 get my revenge.这个疯狂的荡妇了我的profle ,并取得了我的网址isuckcowdick和作出的脂肪酶觉得我wuz螺帽的情况,所以我要开刀平方英寸她的二让我的报复。 plz help!!! plz帮助! omg u dont kno how much it would mean 2 me. omg u不用kno多少这将意味着2我。 her e-mail is她的电子邮件是 emma.massingil@sbcglobal.net emma.massingil @ sbcglobal.net
plz help!! plz帮助!
July 19th, 2006 at 7:46 pm 2006年7月19日在下午7点46分
will someone send me info how to hack myspace?会有人向我发送信息如何入侵MySpace上?
If so, i’d greatly appreciate it?如果是的话,我要十分欣赏它呢?
darkxprincexofxdeath@hotmail.com
July 20th, 2006 at 10:41 am 2006年7月20日在上午10时41分
SOME PSYHCO HACKED IN TO MY MYSPACE ACCOUNT AND I CANT LOGO IN…CAN ANY ONE HELP!一些psyhco砍死在我的MySpace上的帐户,并cannot标志… …可以在任何一个帮助! EMAIL AT电子邮件 http://WWW.URUGLY@HOTMAIL.COM http://www.urugly @ hotmail.com THANX thanx
July 22nd, 2006 at 1:58 am 2006年7月22日在上午01时58分
i want to hack into我想哈克到 texancutie9088@msn.com because i do beleive my boyfriend is cheatin on me with her.因为我相信我的男朋友是cheatin对我与她。 can someone please find her password, or tell me how to?有人可以请找到她的密码,或告诉我如何? thanks谢谢
July 24th, 2006 at 6:39 pm 2006年7月24日在下午6时39分
i need help on finding out a password on myspace.我需要帮助就找了一个密码,在MySpace上。 her email addy is她的电子邮件是addy baby_gemini69@hotmail.com . 。 she is my ex fiance and i would love to find out if she has been cheating on me.她是我的前未婚夫和我的爱,看看是否她一直在欺骗我。 for her to call off the engagement.她呼吁小康的参与。
July 31st, 2006 at 7:26 am 2006年7月31日在上午07时26分
i was wondering if there’sa way I can recover a password for a myspace account that is currently signed on on my computer.我想知道如果有办法,我可以收回的密码为MySpace上的帐户是目前签署了关于在我的电脑上。 the auto complete and all that stuff is off, so it isn’t stored on the page itself.自动完成,所有的东西是关闭的,因此它是没有储存在网页本身。
July 31st, 2006 at 12:45 pm 2006年7月31日下午12时45分
ok i need some help.确定我需要一些帮助。 my girlfriend keeps hacking into my myspace and i know its not because shes good at guessing my password because i change it all the time and use the most random possible password… she thinks im cheating on her and i think she just has a guilty conscious and want to take a look at hers to reassure myself..我的女朋友不断侵入我的MySpace和我知道它不是因为shes善于猜测我的密码,因为我改变它所有的时间和使用最可能的随机密码…她认为,即时通讯作弊,她和我觉得她只是心虚意识和要考虑一下她放心,自己.. so if someone could help me out please e-mail me i would greatly appreciate it…因此,如果有人可以帮助我走出,请以电子邮件通知我,我十分欣赏它… dnice722435@hotmail.com hers is她是 elvis317@cox.net
August 2nd, 2006 at 7:32 pm 2006年8月2日在下午7点32分
so, basically i want to entertain myself by reading other people’s mail on myspace.所以,基本上我想娱乐自己,通过阅读其他人的邮件在MySpace上。 im a very bored military wife and this is how i’d enjoy spending some hours of my days.即时通讯一个非常无聊的军事和妻子,这是我要如何享受花一些时间,我的天。 is there anyone who can break it down barney style on how to go about getting ones email and password?是否有任何人谁可以打破它,巴尼作风,就如何去获得的电子邮件地址和密码? as im reading above, i see that a lot of people are asking the same thing and am wondering if they ever got help.作为即时通讯读以上,我看到很多人在问同样的事情,我想知道如果他们得到帮助。 either way, im bored now and this is amusing me.无论采用哪种方式,即时通讯钻孔现在,这是有趣的我。 so, feel free to maybe help.所以,请随时可能的帮助。 im hoping somebody can just get me headed in the right direction.即时通讯希望有人可以只得到我朝正确方向发展。
August 2nd, 2006 at 11:33 pm 2006年8月2日在下午11时33分
hey my sons father left me for some other chick, i belive this person keeps taking my pics and making dum profiles of me, i would like to do some crazy things on her page , make my sons father think shes cheating on him , i need an email and pass code for this page i put in wrong link on the other request i put out this is the rite one now嘿,我儿子的父亲给我留下了一些其他的鸡,我相信这个人不断考虑我的照片和简介,当我,我想做一些疯狂的事情,她的网页,让我的儿子,父亲认为shes欺骗他,我需要1电子邮件和密码,为这个网页我把错误的连结上其他的要求,我提出了这是成年礼,现在一
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=85346303 http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=85346303
plzz get back to me at plzz回到我在 mama71877@yahoo.com thanks谢谢
August 2nd, 2006 at 11:36 pm 2006年8月2日在下午11时36分
i belive this person keeps taking my pics and making dum profiles of me, i would like to do some crazy things on her page , and make my sons father think shes cheating on him , i need an email and pass code for this page我相信,这个人不断考虑我的照片和简介,当我,我想做一些疯狂的事情,她的网页,并让我的儿子,父亲认为shes作弊对他,我需要一个电子邮件地址和密码此页
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=85346303 http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=85346303
i need revenge我需要复仇
plzz get back to me at plzz回到我在 mama71877@yahoo.com thanks谢谢
August 3rd, 2006 at 5:07 am 2006年8月3日在上午05时07分
My two cents…我的两个美分…
I will not provide a step-by-step how-to of hacking MySpace.我不会提供一个一步一步如何到黑客MySpace上。 This post contains detailed information of a hacking that was done in the past using Javascript, after the breach was sealed.此帖子包含的详细资料,黑客,这是过去所做的那样使用JavaScript ,后违反是密封的。 The thrust of the post was how can you protect your web application from such attacks.重点职位,你如何能保护您的Web应用程序从此类攻击。
I personally do not encourage nor condone hacking.我个人不鼓励,也不纵容黑客。 I don’t think hacking MySpace (or any other system) is the right way to take revenge on someone.我不认为黑客入侵MySpace上(或任何其他系统)是正确的做法采取报复,就有人。
BTW: Don’t give out your email & password to anyone purporting to hack MySpace for you.的BTW :不要让您的电子邮件及密码向任何人透露本意是哈克MySpace上给你。 They are fraudsters.他们是骗子。
August 4th, 2006 at 12:18 am 2006年8月4日在上午12时18分
My Son Tried to go out and ” meet’ this grown woman he met of of myspace I need someone to get into his account for me or hack it whatevr it is you kids do I really cant let my son be hurt please help me I emailed te person who runs that damm site but its been a week and he still hasnt got back to me , so if anyone can help me with my problem I will mostly appricate it.我的儿子试图走出去“满足' ,这增加了女子他会见的MySpace的,我需要有人进入他的帐户,我或哈克它whatevr是你的孩子做我真的cannot让我的儿子伤害,请帮助我,我通过电子邮件发送德人谁违背了这达姆网站,但其已一个星期,他仍然hasn't回来给我,所以,如果有人可以帮助我与我的问题我会大多appricate 。