Category: Miscellaneous

  • Program to find number of words,vowels,spaces,special chars and consonants in sentence using C

    Program to find number of words,vowels,spaces,special chars and consonants in sentence using C

    C language provides many libraries to handle strings. The libraries that we are going to be using are ctype and string. If you are working in C and you require to manipulate a string, ctype and string header files are your friends! Make use of them. Explanation The functions of ctype.h used in the program…

  • Creating Your Own hacking Lab: The Beginner’s guide

    Creating Your Own hacking Lab: The Beginner’s guide

    This article is a beginner’s level guide to create your own hacking lab so you can practice in a safe environment. With your own hacking lab set up, you can work without boundaries and explore more. I will be telling you about the software tools and their configuration and how you can configure network as…

  • VirtualBox NAT settings: How to configure so they don’t have same IPs?

    VirtualBox NAT settings: How to configure so they don’t have same IPs?

    I am writing this article because I have been through a configuration problem while setting up NAT network in VirtualBox. The problem: Both my machines getting the same IP addresses after selecting NAT as the network for both. I just start using VirtualBox, I used to use VMware. To solve this problem, follow these steps:…

  • Part 2: Finding the IP address of your Victim in your VMware Hacking Lab Network

    Part 2: Finding the IP address of your Victim in your VMware Hacking Lab Network

    This article is the continuation of Part 1 which is for the virtualbox. In case, you have missed it, here is the link: https://anonhack.in/2018/06/finding-the-ip-address-of-your-victim-in-your-hacking-lab-network/. This article will help you find the IP address if you use VMware instead of VirtualBox. The commands are same and so does everything but just VMware. Requirements: Kali OS [You can…

  • Part 1: Finding the IP address of your Victim in your VirtualBox Hacking Lab Network

    Part 1: Finding the IP address of your Victim in your VirtualBox Hacking Lab Network

    This article will give you ways to find the ip address of the vulnerable /victim machine in your hacking lab environment in your network. A reader of my blog recently asked me to write about CTF challenges from very basics. I am really glad to get a suggestion. So, here is what you asked for.…

  • Program to find factorial of a number using function in C language

    Below is the program to find factorial of a number using function in C language. The program has been compiled and executed in Dev C++. The function is a block of code that is specifically designed to do a certain task. Here, the function is taking an argument and calculating the factorial returning its resulting…

  • Program to display series and find sum of 1+3+5+…+n in C language

    Program to display series and find sum of 1+3+5+…+n in C language

    The series 1+3+5+..+n, is a series of odd number. We need to write a program to display this series as well as find the sum upto nth number. The n will be inserted by the user. The program has been compiled and executed under DEV c++. CODE: #include void main() { int i,n,sum=1; printf(“Enter any…

  • Program to show Call by Value and Call by Reference in C Language

    Program to show Call by Value and Call by Reference in C Language

    This article will illustrate the use of Call by Value and Call by Reference in C Programming language. C Language provide several features. Before, we talk about call by reference and call by value, let’s have a little talk about functions in C because both of them are used within the functions itself. A function…

  • Recovery guide for windows Laptop for Blue Screen of Death

    Recovery guide for windows Laptop for Blue Screen of Death

    This article is a recovering guide for when you can’t start windows and can’t recover the important files. I have this problem for a while now. My laptop had windows 8 installed in it. I did not upgrade it to windows 10 and stayed with windows 8.1 up-gradation. After sometime, I have been seeing blue…

  • BIOS settings to run Bootable LIVE USB

    BIOS settings to run Bootable LIVE USB

    This is a guide to change the BIOS settings to boot your live USB. The BIOS stands for Basic Input output system, which defines the basic settings for hardware that is used for initial boot up settings of the device. It defines from where the OS will boot first, also the virtualization capabilities can be…

  • Creating Bootable LIVE USB using win32DiskImager

    Creating Bootable LIVE USB using win32DiskImager

    Win32DiskImager can be downloaded from https://sourceforge.net/projects/win32diskimager/. Win32DiskImager is a wonderful tool to create a LIVE bootable USB Flashdrive. It is freely available for download. Win32DiskImager is similar to unetbootin but it is more reliable. It works great with any Operating system. In case you haven’t checked my last post for unetbootin you can visit here. Creating…

  • Creating a Bootable LIVE USB flash drive using Unetbootin on Windows

    Creating a Bootable LIVE USB flash drive using Unetbootin on Windows

    Bootable LIVE USB stick will help you run any Operating System on your PC. The Privileges will not be much but it will still give help you in a lot of ways. The Bootable USB drives is created with the help of normal USB drives. Depending on the operating system, you can use 4 GB…