Hello colleagues! Now I am doing a small utility - mail collector. Collects mail on POP3. I would like the domain addresses from which the letters came to be checked on popular stop lists such as spamhaus or abuseat (i.e., download the headers from the server, collect all the domains in the list and check them with some list of unwanted domain addresses, and then they decide reject it or not, etc.). So here I can not find the current, constantly updated, database of domains that hit the stop list. I don’t know how to do this with only these sites (spamhaus and abuseat). On one of them is a captcha, in another input field for one domain name. Maybe I’m looking badly, losing sight of something, or is there some other way to do it?
1 answer
If someone faces the same task, then here’s the solution:
request = HttpWebRequest.CreateHttp("https://ru.myip.ms/files/blacklist/general/latest_blacklist.txt"); response = (WebResponse)request.GetResponse(); Here it’s not a request / response, but the fact that the current stop list is available in text form for this link and, accordingly, it’s rather simple then to work with it.
|