{"id":22579765,"url":"https://github.com/giterlizzi/perl-net-openvas","last_synced_at":"2025-03-28T16:23:02.939Z","repository":{"id":56839710,"uuid":"247354954","full_name":"giterlizzi/perl-Net-OpenVAS","owner":"giterlizzi","description":"Net::OpenVAS - Perl interface for OpenVAS - Open Vulnerability Assessment Scanner","archived":false,"fork":false,"pushed_at":"2021-01-19T12:24:11.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-02T16:48:38.362Z","etag":null,"topics":["hacktoberfest","modern-perl","openvas","perl","scanner","vulnerability-assessment"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/giterlizzi.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","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":"2020-03-14T21:20:19.000Z","updated_at":"2021-01-19T12:23:54.000Z","dependencies_parsed_at":"2022-08-28T23:30:56.931Z","dependency_job_id":null,"html_url":"https://github.com/giterlizzi/perl-Net-OpenVAS","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giterlizzi%2Fperl-Net-OpenVAS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giterlizzi%2Fperl-Net-OpenVAS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giterlizzi%2Fperl-Net-OpenVAS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giterlizzi%2Fperl-Net-OpenVAS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/giterlizzi","download_url":"https://codeload.github.com/giterlizzi/perl-Net-OpenVAS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246059776,"owners_count":20717150,"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":["hacktoberfest","modern-perl","openvas","perl","scanner","vulnerability-assessment"],"created_at":"2024-12-08T05:12:11.794Z","updated_at":"2025-03-28T16:23:02.912Z","avatar_url":"https://github.com/giterlizzi.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Release](https://img.shields.io/github/release/giterlizzi/perl-Net-OpenVAS.svg)](https://github.com/giterlizzi/perl-Net-OpenVAS/releases) [![Build Status](https://travis-ci.org/giterlizzi/perl-Net-OpenVAS.svg)](https://travis-ci.org/giterlizzi/perl-Net-OpenVAS) [![License](https://img.shields.io/github/license/giterlizzi/perl-Net-OpenVAS.svg)](https://github.com/giterlizzi/perl-Net-OpenVAS) [![Starts](https://img.shields.io/github/stars/giterlizzi/perl-Net-OpenVAS.svg)](https://github.com/giterlizzi/perl-Net-OpenVAS) [![Forks](https://img.shields.io/github/forks/giterlizzi/perl-Net-OpenVAS.svg)](https://github.com/giterlizzi/perl-Net-OpenVAS) [![Issues](https://img.shields.io/github/issues/giterlizzi/perl-Net-OpenVAS.svg)](https://github.com/giterlizzi/perl-Net-OpenVAS/issues) [![Coverage Status](https://coveralls.io/repos/github/giterlizzi/perl-Net-OpenVAS/badge.svg)](https://coveralls.io/github/giterlizzi/perl-Net-OpenVAS)\n\n# Net::OpenVAS - Perl interface to OpenVAS - Open Vulnerability Assessment Scanner\n\nThis module provides Perl scripts easy way to interface the OMP (OpenVAS Management Protocol) of OpenVAS.\n\nFor more information about the OPM follow the online documentation:\n\nhttps://docs.greenbone.net/API/OMP/omp.html\n\n\n## Synopsis\n\n```.pl\nuse Net::OpenVAS;\n\nmy $openvas = Net::OpenVAS-\u003enew(\n    host     =\u003e 'localhost:9390',\n    username =\u003e 'admin',\n    password =\u003e 's3cr3t'\n) or die \"ERROR: $@\";\n\nmy $task = $openvas-\u003ecreate_task(\n    name   =\u003e [ 'Scan created via Net::OpenVAS' ],\n    target =\u003e { id =\u003e 'a800d5c7-3493-4f73-8401-c42e5f2bfc9c' },\n    config =\u003e { id =\u003e 'daba56c8-73ec-11df-a475-002264764cea' }\n);\n\nif ( $task-\u003eis_created ) {\n\n    my $task_id = $task-\u003eresult-\u003e{id};\n\n    say \"Created task $task_id\";\n\n    my $task_start = $openvas-\u003estart_task( task_id =\u003e $task_id );\n\n    say \"Task $task_id started (\" . $task_start-\u003estatus_text . ')' if ( $task_start-\u003eis_accepted );\n\n}\n\nif ( $openvas-\u003eerror ) {\n    say \"ERROR: \" . $openvas-\u003eerror;\n}\n```\n\n## Install\n\nTo install `Net::OpenVAS` distribution, run the following commands:\n\n    perl Makefile.PL\n    make\n    make test\n    make install\n\n## Copyright\n\n - Copyright 2020 © Giuseppe Di Terlizzi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiterlizzi%2Fperl-net-openvas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgiterlizzi%2Fperl-net-openvas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiterlizzi%2Fperl-net-openvas/lists"}