python-whois showing different results
I made a script that opens the csv file which contains multiple domain names and then uses python-whois module to find the emails for each domain.import whoisimport csvwith open('emails.csv', 'r',...
View ArticleCorrect command to get domain whois info [closed]
If I use # whois google.ru ssh command then I get proper whois information.But if I try to use the same for the following domain I fail:htaccess.net.ruThe response I get is No entries found for the...
View ArticleDNS Domain Registry WhoIs Match Not Found
I am monitoring a domain for when it expires. I am familiar with the expiring domain process: grace period, redemption period and then deleted.What has me baffled is when I search for this particular...
View ArticleUnable to find a match for 'manpƓwer.com' although domain information is...
I am encountering an issue while using the whois gem, as it fails to locate any records for the domain name 'manpƓwer.com'.No match for "MANPƓWER.COM".>>> Last update of whois database:...
View ArticleErrors: DNS PROBE FINISHED NXDOMAIN
I tried to pass the domain from the URL dataset and get the domain from the whois database.However, when I run the Jupyter notebook, it stuck.Functions:def get_features(url,label): features = [] .......
View ArticleWhois lookup via a proxy server: java.lang.IllegalArgumentException: Invalid...
I have tried this...gives me a java.lang.IllegalArgumentException: Invalid Proxy. The getters populate the proxy and port from a text file. //Imports import java.io.BufferedReader; import java.io.File;...
View ArticleHow do I findout domain expiry date of a .org and .in website in java
I'm using WhoisClient (org.apache.commons.net.whois.WhoisClient) to retrieve my website domain expiry date. It is working for the domain with .com extension. When I try to check the expiry date for one...
View ArticleHow to get whois information of a domain name in my program?
I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this?
View ArticleGetting question marks instead of domain information when using WHOIS command...
I'm trying to learn how to use whois, and when I type whois google.com in terminal, it doesn't show up the information about the domain but some question marks. Does anyone know why this happened?...
View ArticleThe whois.whois function always gets a timed out error
The whois.whois function always gets a timed out error.At first, I thought it was because my project is written in Python 2.7 but I also checked in 3.7 and got the same error.I checked the address on...
View ArticleWhy am I getting 'TypeError: a bytes-like object is required, not 'str'' when...
I am creating a basic "whois" script, but it is not working. When I try to run it in the Linux terminal, it returns the error:"TypeError: a bytes-like object is required, not 'str'" indicated inthe...
View ArticleTrying to create a whois in python but it doesn't run
For some reason, the output returns like this instead of how it should be: Listed; one under the other; organized.Reference:consulta.pyfrom socket import socket, AF_INET, SOCK_STREAMfrom sys import...
View Articlewhois command and whois REST API giving different results for IP address
Running whois 74.93.16.177 on my laptop gives me information back and tells me the IP belongs to Comcast.However calling the Whois REST API tells me that the IP is not managed by RIPE. I'm also able to...
View ArticleWhois with a list of domain names but got error "No whois server is known for...
I got the error message "No whois server is known for this kind of object." When I had my script run.#!/bin/bashdomain_list="input.txt"while read linedo name=$line echo $name whois $name sleep 2done...
View ArticleAre EPP status codes case-sensitive?
When I reviewed the relevant RFC documents, I couldn't find anything about the case sensitivity of the status codes. Therefore, I wanted to ask this question here.I have encountered the following EPP...
View ArticleHow to get list of expiring/dropping Domains
How to get the list of Expiring or dropping domains ? Just like Park.ioThanks in advance.
View ArticlePossible to search Whois database by registrant name?
I am looking to collect domains and registrants' contact details via whois lookups. Does anybody know of a resource that has free reverse look-ups using the registrant name as the search term?
View ArticleAttributeError: module 'whois' has no attribute 'whois'
I am running my ML code and getting this error- Enter website name=> www.google.comTraceback (most recent call last): File "Dphishing.py", line 12, in <module> p2.category2(website) File...
View ArticleDoing a whois with a list of domain names
I've got a file of domain names e.g. equivalent to 2500.I would like to do a whois on these domain names. Issue is I've never done that and don't know where to start. If you have any ideas, I'm all...
View ArticleI want to get the site information of tk domain in python-whois
I want to get the site information of gg domain in python-whois.However, it is not possible to obtain information about a domain in a particular TLD(e.g. example.tk for the tk domain).import whoisres =...
View Article