Skip to content
HackIndex logo

HackIndex

HTTP/HTTPS
Service

HTTP/HTTPS

HTTP/HTTPS pentesting covers recon, enum, vuln discovery, and exploitation of web apps via XSS, SQLi, RCE, LFI, SSRF, JWT flaws, file uploads, and more through to exfil and persistence

:80 :443 64 guides 8 phases
1 min read Updated: Jul 14, 2026

What is HTTP / HTTPS?

HTTP and HTTPS are the protocols that power the web. HTTP is plain text — everything you send or receive can be read by anyone watching. HTTPS adds encryption using TLS (SSL), which protects data in transit.

HTTP/HTTPS lets browsers load pages, APIs serve JSON, and apps communicate with servers.

Common security issues

  • No HTTPS or misconfigured TLS (weak ciphers, expired certs).

  • Sensitive data exposed in URLs or responses.

  • Broken authentication or session management.

  • IDOR (Insecure Direct Object References).

  • Common web vulnerabilities: XSS, SQL injection, CSRF.

  • Misconfigured headers (CORS, CSP, HSTS).

  • Directory listing exposed.

Reconnaissance

Subdomain brute force, passive recon, cert logs, and dorks

4
Certificate Transparency Enumeration

Certificate Transparency Enumeration

Enumerate subdomains and infrastructure by querying Certificate Transparency logs, leveraging publicly recorded TLS certificates to map attack surface during recon.

Mar 28, 2026 4 min read

Google Dork Reconnaissance

Leverage advanced Google search operators to uncover exposed files, misconfigs, login portals, and sensitive data indexed on target web infrastructure.

Mar 28, 2026 3 min read

Passive Web Reconnaissance

Techniques for gathering web infrastructure intel without direct interaction—DNS records, WHOIS, archived content, metadata, and OSINT sources.

Mar 28, 2026 5 min read
Subdomain Bruteforce

Subdomain Bruteforce

Enumerate hidden subdomains via wordlist-based bruteforce using tools like gobuster, ffuf, and amass to expand attack surface during recon.

Jan 23, 2026 4 min read

Enumeration

HTTP enum covering fingerprinting, vhosts, dirs, APIs, CMS, and headers

11

API Endpoint Enumeration

Discover hidden API endpoints via fuzzing, path traversal, JS analysis, and spec file leakage to map attack surface on HTTP/HTTPS services.

Mar 28, 2026 6 min read
CMS Detection and Fingerprinting

CMS Detection and Fingerprinting

Identifies CMS platforms (WordPress, Joomla, Drupal) via HTTP responses, meta tags, file paths, and headers to map attack surface during web enumeration.

Mar 28, 2026 5 min read

Web Content Discovery

Techniques for discovering hidden files, directories, and endpoints on web servers using fuzzing tools, wordlists, and response analysis.

Jan 23, 2026 7 min read

Drupal enumeration

Techniques for enumerating Drupal CMS installations, including version detection, module discovery, user enumeration, and identifying misconfigurations via droopescan and manual methods.

Jan 23, 2026 4 min read

HTTP Header Analysis

Analyze HTTP response headers to identify server technologies, security misconfigurations, and information disclosure vulnerabilities during web enumeration.

Mar 28, 2026 4 min read

HTTP Tech Fingerprinting

Identify web technologies, frameworks, servers & versions via HTTP headers, cookies, error pages, and tool-based analysis to map attack surface.

Jan 23, 2026 5 min read

Vulnerability Discovery

Web vuln checks: XSS, SQLi, SSRF, XXE, IDOR, JWT, and more

19

Check Exposed .git Directory

Detect exposed .git directories on web servers that may leak source code, credentials, and project history via misconfigured web root deployments.

Jan 23, 2026 2 min read

Command Injection Detection

Detect command injection vulnerabilities in HTTP/HTTPS services by identifying unsanitized input points that allow OS command execution on the target server.

Mar 28, 2026 2 min read

CORS Misconfiguration Testing

