Skip to content

Instantly share code, notes, and snippets.

View PushkraJ99's full-sized avatar
:shipit:
Security Researcher

PushkraJ PushkraJ99

:shipit:
Security Researcher
View GitHub Profile
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <err.h>
#include <errno.h>
#include <sched.h>
#include <sys/types.h>
#!/usr/bin/env python3
from multiprocessing.pool import ThreadPool
from time import time as timer
from urllib.request import urlopen
import mmh3
import codecs
import sys
import ssl
import argparse
import os
#!/bin/bash
#
# script for subdomain enumeration using 4 of the best tools and some online services:
# * findomain: https://github.com/Edu4rdSHL/findomain
# * SubFinder: https://github.com/projectdiscovery/subfinder
# * Amass: https://github.com/OWASP/Amass
# * AssetFinder: https://github.com/tomnomnom/assetfinder
#
bold="\e[1m"
@PushkraJ99
PushkraJ99 / hbsqlimod.py
Created March 24, 2025 18:29
Automated Tool for Testing Header Based Blind SQL Injection Modified
#!/usr/bin/python3
from ast import arg
from socket import timeout
from ssl import SSLError
from urllib.error import URLError
import httpx
import argparse
import rich
from rich.console import Console
#!/bin/bash
# Function to Install prerequired files
# Check if python3-venv is installed
if ! dpkg -l | grep -q python3-venv; then
echo "python3-venv not found. Installing..."
sudo apt install -y python3-venv
else
echo "python3-venv is already installed."
fi