Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev->Main #557

Merged
merged 17 commits into from
Jan 16, 2025
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion baddns/modules/txt.py
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@
from baddns.lib.findings import Finding

import logging
import ipaddress

log = logging.getLogger(__name__)

@@ -41,6 +42,14 @@ async def dispatch(self):
for match in DNSManager.dns_name_regex.finditer(txt_record):
start, end = match.span()
host = txt_record[start:end]

try:
# Check if the host is an IP address
ipaddress.ip_address(host)
continue # Skip this match if it's a valid IP address
except ValueError:
pass

self.infomsg(f"Found host [{host}] in TXT record [{txt_record}] and analyzing with CNAME module")

cname_instance_direct = BadDNS_cname(
@@ -56,7 +65,7 @@ async def dispatch(self):
self.cname_findings_direct.append(
{
"finding": cname_instance_direct.analyze(),
"description": "Vulnerable Host in TXT Record",
"description": f"Vulnerable Host [{host}] in TXT Record",
"trigger": self.target_dnsmanager.target,
}
)
46 changes: 23 additions & 23 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "baddns"
version = "1.6.0"
version = "1.7.0"
description = "Check subdomains for subdomain takeovers and other DNS tomfoolery"
authors = ["liquidsec <[email protected]>"]
repository = "https://github.com/blacklanternsecurity/baddns"
@@ -56,4 +56,4 @@ build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
metadata = true
format = '1.6.{distance}'
format = '1.7.{distance}'
21 changes: 20 additions & 1 deletion tests/txt_test.py
Original file line number Diff line number Diff line change
@@ -20,11 +20,30 @@ async def test_txt_match(fs, mock_dispatch_whois, configure_mock_resolver):
assert findings
expected = {
"target": "bad.dns",
"description": "Vulnerable Host in TXT Record. Original Event: [Dangling CNAME, probable subdomain takeover (NXDOMAIN technique)]",
"description": "Vulnerable Host [baddns.azurewebsites.net] in TXT Record. Original Event: [Dangling CNAME, probable subdomain takeover (NXDOMAIN technique)]",
"confidence": "PROBABLE",
"signature": "Microsoft Azure Takeover Detection",
"indicator": "azurewebsites.net",
"trigger": "bad.dns",
"module": "TXT",
}
assert any(expected == finding.to_dict() for finding in findings)


@pytest.mark.asyncio
async def test_txt_dontmatchip(fs, mock_dispatch_whois, configure_mock_resolver):
mock_data = {
"bad.dns": {"TXT": ["some text 100.100.100.100 some more text"]},
"_NXDOMAIN": ["baddns.azurewebsites.net"],
}
mock_resolver = configure_mock_resolver(mock_data)
target = "bad.dns"
mock_signature_load(fs, "nucleitemplates_azure-takeover-detection.yml")
signatures = load_signatures("/tmp/signatures")
baddns_txt = BadDNS_txt(target, signatures=signatures, dns_client=mock_resolver)

findings = None
if await baddns_txt.dispatch():
findings = baddns_txt.analyze()

assert not findings