Skip to main content

PRIZE SCAM: If you have to pay to get the prize, it's not a prize

Awareness is necessity

Have you ever got any calls stating that you have won a prize or lottery from any online shopping website?

The chances are these calls are fraud



As a Cyber volunteer, I have analyzed some case studies of these kinds of frauds.
Let’s understand how this type of fraud happens !!

The fraudster calls you imposing as an employee from any trusted online shopping site. They try to convince you by giving you the details about your last purchase from the site, with the product and order details.

When a person believes that the fraudster is an employee from the online site, they give them attractive schemes about different prizes like laptop, T.V, mobile phones and give an option to select one prize from them.When you show some interest and select a prize from the mentioned prize, they send us a link as SMS. The link sent is the fraud link which asks for our registration details like bank details as well as personal information. While registration they ask us to pay just the shipping and handling charges to get it delivered to your place.After all the process and paying the fees you find out there is no prize.

One such case happened recently where a victim lost their ₹ 96,000/-. For such scams, tracing back fraudsters is very difficult.

So the way we can avoid such crime is by:

  1. Be aware and never believe in this kind of fraud call.
  2. No shopping website calls informing about the prize or lottery.
  3. Never give personal details, bank details or OTP over the phone to anyone.
  4. Ignore messages and calls of lottery and lucky draw. especially if you have not entered any lucky draw.
  5. Inform about such crimes on the government portals mentioned:
    • All over India- : http://cybercrime.gov.in
    • For Gujarat- :cc-cid@gujarat.gov.in
    • For cybercrime helpline- :1800-1800191 or 155260
    • For financial fraud emergency number- :100/112

Whenever we need emergency help for any physical crime we approach the police department by dialling 100, the same should be done in the case of cyber crimes too.

Comments

Popular posts from this blog

OLX fraud : Beware of this new fraud/scam of 'Army men'

Awareness is necessity Nowadays, OLX related frauds are increasing, such as share OLX password/OTP, QR code scams, Paytm link scam etc. The most occurring cases are related to Army personnel. Instead of writing all the things, it will be better to watch the video by a YouTuber, Mr. Rohit R Gaba and lets see How fraudster makes fools to people as Army personnel. Here, in the video, the fraudster talked about QR code. Let's understand what a QR code is and how fraud can be occurred by QR code. QR code ( Quick Response code ), We can store so much information within it in text form. I made one QR code that stores information such as a person's name, aadhar card number, etc. We can store any data with the QR code. Same fraudster store bank details and malicious code so that when you scan that QR code, the money will be debit from the account directly. How to protect ourselves from online OLX frauds? Always prefer face to face meetings with buyers or sellers and ...

e-SIM fraud : All you need to know about e-SIM and SIM swapping fraud

Awareness is necessity Ever heard about the place, Jamtara? Many of you must have seen the famous series "Jamtara: Sab ka number ayega" on Netflix. It is located near Jharkhand's capital Ranchi. This place has become a hub for phishing and bank fraud. Recently, Jamtara has come in the limelight because this place's fraudsters have started a new type of crime/ fraud, i.e. e-SIM fraud. Do you know what eSIM is? e-SIM stands for the "Embedded Subscriber Identity Module." You don't need to buy a telecom operator's SIM card separately and insert it into your mobile. e-SIM is a part of your smartphone's hardware. This e-SIM chip comes pre-installed on your smartphone. Its working is the same as our standard SIM, which saves information like IMSI number, some contact details etc. e-SIM is re-writable means previous telecom operator related details can be erased and new information can be written again by a new telecom operator. This type o...

Docker 101: Understanding Containers from Scratch

Docker Basics and Docker Compose Explained Docker Through My Lens Introduction to Docker Docker is a platform designed to create, deploy, and run applications inside containers. Containers bundle an application with all its dependencies, ensuring consistency across different environments. Unlike virtual machines, containers are lightweight and share the host operating system kernel, making them efficient for development, testing, and deployment. Basic Docker Commands To start using Docker, here are some essential commands: docker run [image] – Runs a container from the specified image. docker ps – Lists running containers. docker ps -a – Lists all containers, including stopped ones. docker stop [container_id] – Stops a running container. docker rm [container_id] – Removes a container. docker images – Lists available Docker images. docker rmi [image_id] – Removes a Docker image. Creating Your First Docker Container You can run ...