Posts

Instagram Data Breach Allegations (January 2026): A Technical Analysis from a Cybersecurity Perspective

Image
   "Instagram Data Breach Allegations (January 2026): A Technical Analysis from a Cybersecurity Perspective" Introduction In January 2026, reports surfaced claiming a large-scale Instagram data breach impacting 17.5 million user accounts . The allegation, highlighted by Malwarebytes, quickly gained attention across the cybersecurity community and mainstream media. Meta, Instagram’s parent company, strongly denied that any user accounts were breached, stating that no credentials were leaked and no unauthorized access occurred. Instead, Meta explained that the incident involved a technical flaw that allowed an external party to trigger unwanted password reset emails . This blog aims to provide a technical, neutral, and educational analysis of the incident from a cybersecurity learning perspective , focusing on what actually happened, what did not happen, and what lessons can be learned. Summary of the Allegations According to Malwarebytes: Approximately 17.5 million Instag...

Arduino Based Fire Fighting Robot

Image
  What is a Fire Fighting Robot? A fire fighting robot is an autonomous or remotely operated machine designed to detect and extinguish fires without human assistance. These robots are equipped with sensors to identify flames or smoke and use extinguishing agents such as water, CO₂, or other fire suppressants to control and put out the fire. Powered by a microcontroller, advanced models can automatically locate the fire, navigate toward it, and efficiently extinguish it. In this project, we’ll learn how to create a DIY Arduino-based Fire Fighting Robot . This robot will use flame sensors to detect fire, BO motors with a motor driver to move toward the fire, and a mini water pump to spray water and extinguish it. Materials Required Arduino UNO Flame Sensors (3 units) Servo Motor (SG90) L293D Motor Driver Module Mini DC Submersible Pump Small Breadboard Robot Chassis with 2 motors and 2 wheels Small Water Can (for the water tank) Connecting Wires...

Master Your Finances: C++ Program to Calculate Monthly Expenses!

Image
Total Expense Calculation : Objective: Master Your Finances: C++ Program to Calculate Monthly Expenses! Problem Description: You need to compute the total expenses given daily expenses for a week and the number of weeks in a month. Task: 1. Declare variables to store: ○ Daily expense amount ○ Number of weeks in a month 2. Take input for the daily expense and the number of weeks from the user. 3. Calculate the total expense as follows: TotalExpense=Daily Expense×7×Number of Weeks 4. Display the result in a clear format. Solution: Code: #include<iostream> using namespace std; int main(){ cout<<"The Total Expenses Over a Month"<<endl; cout<<"-------------------------------"<<endl; int daily_expense; int num_week_month; int total_expense; cout<<"Enter Daily Expense: "<<endl; cin>>daily_expense; cout<<"Enter The Number of Weeks: "<<endl; cin>>num_week_month; total_expense=(daily_expense...

No Loops, No Problem: Mastering Digit Reversal in C++

Image
Problem Description: No Loops, No Problem: Mastering Digit Reversal in C++ Write a C++ program that takes a three-digit number as input and prints the number with its digits reversed. For example, if the input is 123, the output should be 321. Task: 1. Declare a variable to store the three-digit number. 2. Use arithmetic operations (division and modulus) to extract the digits of the number. 3. Rearrange and print the digits in reverse order. Input Format: ● Take three digit number from user e.g 123 Output Format: ● The number with its digits reversed. E.g 321 Solution: Code: #include <iostream> using namespace std; int main(){ cout<<"Rearrange and Print the Digits in Reverse Order"<<endl; cout<<"-----------------------------------------------"<<endl; int num; cout<<"Enter Number for Reverse: "<<endl; cin>>num; int last_number=num%10; int middle_number=(num/10)%10; int first_number=num/100; cout<<last_nu...

C++ Challenge: Adding, Subtracting, and Multiplying Complex Numbers Simply

Image
Objective: C++ Challenge: Adding, Subtracting, and Multiplying Complex Numbers Simply Write a C++ program to perform addition, subtraction, and multiplication on two complex numbers without using loops, functions, or classes. You will handle the real and imaginary parts of the complex numbers manually. Problem Description: A complex number is represented as a+bi where: ● a is the real part. ● a is the imaginary part. For two complex numbers, represented as (a1 + b1i) and (a2 + b2i) perform the following operations: Addition: Add the real parts and the imaginary parts separately. Sum=(a1+a2)+(b1+b2)i Subtraction: Subtract the real parts and the imaginary parts separately. Difference=(a1−a2)+(b1−b2)i Multiplication: Use the following formula to multiply the complex numbers: Product=”create the logic on your own” Task: 1. Declare four variables to store the real and imaginary parts of the two complex numbers. 2. Take input for the real and imaginary parts of both complex numbers from the ...

C++ Program to Find the Area and Circumference of a Circle

Image
  C++ Program to Find the Area and Circumference of a Circle I'll show you how to use C++ to find the area and circumference of a circle in this post. One of the most fundamental geometric shapes is the circle, and understanding how to calculate its properties is an excellent way to comprehend formulas and how to use them in programming. Basic:  ✔ ✔  Area = π * r²  ✔✔ Circumference = 2 * π * r                                                                                                                                                                      ...

My First C++ Program: Hello World

Image
Welcome to my first blog post! In this post, I'll be sharing the very first C++ program every beginner writes. the classic "Hello World" program. This program is simple but marks the start of an exciting journey into the world of coding. (Code) : // My First C++ Program (Hello World) #include <iostream>  using namespace std;  int main() {      cout<<"Hello World"<<endl;           return 0; } Out Put:  Thanks......