Ajay yadav has Published 48 Articles

Windows UAC protection Bypass

Ajay yadav

Ajay yadav

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

229 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

3K+ 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

172 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

217 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 Interesting pattern in C++

Ajay yadav

Ajay yadav

Updated on 16-Jan-2020 12:18:55

183 Views

This article prints an interesting pattern using C++ programming. Here is the algorithm as followingAlgorithmStep-1 Define the size which will be double automatically Step-2 Print the upper section using a loop Step-3 Print the lower section using a loopExampleBased on the above algorithm, the following c++ code is carved out ... Read More

Printing Pyramid using Recursion in C++

Ajay yadav

Ajay yadav

Updated on 16-Jan-2020 12:18:13

726 Views

This article aims to print a pyramid pattern by using the recursive implementation of C++ programming. Here is the algorithm as following to do so;AlgorithmStep-1 Set the height of the pyramid Step-2 Adjust space using recursion function Step-3 Adjust Hash(#) character using recursion function Step-4 Call both functions altogether to ... Read More

Proj() function for Complex Numbers in C++

Ajay yadav

Ajay yadav

Updated on 16-Jan-2020 12:14:34

98 Views

This article demonstrate the functioning of proj() in order to perform projection upon complex numbers. Here the syntax of the proj() method in c++ programming as follows;template complex proj (const complex& z);ExampleThe proj() method takes a parameter as argument which represent the complex number and returns the projection of ... Read More

Reverse a String (Recursive) C++

Ajay yadav

Ajay yadav

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

933 Views

Recursion is simply the way toward rehashing things in a self-comparative way. In programming dialects, if a program enables you to call a capacity inside a similar capacity, at that point, it is known as a recursive call of the capacity. You can switch a string utilizing the recursive capacity ... Read More

Printing Pyramid in C++

Ajay yadav

Ajay yadav

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

275 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

Advertisements