What is Bug Bounty ?| What is HTTP | Client-Side HPP
HTTP parameter pollution (HPP) is the process of manipulating how a website treats the parameters it receives during HTTP requests.…
CYBER ODISHA | Cyber Security | Ethical Hacking | Bug Bounty
Cyber Awarness Our Mission
HTTP parameter pollution (HPP) is the process of manipulating how a website treats the parameters it receives during HTTP requests.…
If you’re new to hacking, it will help to have a basic understanding of how the internet works and what…
struct Node* root = newNode(6); #include<iostream> using namespace std;struct node {int data;struct node *left;struct node *right;};struct node *createNode(int val) {struct…
#include<bits/stdc++.h> using namespace std; struct QNode {int data;QNode* next;QNode(int d){data = d;next = NULL;}}; struct Queue {QNode *front, *rear;Queue(){front =…
#include<iostream> #include<stack> using namespace std; int main(){stack mystack;mystack.push(10);mystack.push(20);mystack.push(30);mystack.push(40);mystack.push(50);mystack.push(60);mystack.push(70); // Stack becomes 10,20,30,40,50,60,70 // Stack becomes 1, 2,3 }
#include<iostream> using namespace std; int binarySearch(int[], int, int, int); int main(){int num[10] = {23,34,45,56,67,78,89,90,101,110};int search_num=78, loc=-1; loc = binarySearch(num, 0,…
#include<iostream> #define MX5 using namespace std;int queue[MX];int front = -1,rear =-1;void enque(int item){if(rear==MX-1){cout<<“Queue is Full\n”; } else if(front == -1…