Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
noisy — 简单的随机DNS、HTTP/S互联网流量噪声生成器 | Kitploit
工具/GitHubGitHub/1tayh/noisy
隐私保护网络爬虫DNS 分析
GitHub1tayh/noisy

noisy

简单的随机DNS、HTTP/S互联网流量噪声生成器

查看仓库
1.8k25158年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Noisy

CircleCI

一个简单的 Python 脚本,在您正常上网时在后台生成随机的 HTTP/DNS 流量噪音,使您的网络流量数据对销售而言价值降低,并增加模糊性。

已在 MacOS High Sierra、Ubuntu 16.04 和 Raspbian Stretch 上测试,兼容 Python 2.7 和 3.6。

开始

这些说明将帮助您在本地计算机上获取项目副本并运行。

依赖项

如果您尚未安装 requests,请使用 pip 安装:

root@kitploit:~
pip install requests

使用

克隆仓库

root@kitploit:~
git clone https://github.com/1tayH/noisy.git

进入 noisy 目录

root@kitploit:~
cd noisy

运行脚本

root@kitploit:~
python noisy.py --config config.json

该程序可以接受多个命令行参数:

root@kitploit:~
$ python noisy.py --help
usage: noisy.py [-h] [--log -l] --config -c [--timeout -t]

optional arguments:
  -h, --help    show this help message and exit
  --log -l      logging level
  --config -c   config file
  --timeout -t  for how long the crawler should be running, in seconds

只有配置文件参数是必需的。

输出

root@kitploit:~
$ docker run -it noisy --config config.json --log debug
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): 4chan.org:80
DEBUG:urllib3.connectionpool:http://4chan.org:80 "GET / HTTP/1.1" 301 None
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): www.4chan.org:80
DEBUG:urllib3.connectionpool:http://www.4chan.org:80 "GET / HTTP/1.1" 200 None
DEBUG:root:found 92 links
INFO:root:Visiting http://boards.4chan.org/s4s/
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): boards.4chan.org:80
DEBUG:urllib3.connectionpool:http://boards.4chan.org:80 "GET /s4s/ HTTP/1.1" 200 None
INFO:root:Visiting http://boards.4chan.org/s4s/thread/6850193#p6850345
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): boards.4chan.org:80
DEBUG:urllib3.connectionpool:http://boards.4chan.org:80 "GET /s4s/thread/6850193 HTTP/1.1" 200 None
INFO:root:Visiting http://boards.4chan.org/o/
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): boards.4chan.org:80
DEBUG:urllib3.connectionpool:http://boards.4chan.org:80 "GET /o/ HTTP/1.1" 200 None
DEBUG:root:Hit a dead end, moving to the next root URL
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.reddit.com:443
DEBUG:urllib3.connectionpool:https://www.reddit.com:443 "GET / HTTP/1.1" 200 None
DEBUG:root:found 237 links
INFO:root:Visiting https://www.reddit.com/user/Saditon
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.reddit.com:443
DEBUG:urllib3.connectionpool:https://www.reddit.com:443 "GET /user/Saditon HTTP/1.1" 200 None
...

使用 Docker 构建

  1. 构建镜像

docker build -t noisy .

或者 如果您想在 Raspberry Pi(运行 Raspbian Stretch)上构建:

docker build -f Dockerfile.pi -t noisy .

  1. 创建容器并运行:

docker run -it noisy --config config.json

一些示例

examples 文件夹中提供了一些边缘案例的示例。您可以在此处阅读更多:examples/README.md。

作者

  • Itay Hury - 初始工作 - 1tayH

另请参阅参与此项目的贡献者列表。

许可证

本项目采用 GNU GPLv3 许可证 - 详情请参阅 LICENSE.md 文件。

鸣谢

本项目受以下项目启发:

  • RandomNoise
  • web-traffic-generator
下载工具