Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file modified Solutions/CiscoUmbrella/Data Connectors/CiscoUmbrellaConn.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ def parse_csv_ip(self, csv_file):
yield event

def parse_csv_dlp(self, csv_file):
csv.field_size_limit(1 * 1024 * 1024) # Set 1MB limit for large fields
csv_reader = csv.reader(csv_file.split('\n'), delimiter=',')
for row in csv_reader:
if len(row) > 1:
Expand Down Expand Up @@ -382,6 +383,7 @@ def parse_csv_dlp(self, csv_file):
yield event

def parse_csv_proxy(self, csv_file):
csv.field_size_limit(1 * 1024 * 1024) # Set 1MB limit for large fields
sanitized_csv_file = csv_file.replace('\x00', '')

csv_reader = csv.reader(sanitized_csv_file.split('\n'), delimiter=',')
Expand Down Expand Up @@ -572,6 +574,7 @@ def parse_csv_proxy(self, csv_file):
continue

def parse_csv_dns(self, csv_file):
csv.field_size_limit(1 * 1024 * 1024) # Set 1MB limit for large fields
csv_reader = csv.reader(csv_file.split('\n'), delimiter=',')
for row in csv_reader:
if len(row) > 1:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"Metadata": "SolutionMetadata.json",
"TemplateSpec": true,
"Is1Pconnector": false,
"Version": "3.0.0",
"Version": "3.0.1",
"publisherId": "azuresentinel",
"offerId": "azure-sentinel-solution-ciscoumbrella",
"providers": [
Expand Down
Binary file added Solutions/CiscoUmbrella/Package/3.0.8.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Solutions/CiscoUmbrella/Package/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -491,4 +491,4 @@
"workspace": "[basics('workspace')]"
}
}
}
}
Loading
Loading