Script Agent
Having the possibility to parse the terminal output allows you to add whatever tool do you need to run connecting the output with what you want to save on the database.
Script Agent is the most powerful feature of ReconNess because with that Script you can parse the Terminal output and then you can connect the Terminal output with the database.

Update Script Agent page
The Script receives two parameters, the output line from the Terminal
string lineInput
and the int lineInputCount
with the count line from the Terminal and you need to return an Object RecoNess.Core.Models.ScriptOutput
namespace ReconNess.Core.Models
{
public class ScriptOutput
{
public string Subdomain { get; set; }
public string Ip { get; set; }
public bool? Takeover { get; set; }