I am currently in the process of building a application to look up the abuse contact email address, from lets say, a gmail account? I want this application to allow the user to place ex. gmail.com or yahoo.com into a text box, and in one click of a button the application goes out and looks up the contact information. Currently my application brings back the correct IP for that abuse contact, but I need it to give me the abuse contact email address.

Here are a few websites I've been looking through for help, I have gotten accurate results from querycontacts via python in ubuntu, but that process is too cumbersome for an average user and in this application base, this can be redistributed to there windows machines easily.

https://abusix.com/contactdb.html

https://www.abuse.net/using.phtml

My code thus far,

'Declared Variables'
Dim Hostname As IPHostEntry = Dns.GetHostByName(InputTxt.Text)

Dim ip As IPAddress() = Hostname.AddressList

IPL.Text = "IP: " + ip(0).ToString

Dim result = System.Net.Dns.GetHostByName(InputTxt.Text + ".abuse-contacts.abusix.org").HostName

OutputTxt.Text = result.ToString

Basiclly I'm having an issue trying to show/grab/display an abuse email address.
If my explanation wasn't clear enough please let me know and I will explain further.