Skip to content
/ pler Public

Pler - Domain Probe and Cloudflare Filter Tool. Pler is a simple yet powerful Python script to check whether a domain is using Cloudflare. It is useful for bug bounty hunters, pentesters, or OSINT purposes, as it can filter results according to your needs.

justakazh/pler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

10 Commits
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Pler - Domain Probe and Cloudflare Filter Tool

image

Pler is a simple yet powerful Python script to check whether a domain is using Cloudflare.
It is useful for bug bounty hunters, pentesters, or OSINT purposes, as it can filter results according to your needs.


โœจ Features

  • Multi-threading โ†’ fast domain checks.
  • IPv4 & IPv6 support.
  • Result filtering โ†’ only IP, only domain, or domain + IP.
  • Cloudflare detection โ†’ quickly identify domains behind Cloudflare.
  • Unknown mode โ†’ show domains that cannot be resolved.
  • Save output to file for later use.
  • Silent Mode

๐Ÿ“ฆ Installation

Clone the repository and install dependencies:

git clone https://github.com/justakazh/pler.git
cd pler
pip install -r requirements.txt

Or install directly from PyPI (if published):

pip install python-pler

โš™๏ธ Usage

python3 pler.py [options]

Options

Argument Description
-d, --domain <domain> Target domain to check.
-l, --list <file> File containing list of domains (one per line).
-t, --threads <int> Number of threads (default: 3).
-ft, --filter-type {ip,domain,domain_ip} Output filter type.
-su, --show-unknown Show domains with unknown IP.
-sc, --show-cloudflare Show domains that use Cloudflare.
-o, --output <file> Save results to a file.
-s, --silent Disable banner & non-essential output.

๐Ÿ–ฅ๏ธ Examples

Check a single domain

pler -d example.com

Check from a file

pler -l subdomains.txt

Check via STDIN

echo "example.com" | pler
cat subdomains.txt | pler

Show only IP addresses

cat subdomains.txt | pler -ft ip

Show only domains

cat subdomains.txt | pler -ft domain

Show only domains using Cloudflare

cat subdomains.txt | pler -sc

Show only unknown IPs

cat subdomains.txt | pler -su

Save results to file

cat subdomains.txt | pler -ft domain_ip -o result.txt

๐Ÿ“œ License

This project is licensed under the MIT License.

About

Pler - Domain Probe and Cloudflare Filter Tool. Pler is a simple yet powerful Python script to check whether a domain is using Cloudflare. It is useful for bug bounty hunters, pentesters, or OSINT purposes, as it can filter results according to your needs.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages