-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a9ac4b
commit e8dcccc
Showing
1 changed file
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,38 @@ | ||
## cf-check | ||
Check an IP is Owned by Cloudflare. | ||
Check an Host is Owned by CloudFlare. | ||
|
||
## Install | ||
``` | ||
▶ go get -u github.com/dwisiswant0/cf-check | ||
``` | ||
|
||
## Usage | ||
|
||
``` | ||
▶ echo "uber.com" | cf-check | ||
``` | ||
|
||
or | ||
|
||
``` | ||
▶ cf-check -d <FILE> | ||
``` | ||
|
||
### Flags | ||
|
||
``` | ||
Usage of cf-check: | ||
-c int | ||
Set the concurrency level (default 20) | ||
-d Prints domain instead of IP address | ||
Set the concurrency level (default: 20) | ||
-cf | ||
Show CloudFlare only | ||
-d Print domains instead of IP addresses | ||
``` | ||
|
||
## Workaround | ||
|
||
The goal is that you don't need to do a port scan if it's proven that the IP is owned by Cloudflare. | ||
|
||
``` | ||
▶ subfinder -silent -d uber.com | filter-resolved | cf-check | sort -u | naabu -silent -verify | httprobe | ||
▶ subfinder -silent -d uber.com | filter-resolved | cf-check | anew | naabu -silent -verify | httpx -silent | ||
``` |