Skip to main content

Customer Care number frauds : Be careful regarding your google search

Awareness is necessity

ALERT !!

"Careful during searching on google for customer care number regarding online shopping, bank loan or online job search."



The number you find on Google need not be real all the time. It can be a fake number. When you are looking for a customer care number, go to that particular site and search for their help centre section or contact us section. Don't search for such help centre numbers on other sites, as it can be fake.


Here, I am sharing the latest case study of September 2020 regarding customer care fraud !!

A person from Gujarat wanted to buy a mobile and he searched on an online website. Now he wanted to buy a mobile on the EMI installment, but he didn't know what was the procedure for EMI installment.

He randomly searched on google for the customer care number of that online website and found a mobile number from some random website. He called that number, and the person on the other side of the call asked for some personal details and bank details. Suddenly, the amount of ₹ 1,00,000/- was deducted from his account. He got to know that something wrong happened and he registered complaint at the nearest cyber cell.

The cyber cell team took immediate action and did proper investigation and technical analysis. As the amount was huge and bank transaction occurred, they succeed in stopping the transaction, and the victim got his money back.

What to do when this kind of fraud occurs ?

  1. Contact your nearest cyber cell or local crime branch.
  2. You can call an emergency number "100", take guidance, and ask police what next step should be taken.
  3. You should save your district crime branch contact number on your mobile. It can be helpful in this kind of situation.

Contact details of Gujarat Police

Save your district crime branch number on your mobile.
Sr no. District Name Contact No
1 Ahmedabad (O) 079-25633636
2 Amreli (O) 02792-222333
3 Anand (O) 02692-260027
4 Aravalli --
5 Banaskantha (O) 02742-257015
6 Bharuch (O) 02642-223303
7 Bhavnagar (O) 0278-2520050
8 Botad (O) 02849-251416
9 Chhota Udepur --
10 Dahod (O) 02673-222300
11 Dang (O) 02631-220248
12 Devbhoomi Dwarka --
13 Gandhinagar (O) 23210901
14 Gir Somnath --
15 Jamnagar (O) 0288-2554203
16 Junagadh (O) 0285-2635633
17 Kutch (O) 02832-250960
18 Kheda (O) 0268-2550250
19 Mahisaga --
20 Mehsana --
21 Morbi --
22 Narmada (O) 02640-222167
23 Navsari (O) 02637-245333
24 Panchmahal (O) 02672-242200
25 Patan --
26 Porbandar (O) 0286-2211222
27 Rajkot (O) 0281-2459888
28 Sabarkantha (O) 02772-247333
29 Surat (O) 0261-2651831
30 Surendranagar (O) 02752-282100
31 Tapi --
32 Vadodara (O) 0265-2431414,(O) 0265-2431515
33 Valsad (O) 02632-254222

So the motive behind this article is to spread awareness about this kind of customer care fraud. As cybercriminals are becoming very smart day by day, they are using new ideas to make people fool.

Comments

Popular posts from this blog

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 ...

Master Kubernetes: Architecture, Commands, and Real-World Applications

Kubernetes Basics for DevOps & DevSecOps Kubernetes Basics for DevSecOps 1. Introduction to Kubernetes In the early days of deploying applications, we used to run them directly on physical servers. This approach was inflexible and inefficient — if one application needed more resources, it could starve others. Virtual machines (VMs) improved this by isolating workloads, but they were heavy and took time to provision. Then came containers. Containers are lightweight, portable, and can run anywhere — your laptop, a server in the cloud, or even a Raspberry Pi. But managing containers at scale quickly becomes a nightmare. Imagine you have 500 containers — how do you start them, stop them, update them, and ensure they recover from failures automatically? Enter Kubernetes — an open-source container orchestration platform that automates deployment, scaling, and management of containerized applications. It was originally developed by Google and i...

Email Security Deep Dive: 13 Steps to Keep Your Emails Safe

Email Security Checklist The Email Security Checklist 1. Enable SPF (Sender Policy Framework) What it is: SPF is like a guest list for your email domain. It tells the world that only specific servers are allowed to send email for your domain. How it works: Publish an SPF record in DNS. When someone receives an email claiming to be from your domain, their mail server checks if the sending IP is listed in the SPF record. If the IP is not listed, the email is rejected or marked as spam. Example SPF record: v=spf1 ip4:203.0.113.0/24 include:_spf.google.com -all Only servers in the specified IP range and Google’s mail servers can send emails for this domain. Others are rejected. Points to Note: Prevents attackers from spoofing your domain and sending phishing or spam emails. 2. Enable DKIM (DomainKeys Identified Mail) What it is: DKIM is a digital signature for each email, ensuring that the message hasn’t been tampered with. Ho...

Mastering the Intelligence Lifecycle - Cybrary

Advanced Cyber Threat Intelligence 1. Introduction to the Intelligence Lifecycle The course begins by outlining the intelligence lifecycle, a structured approach comprising: Collection: Gathering raw data from various sources. Processing: Organizing and structuring the collected data. Analysis: Interpreting processed data to generate actionable intelligence. Dissemination: Sharing intelligence with relevant stakeholders. This framework ensures a systematic method for developing and leveraging threat intelligence programs. 2. Data Collection Sources Effective threat intelligence begins with robust data collection from both internal and external sources: Internal Sources: Endpoint Logs: Data from devices within the organization. Network Traffic: Information from firewalls, routers, and switches. Security Tools: Outputs from SIEMs, IDS/IPS, and antivirus solutions. External Sources: Private Feeds: Subscript...

Exploiting and Securing GitLab: Lessons from a TryHackMe Lab

Perimeter security isn’t enough—because sometimes the threat is already inside. In this blog post, I’m sharing what I learned from a hands-on TryHackMe lab on GitLab security . It revealed how a simple internal misconfiguration—like open registration or overly permissive repo access—can lead to major data exposure inside an organization. I’ll walk you through the red team perspective on exploiting a misconfigured GitLab instance , and then flip the script to explain how you can secure your own internal build systems . Scenario: Inside the Walls of a Large Organization Think of a large organization—like a bank—with thousands of employees and multiple teams handling development, IT operations, and security. To keep intellectual property (IP) secure, these organizations often host self-managed GitLab instances on their internal network. But here’s where things can go wrong: GitLab is hosted internally Allows anyone on the internal network to register Has some projects...