Ajay yadav has Published 37 Articles

Windows UAC protection Bypass

Ajay yadav

Ajay yadav

Updated on 18-Mar-2020 08:11:36

421 Views

UAC (User account control ) is a windows IS security that enables a user to perform limited number of admin operations. Overall, it prevents normal users from performing specific actions that could pose a security risk to the system by requiring users to have admin-level permission. For security reasons enabling ... Read More

Reset Kali Linux Password

Ajay yadav

Ajay yadav

Updated on 18-Mar-2020 08:03:29

2K+ Views

The Kali Linux is a Debian-derived Linux distribution designed for penetration testing and digital forensics adopted by both hackers and security professionals. It is highly probable that the user could not have been login owing to the forgotten password or not able to reset the password after installing it in ... Read More

Registry Forensic

Ajay yadav

Ajay yadav

Updated on 18-Mar-2020 07:59:10

4K+ Views

The Windows Registry also holds information regarding recently accessed files and considerable information about user activities, besides configuration information. Hence, this article serves the purpose is to provide you with a depth understanding of the Registry and Wealth of information it holds. Today most administrators and forensic analysts, the registry ... Read More

Cyber Attack Symptoms

Ajay yadav

Ajay yadav

Updated on 18-Mar-2020 07:20:54

359 Views

If we think an advance level of anti-virus has been installed on our computer, and we are fully secure as it performs a full system threat infection scan regularly. However, there may be instances where the scan did not detect any threat, or you cannot perform a scan. In these ... Read More

Printing Different pattern Bash in C++

Ajay yadav

Ajay yadav

Updated on 16-Jan-2020 12:20:09

426 Views

This article is intended to print a half-pyramid pattern bash using the C++ programming language. In the view of the stipulated pattern to be printed, the following algorithm is being orchestrated to achieve our goal as;AlgorithmStep-1 Set the length of the Bash (Height) Step-2 Outer loop to handle the number ... Read More

Printing Pyramid in C++

Ajay yadav

Ajay yadav

Updated on 23-Dec-2019 06:28:19

476 Views

This article yields a “pyramid-like structure” as an output using the C++ programming code. In which the pyramid height and space are being determined by traversing double for loop constructs as following;Example Live Demo#include using namespace std; int main() {    int space, rows=6;    for(int i = 1, k = 0; i

Sort an Array of string using Selection sort in C++

Ajay yadav

Ajay yadav

Updated on 23-Dec-2019 06:09:48

1K+ Views

The Selection Sort algorithm sorts an exhibit by more than once finding the base component from the unsorted part and putting it toward the start. In each emphasis of determination sort, the base component from the unsorted subarray is picked and moved to the arranged subarray.Example Live Demo#include #include ... Read More

stable_sort() in C++ STL

Ajay yadav

Ajay yadav

Updated on 23-Dec-2019 06:03:30

258 Views

The stable_sort method of STL first sorts the components with name as the key in ascending order and afterward the components are arranged with their segment as the key. Moreover, The stable_sort() calculation is viewed as steady in light of the fact that the overall request of comparable components is ... Read More

Stein’s Algorithm for finding GCD in C++

Ajay yadav

Ajay yadav

Updated on 23-Dec-2019 06:01:17

504 Views

Stein's Algorithm used for discovering GCD of numbers as it calculates the best regular divisor of two non-negative whole numbers. It replaces division with math movements, examinations, and subtraction. In the event that both an and b are 0, gcd is zero gcd(0, 0) = 0. The algorithm for GCD(a, ... Read More

Remove vowels from a String in C++

Ajay yadav

Ajay yadav

Updated on 29-Nov-2019 11:13:00

5K+ Views

The following C++ program illustrates how to remove the vowels (a, e, i, u, o) from a given string. In this context, we create a new string and process input string character by character, and if a vowel is found it is excluded in the new string, otherwise the character ... Read More

Advertisements