
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2020 04:26 PM
Can someone help me to get a audit query for listing only DNS servers checking CVE june vulnerability
Labels:
- Labels:
-
General Discussion
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2020 12:59 PM
You can filter for DNS servers in your report by doing the following:
Join the tables containing service data:
INNER JOIN tblServices ON tblServices.AssetID = tblAssets.AssetID
INNER JOIN tblServicesUni ON tblServicesUni.ServiceuniqueID = tblServices.ServiceuniqueID
Add a check for the DNS Server service in your Where clause:
WHERE tblServicesUni.Caption LIKE '%DNS Server%'
AND tblServices.Started = 1
Join the tables containing service data:
INNER JOIN tblServices ON tblServices.AssetID = tblAssets.AssetID
INNER JOIN tblServicesUni ON tblServicesUni.ServiceuniqueID = tblServices.ServiceuniqueID
Add a check for the DNS Server service in your Where clause:
WHERE tblServicesUni.Caption LIKE '%DNS Server%'
AND tblServices.Started = 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-20-2020 02:37 PM
Thanks FrankSc. I ran this query but it is pulling out report from all workstations and servers. Is there any way I can get report for only dns servers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-20-2020 02:28 PM
Hello,
This is part of our July 2020 a patch Tuesday report for which you can find a link on the blog post below:
https://www.lansweeper.com/patch-tuesday/microsoft-patch-tuesday-audit-july-2020/
This is part of our July 2020 a patch Tuesday report for which you can find a link on the blog post below:
https://www.lansweeper.com/patch-tuesday/microsoft-patch-tuesday-audit-july-2020/
