-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobots.code.vb
37 lines (31 loc) · 1.41 KB
/
robots.code.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Imports System.IO
Module Module1
Sub Main()
Dim logDirectory As String = "C:\Path\To\IIS\Logs"
Dim outputFile As String = "C:\Path\To\Output\filtered_logs.csv"
Dim robotsTxtIPs As New HashSet(Of String)()
Dim linesToWrite As New List(Of String)()
' Read all files in the directory
For Each file As String In Directory.GetFiles(logDirectory, "*.log")
Dim lines As String() = File.ReadAllLines(file)
For Each line As String In lines
Dim parts As String() = line.Split(" ")
' Assuming IP address is the first part and the requested URL is somewhere in the line
If parts.Length > 10 AndAlso parts.Any(Function(part) part.Contains("robots.txt")) Then
robotsTxtIPs.Add(parts(0)) ' Add the IP address to the exclusion list
Else
If Not robotsTxtIPs.Contains(parts(0)) Then
linesToWrite.Add(line) ' Add line to output if IP not in exclusion list
End If
End If
Next
Next
' Write filtered data to CSV
Using writer As New StreamWriter(outputFile)
For Each line As String In linesToWrite
writer.WriteLine(line)
Next
End Using
Console.WriteLine("Filtered logs have been written to " + outputFile)
End Sub
End Module