No-CSRF

Prevent cookies from being client-side sent cross-origin.

ما هو No-CSRF؟

No-CSRF هو إضافة Chrome تم تطويرها بواسطة brandonio21، والميزة الرئيسية لها هي "Prevent cookies from being client-side sent cross-origin.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة No-CSRF

قم بتنزيل ملفات الامتداد No-CSRF بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Cross-Site Request Forgery is a major problem when it comes to browsing the web. If an attacker were to craft a request toward a server that performs an action, the request would contain any identifying cookies you have. As pointed out in academic literature, this can be used to empty bank accounts, change passwords, or anything in between.

This extension attempts to prevent Cross-Site Request Forgery by stripping cookies from any (non-GET) request that does not follow the same-origin policy. In this way, normal browsing remains uninterrupted while any possible CRSF attacks are blocked!

The extension is easily disabled and contains a small report of all requests which had cookies stripped. 

This extension is open source and the source code is viewable at https://github.com/brandonio21/no-csrf

This extension is based on a similar extension by avlidienbrunn                    

معلومات أساسية عن التمديد

الاسم No-CSRF No-CSRF
ID amababajdpoioajiapncbkhcbpkncepk
عنوان URL الرسمي https://chromewebstore.google.com/detail/no-csrf/amababajdpoioajiapncbkhcbpkncepk
الوصف Prevent cookies from being client-side sent cross-origin.
حجم الملف 9.58 KB
عدد التثبيتات 392
النسخة الحالية 0.42
آخر تحديث 2016-07-05
تاريخ النشر 2016-07-04
تقييم 5.00/5 مجموع تقييمات 1
المطور brandonio21
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/brandonio21/no-csrf
عنوان صفحة المساعدة https://github.com/brandonio21/no-csrf
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No-CSRF",
    "version": "0.42",
    "description": "Prevent cookies from being client-side sent cross-origin.",
    "icons": {
        "128": "badge.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "webNavigation",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "badge.png",
        "default_popup": "popup.html"
    }
}