CrowdScrape
Scrape web content for indicators of interest and integrate CrowdStrike Intelligence information
CrowdScrapeคืออะไร?
CrowdScrape เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CrowdStrike Inc. และคุณลักษณะหลักของมันคือ "Scrape web content for indicators of interest and integrate CrowdStrike Intelligence information"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CrowdScrape
ดาวน์โหลดไฟล์ส่วนขยาย CrowdScrape ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The CrowdStrike Intelligence Team is proud to announce the release of CrowdScrape version 1.3.3. CrowdScrape is a Chrome Plugin designed to allow you to be able to scrape indicators from various websites and in-browser documents such as PDF reports while matching the data up against CrowdStrike Intelligence. This release provides bug fixes and enables support for customers in all cloud environments, and includes support for the OAuth2-based Intel API, which has replaced the deprecated legacy key-based APIs (see https://falcon.crowdstrike.com/support/documentation for further information on our API). This easy to use tool produces indicator lists that collect: · Domain, IP addresses, URLs, hashes (MD5, SHA1, SHA256) and Bitcoin addresses · On-Screen Tagging of CrowdStrike known indicators, and links to Indicator Search · Matches to CrowdStrike Intelligence with links to reports in CrowdStrike Intel Portal · Integrations with the CrowdStrike Indicator Graph to visualise intelligence In addition, you can use CrowdScrape to copy any indicators to clipboard making it easier to pull OSINT from different sources and converting this to a text file for implementation into your systems.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CrowdScrape |
ID | jjplaeklnlddpkbbdbnogmppffokemej |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/crowdscrape/jjplaeklnlddpkbbdbnogmppffokemej |
คำอธิบาย | Scrape web content for indicators of interest and integrate CrowdStrike Intelligence information |
ขนาดไฟล์ | 707 KB |
จำนวนการติดตั้ง | 5,006 |
เวอร์ชันปัจจุบัน | 1.3.4 |
อัปเดตครั้งล่าสุด | 2022-03-23 |
วันที่เผยแพร่ | 2020-01-27 |
คะแนน | 5.00/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | CrowdStrike Inc. |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.crowdstrike.com |
URL หน้านโยบายความเป็นส่วนตัว | https://www.crowdstrike.com/privacy-notice |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CrowdScrape", "version": "1.3.4", "description": "Scrape web content for indicators of interest and integrate CrowdStrike Intelligence information", "icons": { "128": "img\/icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/inject.css" ], "js": [ "lib\/jquery-3.5.1.js", "entityextractor.js", "logic.js" ], "run_at": "document_end" } ], "page_action": { "default_name": "Display Menu", "default_icon": "img\/cs_logo_tiny_red.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "img\/icon.png", "img\/cs_logo_tiny_grey.png", "img\/cs_logo_tiny_red.png", "lib\/jquery-3.5.1.js", "fonts\/glyphicons-halflings-regular.woff2", "entityextractor.js", "logic.js", "css\/inject.css" ], "permissions": [ "storage", "webRequest", "activeTab", "clipboardWrite", "*:\/\/*\/*" ], "commands": { "_execute_page_action": { "suggested_key": { "default": "Alt+S", "windows": "Alt+S", "mac": "Alt+S" } } }, "manifest_version": 2, "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src *;" } |