Is this an extortion email based on password theft ?

Viewing 1 reply thread
  • Author
    Posts
    • #11611
      0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
      You need to be a registered member to rate this.
      Loading...

      Recently I received this email in my inbox. Should I be worried ?

      I know, <FIRST NAME> and <PASSWORD>, is your password. You may not know me and you’re probably thinking why you are getting this mail, right?

      Let me tell you, I installed a malware on the adult video clips (porn) web-site and you know what, you visited this web site to have fun (you know what I mean). While you were watching videos, your browser began operating as a RDP (Remote Desktop) with a key logger which provided me access to your screen and also webcam. Immediately after that, my software gathered all your contacts from your Messenger, FB, as well as email.

      What exactly did I do?

      I made a double-screen video. First part shows the video you were viewing (you have a good taste hehe), and second part displays the recording of your web cam.

      What should you do?

      Well, I believe, $1900 is a fair price tag for our little secret. You’ll make the payment through Bitcoin (if you don’t know this, search “how to buy bitcoin” in Google).

    • #11612
      0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
      You need to be a registered member to rate this.
      Loading...

      First of all, it is always good to scan your systems with reputable anti-malware programs. Anti-malware programs may not be perfect, but good and reputable ones should be able to detect the kind of malware as described in the email. Also, have a look at your data uploads and downloads from your network. Are there any significant changes there ? If someone is hacking webcam and transferring the data back to their server, there should be significant changes in network usage.

      There were quite a number of data breaches in the past, linkedin and yahoo breaches are to mention a few of them. Attackers often share hacked data and once they get email address and password of one user from a data breach, they try to use them for phishing purpose, as many users reuse old passwords or do not change passwords often. Often criminals hack a website and get email address and passwords of users of that website. But, if those user account do not contain enough sensitive data, the criminals try to make money by using those email addresses and passwords to extort money from those users by sending out emails like this.

      This particular email is a phishing scam. Attackers typically try to extort money from users by sending this scary email.

      However, if a user gets any email of similar kind, here is what he/she should do :

      – Scan your systems thoroughly with good and reputable anti-malware programs.

      – Look at your network usage. Are there any significant changes recently ?

      – Is the password mentioned in the email an old password that you often reuse ? Anyways, it is always good to change old passwords and not to reuse the same password in multiple websites.

      – Configure firewalls in your system. It is always good to give permission to use internet only to limited applications. And, close all unused ports.

      – Think twice before sharing anything in social networking websites.

      – It is always a good practice to browse websites from a Virtual Machine. If you suspect malware, simple go back to a previously saved image of the Virtual Machine and destroy the current one.

      – If you are visiting unknown website, you can think of using script blockers.

      – Enable 2 Factor Authentication wherever it is possible. (What is 2 Factor Authentication and why should we always enable it ?)

      Hope the answer helps.

      Related articles :

      What is a Remote Access Trojan ?
      What is a Creepware ?
      How to prevent keyloggers ?

Facebooktwitterredditpinterestlinkedinmail
Viewing 1 reply thread

You must be logged in to reply to this topic.


Calculate the pseudoinverse of a matrix using Python

What is the pseudoinverse of a matrix? We know that if A is a square matrix with full rank, then A-1 is said to be the inverse of A if the following condition holds: $latex AA^{-1}=A^{-1}A=I $ The pseudoinverse or the Moore-Penrose inverse of a matrix is a...

Cholesky decomposition using Python

What is Cholesky decomposition? A square matrix A is said to have Cholesky decomposition if it can be written as a product of a lower triangular matrix and its conjugate transpose. $latex A=LL^{*} $ If all the entries of A are real numbers, then the conjugate...

Tensor Hadamard Product using Python

In one of our previous articles, we already discussed what the Hadamard product in linear algebra is. We discussed that if A and B are two matrices of size mxn, then the Hadamard product of A and B is another mxn matrix C such that: $latex H_{i,j}=A_{i,j} \times...

Perform tensor addition and subtraction using Python

We can use numpy nd-array to create a tensor in Python. We can use the following Python code to perform tensor addition and subtraction. import numpy A = numpy.random.randint(low=1, high=10, size=(3, 3, 3)) B = numpy.random.randint(low=1, high=10, size=(3, 3, 3)) C =...

How to create a tensor using Python?

What is a tensor? A tensor is a generalization of vectors and matrices. It is easily understood as a multidimensional array. For example, in machine learning, we can organize data in an m-way array and refer it as a data tensor. Data related to images, sounds, movies,...

How to combine NumPy arrays using horizontal stack?

We can use the hstack() function from the numpy module to combine two or more NumPy arrays horizontally. For example, we can use the following Python code to combine three NumPy arrays horizontally. import numpy A = numpy.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) B =...

How to combine NumPy arrays using vertical stack?

Let’s say we have two or more NumPy arrays. We can combine these NumPy arrays vertically using the vstack() function from the numpy module. For example, we can use the following Python code to combine three NumPy arrays vertically. import numpy A = numpy.array([[1, 2,...

Singular Value Decomposition (SVD) using Python

What is Singular Value Decomposition (SVD)? Let A be an mxn rectangular matrix. Using Singular Value Decomposition (SVD), we can decompose the matrix A in the following way: $latex A_{m \times n}=U_{m \times m}S_{m \times n}V_{n \times n}^T $ Here, U is an mxm matrix....

Eigen decomposition of a square matrix using Python

Let A be a square matrix. Let’s say A has k eigenvalues λ1, λ2, ... λk. And the corresponding eigenvectors are X1, X2, ... Xk. $latex X_1=\begin{bmatrix} x_{11} \\ x_{21} \\ x_{31} \\ ... \\ x_{k1} \end{bmatrix} \\ X_2=\begin{bmatrix} x_{12} \\ x_{22} \\ x_{32} \\ ......

How to calculate eigenvalues and eigenvectors using Python?

In our previous article, we discussed what eigen values and eigenvectors of a square matrix are and how we can calculate the eigenvalues and eigenvectors of a square matrix mathematically. We discussed that if A is a square matrix, then $latex (A- \lambda I) \vec{u}=0...

Not a member yet?

Please follow the link below to register for The Security Buddy.

Featured Posts

Translate »