forked from brandonprry/gray_hat_csharp_code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
57 lines (44 loc) · 1.67 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Xml.Linq;
using System.Threading;
using System.Linq;
using System.Xml.XPath;
using System.Xml;
namespace ch8_automating_openvas
{
class MainClass
{
public static void Main (string[] args)
{
using (OpenVASSession session = new OpenVASSession ("admin", "admin", "192.168.1.19")) {
using (OpenVASManager manager = new OpenVASManager (session)) {
XDocument version = manager.GetVersion ();
Console.WriteLine (version);
XDocument target = manager.CreateSimpleTarget ("192.168.1.31", Guid.NewGuid ().ToString ());
string targetID = target.Root.Attribute ("id").Value;
XDocument configs = manager.GetScanConfigurations ();
string discoveryConfigID = string.Empty;
foreach (XElement node in configs.Descendants("name")) {
if (node.Value == "Discovery") {
discoveryConfigID = node.Parent.Attribute ("id").Value;
break;
}
}
XDocument task = manager.CreateSimpleTask (Guid.NewGuid ().ToString (), string.Empty, new Guid (discoveryConfigID), new Guid (targetID));
Guid taskID = new Guid (task.Root.Attribute ("id").Value);
manager.StartTask (taskID);
XDocument status = manager.GetTasks (taskID);
while (status.Descendants ("status").First ().Value != "Done") {
Thread.Sleep (500);
Console.Clear ();
string percentComplete = status.Descendants ("progress").First ().Nodes ().OfType<XText> ().First ().Value;
Console.WriteLine ("The scan is " + percentComplete + "% done.");
status = manager.GetTasks (taskID);
}
XDocument results = manager.GetTaskResults (taskID);
Console.WriteLine (results.ToString ());
}
}
}
}
}