Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/1tayh/noisy
プライバシークローラーDNS分析
GitHub1tayh/noisy

noisy

シンプルなランダムDNS、HTTP/Sインターネットトラフィックノイズジェネレータ

リポジトリを見る
1.8k25138年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

Noisy

CircleCI

通常のウェブブラウジング中にバックグラウンドでランダムなHTTP/DNSトラフィックノイズを生成するシンプルなPythonスクリプトです。これにより、Webトラフィックデータの販売価値を下げ、さらに曖昧さを高めることができます。

MacOS High Sierra、Ubuntu 16.04、Raspbian Stretchでテスト済みで、Python 2.7および3.6の両方に対応しています。

はじめに

以下の手順に従って、このプロジェクトのコピーをローカルマシンで実行できるようにします。

依存関係

pipを使用して、まだインストールしていない場合はrequestsをインストールしてください。

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

必須なのはconfigファイルの引数のみです。

出力

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
ツールをダウンロード