Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
webbrowser ile seçmemin sebebi net ile çekmeye çalıştığımda sitenin 403 vermesi viewdns.info
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
Console.Title = "Source downloader";
using (WebClient wc = new WebClient())
{
wc.Headers.Add(HttpRequestHeader.UserAgent,
"other");
string content= wc.DownloadString($"https://viewdns.info/reverseip/?host={Console.ReadLine()}&t=1");
File.WriteAllText("source.txt", content);
}
Console.ReadLine();