Techniques for identifying CORS misconfigurations by probing Origin validation, wildcard usage, and credential exposure in cross-origin HTTP responses.

Mar 28, 2026 3 min read
2 steps

File inclusion

Discover Local and Remote File Inclusion vulnerabilities in web apps by testing path traversal, null bytes, and URL-based payloads via HTTP parameters.

Jan 26, 2026 3 min read

HTTP File Inclusion Fuzzing

Fuzz HTTP endpoints for local and remote file inclusion vulnerabilities using path traversal sequences, null bytes, and protocol wrappers to expose insecure file handling.

Jan 25, 2026 2 min read

File Upload Validation Testing

Tests server-side file upload controls for bypass vulnerabilities including MIME spoofing, extension manipulation, and malicious payload delivery via multipart requests.

Jan 23, 2026 5 min read

Exploitation

RCE, SQLi, XSS, LFI, SSRF, XXE, JWT, file upload and more

23

CVE-2025-54068 Livewire RCE Exploitation

Exploits CVE-2025-54068, a critical Livewire RCE vulnerability via malicious component payloads over HTTP/HTTPS to achieve remote code execution.

Feb 17, 2026 2 min read
5 steps

File Inclusion Exploitation

Exploit Local and Remote File Inclusion vulnerabilities in web apps to read sensitive files, achieve RCE, and bypass filters via path traversal and log poisoning.

Jan 26, 2026 1 min read

Command Injection Bypasses

Techniques to bypass command injection filters and WAFs, including encoding, delimiter abuse, whitespace evasion, and chained payloads for OS command execution.

Jan 26, 2026 2 min read
File Upload Exploitation

File Upload Exploitation

Exploit insecure file upload endpoints to achieve RCE by bypassing extension filters, MIME validation, and content checks to deploy web shells.

Mar 16, 2026 3 min read
LFI to Remote Code Execution

LFI to Remote Code Execution

Exploit Local File Inclusion vulnerabilities to achieve RCE via log poisoning, PHP wrappers, /proc/self/environ, and session file injection techniques.

Jan 25, 2026 4 min read

Local File Inclusion Exploitation

Exploit LFI vulnerabilities to read sensitive files, achieve log poisoning, and escalate to RCE via path traversal and PHP wrapper abuse.

Jan 25, 2026 2 min read

Post-Exploitation

Web shell management, upgrades, and config credential harvesting

2

Credential Harvesting from Web Configs

Techniques for extracting plaintext credentials and secrets from web application config files post-compromise, targeting HTTP/HTTPS services.

Mar 28, 2026 3 min read

Web Shell Management and Upgrade

Covers deploying, managing, and upgrading web shells over HTTP/HTTPS for persistent post-exploitation access, including shell stabilisation and capability escalation.

Mar 28, 2026 3 min read

Lateral Movement

Pivot from web servers to internal nets via proxies and tunneling

1

Pivoting from Web Server to Internal Network

Exploit a compromised web server as a pivot point to enumerate and attack internal network segments using tunneling, proxychains, and port forwarding techniques.

Mar 28, 2026 3 min read

Data Exfiltration

HTTP exfil via curl, SQLi, and out-of-band DNS channels

3

Exfiltrating Database Content via SQLi

Techniques for extracting database contents through SQL injection, covering UNION-based, blind, and out-of-band methods to retrieve sensitive data.

Mar 28, 2026 3 min read

Data Exfiltration over HTTP and HTTPS

Covers techniques for tunnelling stolen data over HTTP/HTTPS traffic, exploiting trusted web protocols to bypass DLP controls and evade network detection.

Mar 16, 2026 3 min read

Out-of-Band Data Exfiltration

Techniques for exfiltrating data covertly via HTTP/HTTPS using out-of-band channels, bypassing detection through encoded payloads, DNS queries, and indirect communication paths.

Mar 28, 2026 1 min read

Protect

Guides on mitigating React CVEs via sanitization and updates

1