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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
أدوات/GitHubGitHub/gh0x0st/wanderer
جمع المعلوماتاختبار الاختراق
GitHubgh0x0st/wanderer

wanderer

أداة تعداد حقن العمليات مفتوحة المصدر مكتوبة بلغة C#

عرض المستودع
17414منذ 3 سنواتتمت المراجعة من قبل Kitploit

الأكثر شعبية

عرض الكل →

اكتشف الأدوات الأكثر استخدامًا من قبل مجتمعنا.

استكشف جميع الأدوات

تصفح مجموعتنا من الأدوات

عرض جميع الأدوات →
مشاركة

Wanderer

Wanderer هو برنامج مفتوح المصدر يقوم بجمع معلومات حول العمليات الجارية. تتضمن هذه المعلومات مستوى التكامل، وجود AMSI كوحدة محملة، ما إذا كانت تعمل بنظام 64-bit أو 32-bit بالإضافة إلى مستوى الامتياز للعملية الحالية. هذه المعلومات مفيدة للغاية عند بناء حمولات مخصصة للمرشح المثالي لحقن العمليات.

هذا مشروع بدأت العمل عليه أثناء تقدمي في دورة Offensive Security's PEN-300. أحد الأقسام المفضلة لدي من الدورة هو قسم حقن العمليات وترحيلها والذي ألهمني لبناء أداة تساعدني في أن أكون أكثر كفاءة خلال هذا النشاط. شكر خاص لـ ShadowKhan الذي قدم ملاحظات قيمة ساعدت في تقديم اتجاه إبداعي لجعل هذه الأداة جذابة بصريًا وتعزيز قابليتها للاستخدام من خلال إمكانيات التصفية المقترحة.

الاستخدام

root@kitploit:~
PS C:\> .\wanderer.exe

     >> Process Injection Enumeration
     >> https://github.com/gh0x0st
     
Usage: wanderer [target options] <value> [filter options] <value> [output options] <value>

Target Options:

-i, --id, Target a single or group of processes by their id number
-n, --name, Target a single or group of processes by their name
-c, --current, Target the current process and reveal the current privilege level
-a, --all, Target every running process

Filter Options:

--include-denied, Include instances where process access is denied
--exclude-32, Exclude instances where the process architecture is 32-bit
--exclude-64, Exclude instances where the process architecture is 64-bit
--exclude-amsiloaded, Exclude instances where amsi.dll is a loaded process module
--exclude-amsiunloaded, Exclude instances where amsi is not loaded process module
--exclude-integrity, Exclude instances where the process integrity level is a specific value

Output Options:

--output-nested, Output the results in a nested style view
-q, --quiet, Do not output the banner

Examples:

Enumerate the process with id 12345
C:\> wanderer --id 12345

Enumerate all processes with the names process1 and processs2
C:\> wanderer --name process1,process2

Enumerate the current process privilege level
C:\> wanderer --current

Enumerate all 32-bit processes
C:\wanderer --all --exclude-64

Enumerate all processes where is AMSI is loaded
C:\> wanderer --all --exclude-amsiunloaded

Enumerate all processes with the names pwsh,powershell,spotify and exclude instances where the integrity level is untrusted or low and exclude 32-bit processes
C:\> wanderer --name pwsh,powershell,spotify --exclude-integrity untrusted,low --exclude-32

لقطات الشاشة

مثال 1

مثال 2

مثال 3

مثال 4

مثال 5

تنزيل الأداة