checkVT

checkVT sends the selected URL through a parsing process, then to VirusTotal to check if it has been analyzed for malware.

Τι είναι το checkVT;

Το checkVT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον emyll32dev, και η κύρια λειτουργία του είναι "checkVT sends the selected URL through a parsing process, then to VirusTotal to check if it has been analyzed for malware.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης checkVT

Λήψη αρχείων επέκτασης checkVT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        checkVT (check VirusTotal) is an open source project developed by Emyll Almonte for an independent research class supervised by Dr. Vaibhav Anu (Assistant Professor, Department of Computer Science), Montclair State University.

checkVT is a simple web browser extension that takes a selected URL via context-menu and submits it directly to be checked against all engines on VirusTotal with an added feature. VirusTotal is a free service that uses over 70 antivirus scanners and URL/domain blacklisting services to analyze suspicious files and URLs to detect types of malware. The feature checkVT incorporates is a process that tries to find the effective URL (redirect) if it exists on the URL that was submitted, and sends that URL to VirusTotal instead of the URL that was selected. This extra step helps users see the VirusTotal results for the URL/domain that they would have ended up at, as opposed to the original link they clicked on. URL redirection is a major phishing method that attackers use to masquerade as legitimate websites.

For more info and to see the open source code, please visit the GitHub repo: https://github.com/ealmonte32/checkVT

====================
Release notes:

Version 2.3:
- Minor JavaScript linting fixes
- Minor improvements to reduce lines of code
- Minor URL encoding fixes
- Popup localhost line fix


Version 2.0.0:
- URLs are now submitted in full form of 'scheme' (http/https) + 'host' + 'path'
- URLs being submitted in full rather than 'scheme' + 'host' being checked for previous analyzation provides a greater form of protection by returning a wider range of results
- Unlike previous versions where it just said "Item-Not-Found" for URLs that had not been analyzed, your never-before submitted URL is now automatically sent to be analyzed


Version 1.0.4:
- Added checkVT URL search field directly onto add-on/extension popup for quick access
- Improved URL cleaning of whitespace
- New logo


Version 1.0.3:
- Initial public release
- Improved URL decoding
- Added google search result filtering to send the "url=" and not "google.com"
- Improved detection of a link or a text-based URL when both were selected


Version 1.0.0-1.0.2:
- Initial beta release
- Added option for curl to respect GET requests when following 301, 302, and 303 redirections
- Added HTTP user agent header to processing because some servers act different if the user agent is not supplied
- Added all encoding option to send gzip, deflate, etc on request
- Added parsing of URL scheme                    

Βασικές Πληροφορίες Επέκτασης

Όνομα checkVT checkVT
ID fppeaohnnimpokhckkjfdafcpkoibjbp
Επίσημο URL https://chromewebstore.google.com/detail/checkvt/fppeaohnnimpokhckkjfdafcpkoibjbp
Περιγραφή checkVT sends the selected URL through a parsing process, then to VirusTotal to check if it has been analyzed for malware.
Μέγεθος Αρχείου 18.82 KB
Αριθμός Εγκαταστάσεων 13
Τρέχουσα Έκδοση 2.3.1
Τελευταία Ενημέρωση 2024-01-02
Ημερομηνία Δημοσίευσης 2020-11-11
Προγραμματιστής emyll32dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ealmonte32/checkVT
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ealmonte32/checkVT
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/ealmonte32/checkVT
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "checkVT",
    "version": "2.3.1",
    "description": "checkVT sends the selected URL through a parsing process, then to VirusTotal to check if it has been analyzed for malware.",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/checkvt_icon16.png",
        "32": "images\/checkvt_icon32.png",
        "48": "images\/checkvt_icon48.png"
    },
    "browser_action": {
        "default_icon": "images\/checkvt_icon48.png",
        "default_popup": "popup.html"
    }
}