# Copyright (c) 2010 Flowerfire, Inc. All Rights Reserved. metavante_ceb_failed_logins = { plugin_version = "1.0.1" # 2006-11-8: 1.0beta - KBB - initial creation # 2006-12-1: 1.0.1beta - KBB - modified to get time and date from correct format # 2007-09-14 - 1.0.1 - KBB - renumbered per new beta policy # The name of the log format log.format.format_label = "Metavante CEB Failed Logins Log Format" log.miscellaneous.log_data_type = "application" log.miscellaneous.log_format_type = "other" # The log is in this format if any of the first ten lines match this regular expression log.format.autodetect_regular_expression = "^Bank_Number Customer_ID Lastname Firstname Login_Date IP_Number Login_Status Failure_Reason" # The format of dates and times in this log log.format.date_format = "auto" log.format.time_format = "auto" # Log entries are called "messages" statistics.miscellaneous.entry_name = "messages" # Fields are separated by tabs log.format.field_separator = " " # Log fields log.fields = { bank_number = { index = 1 subindex = 0 } # bank_number customer_id = { index = 2 subindex = 0 } # customer_id last_name = { index = 3 subindex = 0 } # last_name first_name = { index = 4 subindex = 0 } # first_name date = { index = 5 subindex = 0 } # date time = "" ip_address = { index = 6 subindex = 0 } # ip_address login_status = { index = 7 subindex = 0 } # login_status failure_reason = { index = 8 subindex = 0 } # failure_reason } # log.fields #Bank_Number Customer_ID Lastname Firstname Login_Date IP_Number Login_Status Failure_Reason #373 000000011059 GREENFIELD MARIO 2006/29/11 06:57:54 88.88.88.88 0 #373 000000016196 GARCIA MADELEINE 2006/29/11 12:51:06 88.88.88.88 15500 log.parsing_filters.parse = ` if (matches_regular_expression(date, '^([0-9]+)[-/]([0-9]+)[-/]([0-9]+) ([0-9:]+)$')) then ( date = $1 . "/" . $3 . "/" . $2; time = $4; ); if (failure_reason eq " ") then failure_reason = ""; ` # Database fields database.fields = { date_time = "" day_of_week = "" hour_of_day = "" bank_number = "" customer_id = "" last_name = "" first_name = "" ip_address = "" login_status = "" failure_reason = "" } # database.fields database.numerical_fields = { events = { default = true requires_log_field = false entries_field = true } # events } # database.numerical_fields log.filters = { mark_entry = { label = '$lang_admin.log_filters.mark_entry_label' comment = '$lang_admin.log_filters.mark_entry_comment' value = 'events = 1;' } # mark_entry } # log.filters create_profile_wizard_options = { # How the reports should be grouped in the report menu report_groups = { date_time_group = "" } # report_groups } # create_profile_wizard_options } # metavante_ceb_failed_logins