Skip to content

Commit

Permalink
Updated - detect more redacted whois text
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiIgna committed Apr 8, 2020
1 parent 24b59f5 commit 7a13f27
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Whoiser change log

#### 1.6.6 - 8 April 2020
- Updated - detect more redacted whois text
- Fixed - Parse WHOIS lines with double colon #6

#### 1.6.2 - 19 Nov 2019
- Updated - Merge more WHOIS domain labels
- Fixed - Return contact info for TLD WHOIS
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "whoiser",
"version": "1.6.5",
"version": "1.6.6",
"description": "Whois info for TLDs, domains and IPs",
"keywords": [
"whois",
Expand Down
2 changes: 1 addition & 1 deletion src/parsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const parseSimpleWhois = whois => {
}

const parseDomainWhois = whois => {
const noData = ['-', 'data protected, not disclosed', 'data redacted', 'redacted for privacy', 'gdpr redacted', 'non-public data', 'gdpr masked']
const noData = ['-', 'data protected, not disclosed', 'data redacted', 'redacted for privacy', 'gdpr redacted', 'non-public data', 'gdpr masked', 'not disclosed', 'statutory masking enabled', 'redacted by privacy']
const renameLabels = {
'domain name': 'Domain Name',
domain: 'Domain Name',
Expand Down

0 comments on commit 7a13f27

Please sign in to comment.