Skip to main content

What is Malware?


Malware:

When we think about malware, we say it’s a sort of virus, which not true in technical point of view.

So, terminology is “Virus is type of Malware”.

You would have encounter unexpected ads on your screen will surfing on web or sudden sound played, they are malware so stay always from this type of site.

Malware is malicious code which is created with an intended of harming your computer system or stealing your personal data as well as for creating money through the malware by selling it to at highest bid on the dark web or by asking directly to from the victim for get rid of the malware.

Common Type of malware:



1. Ransomware

This malware gets into the system, encrypt and block access of the data and the key is sent to the hacker. To regain the access hacker, ask for an amount of money from the victim.
The payment for this type pf things is done through cryptocurrency because they are untraceable.

2.Spyware.

Spyware spy your activity and steal your data from the computer such as login credential, credit card number or financial information.

3.Adware.

There job is to create revenue for the developers. This Adware trick the user to install software on your PC tablet and mobile device.

4.Trojans

This type of malware present itself as legitimate software. Once installed the Trojan get activated and attacker gets unauthorized access to the affected computer, that’s why I recommend you to use local user account. If haven’t seen the how to stay secure? blog read it 

after this gets completed.

5. Key logger.
It records all the user’s keystrokes on the keyboard typically storing the gathered information and sending it to the attacker.

6. Cryptojacking.
This malware uses victim’s computer to mine cryptocurrency. This happen by click on a malicious link in an E-Mail or in website which load crypto mining code on the computer

How to prevent malware getting to our system?

Malware are everywhere and being safe from malware is nearer impossible but if don’t use internet and don’t inject any pen drive into system them you are safe, but that’s not possible in your world.

But we can’t take some precaution to remain somewhat safe from Malware.

1.Get Ad-Blocker to avoid pop-up ads.

2.Double-check the file you download from site is genuine.

3.Delete temporary file:
1.First go to the safe-mode (Press right shift and restart the PC)
2.Search for Disk clean-up software (available in windows).
3.Tick all the thing.

4.Hit the OK button.


That's it for this Blog.

Thanks for reading.If you like the content share it with your friend.


Don't forget to subscribe our Blog

Comments

Popular posts from this blog

Secure Network(Week 4)

Network hardening is the process of securing a network by reducing its potential vulnerabilities through configuration changes and taking specific steps.   Implicit deny is a network security concept where anything not explicitly permitted or allowed should be denied. Analyzing logs is the practice of collecting logs from different networks and sometimes client devices on your network, then performing an automated analysis on them. Correlation analysis is the process of taking log data from different systems and matching events across the systems. Flood guards provide protection against Dos or denial of service attacks. EAP-TLS is an authentication type supported by EAP that uses TLS to provide mutual authentication of both the client and the authenticating server.   if you really want to lock down your network, you can implement 802.1x . DHCP Snooping Attack Why WEP Encryption fall apart? A general concept in security and encryption is to never send the plain ...

Troubleshooting and debugging

Troubleshooting is the process of identifying, analyzing, and solving problems.  Debugging is the process of identifying, analyzing, and removing bugs in a system. We sometimes use troubleshooting and debugging interchangeably.  But generally, we say troubleshooting when we're fixing problems in the system running the application, and debugging when we're fixing the bugs in the actual code of the application. Debuggers let us follow the code line by line, inspect changes in variable assignments, interrupt the program when a specific condition is met, and more. System calls are the calls that the programs running on our computer make to the running kernel.   A reproduction case is a way to verify if the problem is present or not. Where to check for log file in OS? On Linux , you'd read system logs like /var/log/syslog and user-specific logs like the .xsession-errors file located in the user's home directory. On MacOs , on top of the system logs, you'd go through...

Authentication Authorization Accounting(week 3)

Identification is the idea of describing an entity uniquely. Biometric authentication is the process of using unique physiological characteristics of an individual to identify them. C.R.L(Certificate revocation list) :This is a signed list published by the CA which defines certificates that have been explicitly revoked. Lightweight Directory Access Protocol(LDAP): LDAP is an open industry-standard protocol for accessing and maintaining directory services. Authentication is related to verifying the identity a user, authorization pertains to describing what the user account has access to or doesn't have access to. An access control list or ACL , is a way of defining permissions or authorizations for objects.  RADIUS or Remote Authentication Dial-In User Service , is a protocol that provides AAA services for users on a network.It's a very common protocol used to manage access to internal networks, WiFi networks, email services and VPN services. when a client wants to access a r...