{"id":18932532,"url":"https://github.com/adrianherrera/virustotal","last_synced_at":"2025-04-15T16:33:50.402Z","repository":{"id":21001106,"uuid":"24290970","full_name":"adrianherrera/virustotal","owner":"adrianherrera","description":"A simple command-line script to interact with the virustotal-api","archived":false,"fork":false,"pushed_at":"2018-03-02T20:53:54.000Z","size":37,"stargazers_count":61,"open_issues_count":1,"forks_count":16,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-28T23:43:33.587Z","etag":null,"topics":["malware-analysis","python","virustotal"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adrianherrera.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-21T12:56:46.000Z","updated_at":"2025-02-20T10:09:12.000Z","dependencies_parsed_at":"2022-07-26T15:02:01.260Z","dependency_job_id":null,"html_url":"https://github.com/adrianherrera/virustotal","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianherrera%2Fvirustotal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianherrera%2Fvirustotal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianherrera%2Fvirustotal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianherrera%2Fvirustotal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adrianherrera","download_url":"https://codeload.github.com/adrianherrera/virustotal/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249108580,"owners_count":21214018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["malware-analysis","python","virustotal"],"created_at":"2024-11-08T11:49:33.819Z","updated_at":"2025-04-15T16:33:50.141Z","avatar_url":"https://github.com/adrianherrera.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VirusTotal\n\nA simple [Python](http://python.org)-based command-line script to interact with [blacktop](https://github.com/blacktop)'s [virustotal-api](https://pypi.python.org/pypi/virustotal-api).\n\n## License\nGPLv3\n\n## Requirements\n* [virustotal-api](https://pypi.python.org/pypi/virustotal-api)\n\n## Installation\n```\npython setup.py install\n```\n\n## Configuration\nA configuration file is used to store your VirusTotal API key. It uses the following format:\n\n```\n[virustotal]\napikey: \u003cyour API key here\u003e\n```\n\nThe configuration file can be specified using the `--config` command-line option. By default `$HOME/.vtapi` is used.\n\n## Usage\n### File Scan\nSubmit a file to be scanned.\n```\npython vt_driver.py file-scan [-h] file\n\nPositional arguments:\n file        File path\n\nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### Rescan\nRescan previously submitted file(s) without having to resubmit, thus saving bandwidth.\n```\npython vt_driver.py rescan [-h] hash [hash ...]\n\nPositional arguments:\n hash        List of MD5/SHA1/SH256 hashes (up to 25)\n\nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### File Report\nRetrieve file scan results.\n```\npython vt_driver.py file-report [-h] hash [hash ...]\n\nPositional arguments:\n hash        List of MD5/SHA1/SHA256 hashes (up to 25)\n\nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### Behaviour\nGet a report on the behaviour of a file in a sandbox environment.\n```\npython vt_driver.py behaviour [-h] hash\n\nPositional arguments:\n hash        An MD5/SHA1/SHA256 hash\n\nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### Pcap\nGet a dump of the network traffic generated by the file.\n```\npython vt_driver.py pcap [-h] [-o OUTPUT_DIR] hash\n\nPositional arguments:\n hash        An MD5/SHA1/SHA256 hash\n \nOptional arguments:\n -h, --help  Show this help message and exit\n -o OUTPUT_DIR, --output-dir OUTPUT_DIR\n             Output directory to write downloaded pcap file to\n             (defaults to the current working directory)\n```\n\n### Search\nSearch for files.\n```\npython vt_driver.py search [-h] [-o OFFSET] query\n\nPositional arguments:\n query       A comma-separated search query. See\n             https://www.virustotal.com/intelligence/help/file-search/#search-modifiers\n             for valid search modifiers\n\nOptional arguments:\n -h, --help  Show this help message and exit\n -o, --offset\n             Offset returned by the previous search query. Allows for\n             pagenation of results\n```\n\n### Download\nDownload a file.\n```\npython vt_driver.py download [-h] [-o OUTPUT_DIR] hash\n\nPositional arguments:\n hash        An MD5/SHA1/SHA256 hash\n \nOptional arguments:\n -h, --help  Show this help message and exit\n -o OUTPUT_DIR, --output-dir OUTPUT_DIR\n             Output directory to write downloaded file to\n             (defaults to the current working directory)\n```\n\n### URL Scan\nSubmit URL(s) to be scanned.\n```\npython vt_driver.py url-scan [-h] url [url ...]\n\nPositional arguments:\n url         URL(s) (up to 25)\n\nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### URL Report\nGet URL scan results.\n```\npython vt_driver.py url-report [-h] url [url ...]\n\nPositional arguments:\n url         URL(s) (up to 25)\n\nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### IP Report\nGet information about an IP address.\n```\npython vt_driver.py ip-report [-h] ip\n\nPositional arguments:\n ip          An IPv4 address\n \nOptional arguments:\n -h, --help  Show this help message and exit\n```\n\n### Domain Report\nGet information about a domain.\n```\npython vt_driver.py domain-report [-h] domain\n\nPositional arguments:\n domain      A domain name\n \nOptional arguments:\n -h, --help  Show this help message and exit\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadrianherrera%2Fvirustotal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadrianherrera%2Fvirustotal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadrianherrera%2Fvirustotal/lists"}