FatBeagle

Bark! Help me find more URLs. Woof!

FatBeagleคืออะไร?

FatBeagle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brandon Dixon และคุณลักษณะหลักของมันคือ "Bark! Help me find more URLs. Woof!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FatBeagle

ดาวน์โหลดไฟล์ส่วนขยาย FatBeagle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Fat Beagle is a Chrome Extension that collects URLs being accessed while the user browses the Internet. It specifically looks for scripts, domains and asynchronous requests. Once those items are collected, they are saved within local storage and later sent in bulk to a remote web server.

Current supported collection methods:
- Manual submission via pop-up menu
- Automatic URL extract from web pages being browsed
- Automatic URL, host and IP address extraction from raw network requests
- Right-click context menu to submit links embedded in pages

Why
Browsing websites produces hundreds of URLs, many of which may be of interest to security researchers. Collecting these URLs gives the researcher an advantage on potentially seeing new hosts or content that may have otherwise gone unnoticed. Having a local toolset that's built into the browser is also helpful in events that an analyst finds something interesting and wants to preserve it for later investigation.

Configuration
Users can configure Fat Beagle with a profile name, URL, token and private key for the a remote server. Additional options allow for the user to turn on or off specific extension capabilities.

FAQ
- Does FatBeagle include personal information? 
No. This extension will only send network information to remote servers for which it is permitted.

- Can I run FatBeagle just for manual submissions? 
Yes. By default, FatBeagle is configured to only send data when the user explicitly forces it to be sent.

- Won't this generate a lot of noise? 
Without filters and pruning, yes it would. FatBeagle uses a simple state machine in order to identify hosts that appear at a higher frequency. These items are removed from submissions in order to not overwhelm our crawlers.

- Can I send ideas to improve this extension? 
Absolutely, submit a pull request or issues.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FatBeagle FatBeagle
ID enmebdiokjodcejfakkiadnfijepfkmn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fatbeagle/enmebdiokjodcejfakkiadnfijepfkmn
คำอธิบาย Bark! Help me find more URLs. Woof!
ขนาดไฟล์ 198 KB
จำนวนการติดตั้ง 12
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2017-11-07
วันที่เผยแพร่ 2017-11-07
ผู้พัฒนา Brandon Dixon
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/9b/fatbeagle
URL หน้าช่วยเหลือ https://medium.com/@9bplus/fatbeagle-automated-url-collection-e116669e412c
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FatBeagle",
    "description": "Bark! Help me find more URLs. Woof!",
    "version": "1.0.0",
    "icons": {
        "16": "resources\/ico\/16.png",
        "48": "resources\/ico\/48.png",
        "128": "resources\/ico\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "resources\/external\/jquery.js",
                "resources\/js\/content\/inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src",
    "browser_action": {
        "default_title": "Fat Beagle",
        "default_icon": "resources\/ico\/16.png",
        "default_popup": "resources\/static\/popup.html"
    },
    "options_page": "resources\/static\/options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "webRequest",
        "webRequestBlocking",
        "alarms",
        "notifications",
        "unlimitedStorage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "resources\/external\/jquery.js",
            "resources\/external\/psl.min.js",
            "resources\/external\/md5.js",
            "resources\/js\/core\/const.js",
            "resources\/js\/core\/utils.js",
            "resources\/js\/core\/background.js"
        ],
        "persistent": true
    }
}