Skip to content
KitploitKITPLOIT
أدواتالمدونة
إرسال
أدواتالمدونة
إرسال

أدوات الاختراق واختبار الاختراق والأمن السيبراني لترسانتك الأمنية!

Kitploit هو دليل لأدوات الاختراق والأمن السيبراني واختبار الاختراق. اكتشف آخر تحديثات المشاريع للعثور على الثغرات وتحليل الأنظمة وأتمتة الاختبارات وتعزيز أمنك.

··الخلاصات·اتصال·الخصوصية·© 2026 Kitploit

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
أدوات/GitHubGitHub/1tayh/noisy
الخصوصيةزاحف الويبتحليل DNS
GitHub1tayh/noisy

noisy

مولّد ضوضاء عشوائي بسيط لحركة مرور الإنترنت عبر DNS وHTTP/S

عرض المستودع
1.8k2515منذ 8 سنواتتمت المراجعة من قبل 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
تنزيل الأداة