Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
a4dyn committed Dec 5, 2020
1 parent e925909 commit 66fd8df
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 84 deletions.
84 changes: 0 additions & 84 deletions ORIG-README.md

This file was deleted.

43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# httprobe-strengthen

Take a list of domains and probe for working http and https servers.

## Introduction
This is a customized version. Based on the original httprobe, several more features are added:
* Supports scan IP segment as input
* SUpports scanning specific ports within the IP / IP segment
* Shows the title of the website (if exists)
* Shows the status code of the respose header
* Shows the content length of the respose data (if exists in reposnse header)
* Shows whether the input ports are open

## Original Repo:
```
https://github.com/tomnomnom/hacks
https://github.com/tomnomnom/httprobe
```

## Basic Usage

httprobe accepts line-delimited domains on `stdin`:
```
echo [IP/IP segment] | ./[httprobe] [variables]
cat [input file] | ./[httprobe] [variables]
./[httprobe] -h
```

### Example Usage
```
echo 8.8.8.8/24 | ./httprobe -p 443,8080 -t 1000
cat domains.txt | ./httprobe -p 8080 -t 500 -s
```

### Output
```
[ip],[url],[title],[status],[content-length],[port open/not]
```

## Others
* If no content-length is found, shows -1
* **Supports Chinese title**(using gbk for windows env, and utf-8 for mac/linux)
* While using -s, by default the ':80' or ':443' will NOT be scanned

0 comments on commit 66fd8df

Please sign in to comment.