icalendar/src/icalendar/fuzzing/ical_fuzzer.py

61 wiersze
2.0 KiB
Python

#!/usr/bin/python3
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################
import atheris
import sys
import base64
with atheris.instrument_imports():
import icalendar
from icalendar.tests.fuzzed import fuzz_calendar_v1
_value_error_matches = [
"component", "parse", "Expected", "Wrong date format", "END encountered",
"vDDD", 'recurrence', 'Offset must', 'Invalid iCalendar',
'alue MUST', 'Key name', 'Invalid content line', 'does not exist',
'base 64', 'must use datetime', 'Unknown date type', 'Wrong',
'Start time', 'iCalendar', 'recurrence', 'float, float', 'utc offset',
'parent', 'MUST be a datetime'
]
@atheris.instrument_func
def TestOneInput(data):
print("sys.argv: ", sys.argv)
fdp = atheris.FuzzedDataProvider(data)
try:
multiple = fdp.ConsumeBool()
should_walk = fdp.ConsumeBool()
calendar_string = fdp.ConsumeString(fdp.remaining_bytes())
print("--- start calendar ---")
print(base64.b64encode(calendar_string.encode("UTF-8")).decode("ASCII"))
print("--- end calendar ---")
fuzz_calendar_v1(icalendar.Calendar.from_ical, calendar_string, multiple, should_walk)
except ValueError as e:
if any(m in str(e) for m in _value_error_matches):
return -1
raise e
def main():
atheris.Setup(sys.argv, TestOneInput)
atheris.Fuzz()
if __name__ == "__main__":
main()