Skip to content

Commit

Permalink
Update LineTableModel.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Nov 5, 2024
1 parent 4d80b0e commit 1e698e3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/title/LineTableModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,12 @@ public void MarkNotTargetRows() {
int port = entry.getPort();

int type = model.assetType(host);

if (type == DomainManager.IP_ADDRESS) {
//避免网段内IP、内网IP被删除,应该通过网段信息判断
continue;
}

//规则1
if (DomainUtils.isValidDomainNoPort(host)) {
if ((type == DomainManager.USELESS || type==DomainManager.SIMILAR_DOMAIN)
Expand Down

0 comments on commit 1e698e3

Please sign in to comment.