Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zha0gongz1/html-absorber

一款可批量提取url或本地html文件中注释、属性及标签内容的工具
https://github.com/zha0gongz1/html-absorber

bash-script bugbounty golang hack hacktool html infosec redteam

Last synced: about 1 month ago
JSON representation

一款可批量提取url或本地html文件中注释、属性及标签内容的工具

Awesome Lists containing this project

README

        

# html-Absorber

使用标准输入,从URL或HTML文件中批量提取、筛选出指定标签内容,属性值及注释中的内容

**建议:Linux/Mac下使用效果最佳**

## Install

```
go install -v github.com/zha0gongz1/html-Absorber@latest
```

## Usage

```
▶ html-Absorber
Usage: html-Absorber []
Modes:
tags Extract text contained in tags
attribs Extract attribute values
comments Extract comments
Option:
-output Save the result to file

Examples:
cat urls.txt | html-Absorber tags title [-output]
find . -type f -name "*.html" | html-Absorber attribs src href [-output]
cat urls.txt | html-Absorber comments [-output]
```

## Demo

命令行输出结果

保存结果

**注:`-output`为追加式输出到文件output.txt中。**