Posts

Nawab khan Blogs

How to Learn Ethical Hacking? My Path!

Image
  So, you want to Learn Real Hacking. If so, you are in the right place. The Reason why I have written this article is Because a lot of people randomly approach me and I have to spend at least 10 minutes on every person trying to explain them how to learn hacking and giving some good resources to learn from. This is my Most Viewed & Appreciated Article out of all.   If you are serious about learning Ethical Hacking or perhaps making a career in cybersecurity as a hacker/penetration tester, I highly recommend you to read this article carefully. This article is about my personal path. The things I have learnt and the resources that helped me gain the knowledge I have today.   SO, let’s get started. I assume you are a beginner and a “script kiddie” (if you don’t know what this word is, use google). Firstly, stay curious and clear your basics about computers, computer hardwires so works, basic networking and get yourself familiar with using Linux commands. J...

C Program to calculate the Day Name

Image
In this program we will input a date and then   validate the date , if given date is correct, program will print   weekday . For example  – Entered date is  10-01-2010  then program will print  weekday is – Sunday . Source Code Download link                           :-    https://drive.google.com/file/d/1HuW2hz_qO50sBXNRDUPBwhp7bSdO64VV/view?usp=sharing #include<stdio.h> int main() {      int a,a1,b,c,remainder,quotient;      printf("Welcome to my Day Calculator\n");      printf("I am Nawab Khan . This is My Day Calculator in C Language\n ");      printf("Enter Your Year \n");      scanf("%d",&a);      printf("Enter Your Month \n");      scanf("%d",&b);      printf("Enter Your Day\n");      scanf("%d",&c);       ...