Showing posts sorted by relevance for query reverse. Sort by date Show all posts
Showing posts sorted by relevance for query reverse. Sort by date Show all posts

PHP Web Shell and Reverse Shell Techniques for Linux: 45+ Methods for Penetration Testing

PHP Web Shell and Reverse Shell Techniques: 45+ Methods for Penetration Testing (2025) The Complete Guide to PHP Web Shell and Reverse Sh...

Windows PHP Web Shell & Reverse Shell Techniques

Windows Web Shell & Reverse Shell Techniques: Complete Guide Windows Web Shell & Reverse Shell Techniques: Complete Guide Updat...

Reverse Shells/ Web Shells Cheat sheet for Penetration Testing | OSCP

Hello, here is one of the most useful posts for Penetration testers – Reverse Shells and Web Shells all together in one place. Reverse sh...

HackTheBox October Walkthrough - Buffer Over Flow Exploitation & ASLR Brute Force

Hello Friends, Here is one of the most interesting topics for hackers, guess what – Buffer overflow and ASLR brute forcing to get a root s...

C Program For Operations on Strings (User defined functions)

#include <stdio.h> #include <string.h> #include <conio.h> 2 void concat( char [], char []); void compare( char [], ch...

Enterprise HacktheBox Walkthrough - Hackthebox Enterprise Writeup

Hello Everyone, here is Enterprise Hackthebox walkthrough. Enterprise machine is one of the most difficult and challenging box, I took ...

C Program For Double Linked List

/*Double Linked List*/ #include <stdio.h> #include <conio.h> struct node { struct node *prev; int n; struct node *next;...

Breaking Out of Containers - Exploiting Sys_Module Capability

  Linux Capabilities are used to allow binaries (executed by non-root users) to perform privileged operations without providing them all roo...

C Program For Circular double Linked List

/*Circular double Linked List*/ #include <stdio.h> #include <conio.h> struct node { struct node *prev; int n; struct n...

Windows Privilege Escalation Cheatsheet for OSCP

Hello Everyone, here is the windows privilege escalation cheatsheet which I used to pass my OSCP certification. I am not a professional, ...

C Program For Single Linked List

#include<stdio.h> #include<stdlib.h> struct node {     int data;     struct node *next; }*head; void append...

Student Administration System - Data Structures Complete Mini Project

1.Project Description:

DNS Pentesting Guide: Port 53 Enumeration & Exploitation

DNS Pentesting Guide: Port 53 Enumeration & Exploitation DNS Pentesting Guide: Port 53 Enumeration & Exploitation Updated on Ju...

C Program For Implementing a Stack Using a Linked List

/*Implementing a Stack Using a Linked List*/ /* To read some numbers and print them in reverse order. For example, say we have these num...

C Program For Implementing a Queue Using a Linked List

/*Implementing a Queue Using a Linked List*/ /*which reads an integer and prints its digits in reverse order. For example, if 12345 is...