diff --git a/Dockerfile.dev b/Dockerfile.dev index 1efa655..0a42975 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -131,7 +131,7 @@ FROM base as llvm-custom # output the code lines instrumented by AddressSanitizer (ASan) or Memory- # Sanitizer (MSan) into a CSV file. -RUN wget --quiet "https://github.com/tum-i4/llvm-project/archive/refs/tags/llvmorg-${LLVM_VERSION}c.tar.gz" \ +RUN wget --quiet "https://github.com/XXX-XXX/llvm-project/archive/refs/tags/llvmorg-${LLVM_VERSION}c.tar.gz" \ && tar xf "llvmorg-${LLVM_VERSION}c.tar.gz" \ && rm -f "llvmorg-${LLVM_VERSION}c.tar.gz" \ && mv "llvm-project-llvmorg-${LLVM_VERSION}c" "/opt/llvm-${LLVM_VERSION}" diff --git a/LICENSE b/LICENSE index b9c181e..96da3c6 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023 Stephan Lipp + Copyright 2023 XXX XXX Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cmake/code_coverage.cmake b/cmake/code_coverage.cmake index 4a9ab5f..0a0141b 100644 --- a/cmake/code_coverage.cmake +++ b/cmake/code_coverage.cmake @@ -52,7 +52,7 @@ # 2020-05-04, Mihchael Davis - Add -fprofile-abs-path to make gcno files contain absolute paths - Fix BASE_DIRECTORY not # working when defined - Change BYPRODUCT from folder to index.html to stop ninja from complaining about double defines # -# 2021-05-10, Martin Stump - Check if the generator is multi-config before warning about non-Debug builds +# 2021-05-10, Martin SXXXp - Check if the generator is multi-config before warning about non-Debug builds # # 2022-02-22, Marko Wehle - Change gcovr output from -o for --xml and --html output # respectively. This will allow for Multiple Output Formats at the same time by making use of GCOVR_ADDITIONAL_ARGS, diff --git a/sast-fuzz/fuzzing/src/main.c b/sast-fuzz/fuzzing/src/main.c index 58f2f27..be81d9f 100644 --- a/sast-fuzz/fuzzing/src/main.c +++ b/sast-fuzz/fuzzing/src/main.c @@ -7157,7 +7157,7 @@ u8 fuzz_one(char **argv) { FLIP_BIT(out_buf, stage_cur); - /* While flipping the least significant bit in every byte, pull of an extra + /* While fXXXing the least significant bit in every byte, pull of an extra trick to detect possible syntax tokens. In essence, the idea is that if you have a binary blob like this: @@ -7172,7 +7172,7 @@ u8 fuzz_one(char **argv) { We do this here, rather than as a separate stage, because it's a nice way to keep the operation approximately "free" (i.e., no extra execs). - Empirically, performing the check when flipping the least significant bit + Empirically, performing the check when fXXXing the least significant bit is advantageous, compared to doing it at the time of more disruptive changes, where the program flow may be affected in more violent ways. @@ -7346,7 +7346,7 @@ u8 fuzz_one(char **argv) { /* We also use this stage to pull off a simple trick: we identify bytes that seem to have no effect on the current execution path - even when fully flipped - and we skip them during more expensive + even when fully fXXXed - and we skip them during more expensive deterministic stages, such as arithmetics or known ints. */ if (!eff_map[EFF_APOS(stage_cur)]) { @@ -9667,7 +9667,7 @@ void check_crash_handling(void) { if (read(fd, &fchar, 1) == 1 && fchar == '|') { SAYF("\n" cLRD "[-] " cRST "Hmm, your system is configured to send core dump notifications to an\n" " external utility. This will cause issues: there will be an extended delay\n" - " between stumbling upon a crash and having this information relayed to the\n" + " between sXXXbling upon a crash and having this information relayed to the\n" " fuzzer via the standard waitpid() API.\n\n" " To avoid having crashes misinterpreted as timeouts, please log in as root\n" diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h b/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h index 6dcc57e..93fb2f0 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h b/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h index 0f68691..b47d926 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h b/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h index c115cae..daaee07 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/io.h b/sast-fuzz/static_analysis/inspection/include/sfi/io.h index 90a4189..a7f36af 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/io.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/io.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h b/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h index 98071f2..9fab7e1 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h b/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h index a748513..5e709d5 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/types.h b/sast-fuzz/static_analysis/inspection/include/sfi/types.h index 034f285..b3199a0 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/types.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/types.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp b/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp index 8299e06..ea32cf1 100644 --- a/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp +++ b/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp b/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp index 87f6169..0f7814b 100644 --- a/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp +++ b/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp b/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp index 754539c..175e4db 100644 --- a/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp +++ b/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/main.cpp b/sast-fuzz/static_analysis/inspection/src/main.cpp index 1abf292..d534555 100644 --- a/sast-fuzz/static_analysis/inspection/src/main.cpp +++ b/sast-fuzz/static_analysis/inspection/src/main.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/utils/io.cpp b/sast-fuzz/static_analysis/inspection/src/utils/io.cpp index ebc32b8..ffe0dbe 100644 --- a/sast-fuzz/static_analysis/inspection/src/utils/io.cpp +++ b/sast-fuzz/static_analysis/inspection/src/utils/io.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp b/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp index 346b6b5..387d2ab 100644 --- a/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp +++ b/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp b/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp index 706df57..609ab95 100644 --- a/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp +++ b/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/main.cpp b/sast-fuzz/static_analysis/inspection/tests/main.cpp index 5459643..730b547 100644 --- a/sast-fuzz/static_analysis/inspection/tests/main.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/main.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp b/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp index 1e76f9c..f4a2360 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp b/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp index 872de01..3fb6be1 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_io.cpp b/sast-fuzz/static_analysis/inspection/tests/test_io.cpp index a62d2a7..743fb35 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_io.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_io.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp b/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp index bf9689a..65fcdb0 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023 XXX XXX * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/config.yml b/sast-fuzz/static_analysis/sast/config.yml index e191b13..3f000ac 100644 --- a/sast-fuzz/static_analysis/sast/config.yml +++ b/sast-fuzz/static_analysis/sast/config.yml @@ -171,7 +171,7 @@ tools: - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/ReturnCstrOfLocalStdString.ql' - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/ReturnStackAllocatedMemory.ql' - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/StackAddressEscapes.ql' - - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/StrncpyFlippedArgs.ql' + - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/StrncpyFXXXedArgs.ql' - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/SuspiciousCallToMemset.ql' - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/SuspiciousCallToStrncat.ql' - '%LIBRARY_PATH%/cpp/ql/src/Likely\ Bugs/Memory\ Management/SuspiciousSizeof.ql' diff --git a/sast-fuzz/static_analysis/sast/pyproject.toml b/sast-fuzz/static_analysis/sast/pyproject.toml index d301922..faefef8 100644 --- a/sast-fuzz/static_analysis/sast/pyproject.toml +++ b/sast-fuzz/static_analysis/sast/pyproject.toml @@ -2,7 +2,7 @@ name = "sast-fuzz analyzer" version = "0.1.0" description = "Static analyzer for SASTFuzz" -authors = ["Stephan Lipp "] +authors = ["XXX XXX "] # readme = "README.md" packages = [{include = "sfa", from = "src"}] diff --git a/sast-fuzz/static_analysis/sast/src/sfa/__init__.py b/sast-fuzz/static_analysis/sast/src/sfa/__init__.py index fae18cc..4d8fd9a 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/__init__.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py index 9786d23..d262833 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py index f41e36c..3a8fe40 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py index cb0bfc1..be8d012 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py index 8276479..9ab64df 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py index bd0d471..299d7d4 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/main.py b/sast-fuzz/static_analysis/sast/src/sfa/main.py index b725c38..137534f 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/main.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/main.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py b/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py index a69c9d1..063efc5 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py b/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py index 9d2d0ad..73139f3 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py b/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py index 29c4346..cd60051 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/__init__.py b/sast-fuzz/static_analysis/sast/tests/__init__.py index 709acb3..e82e8b9 100644 --- a/sast-fuzz/static_analysis/sast/tests/__init__.py +++ b/sast-fuzz/static_analysis/sast/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_filter.py b/sast-fuzz/static_analysis/sast/tests/test_filter.py index 1674d97..d2cb452 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_filter.py +++ b/sast-fuzz/static_analysis/sast/tests/test_filter.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_flags.py b/sast-fuzz/static_analysis/sast/tests/test_flags.py index 6eff857..47b4d20 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_flags.py +++ b/sast-fuzz/static_analysis/sast/tests/test_flags.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_fs.py b/sast-fuzz/static_analysis/sast/tests/test_fs.py index 285479d..667a60d 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_fs.py +++ b/sast-fuzz/static_analysis/sast/tests/test_fs.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_grouping.py b/sast-fuzz/static_analysis/sast/tests/test_grouping.py index 4ae9342..9d366de 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_grouping.py +++ b/sast-fuzz/static_analysis/sast/tests/test_grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_proc.py b/sast-fuzz/static_analysis/sast/tests/test_proc.py index 2cecb44..c5c0ec7 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_proc.py +++ b/sast-fuzz/static_analysis/sast/tests/test_proc.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py b/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py index 0dc9b84..06a368c 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py +++ b/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/pyproject.toml b/scripts/crash-dedup/pyproject.toml index c942b1e..b0ca9a0 100644 --- a/scripts/crash-dedup/pyproject.toml +++ b/scripts/crash-dedup/pyproject.toml @@ -2,7 +2,7 @@ name = "crash-dedup" version = "0.1.0" description = "Deduplication of program crashes enforced by sanitizes" -authors = ["Stephan Lipp "] +authors = ["XXX XXX "] # readme = "README.md" packages = [{include = "cdd", from = "src"}] diff --git a/scripts/crash-dedup/src/cdd/__init__.py b/scripts/crash-dedup/src/cdd/__init__.py index 9035879..e421a9e 100644 --- a/scripts/crash-dedup/src/cdd/__init__.py +++ b/scripts/crash-dedup/src/cdd/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/container/__init__.py b/scripts/crash-dedup/src/cdd/container/__init__.py index a69c9d1..063efc5 100644 --- a/scripts/crash-dedup/src/cdd/container/__init__.py +++ b/scripts/crash-dedup/src/cdd/container/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/container/san.py b/scripts/crash-dedup/src/cdd/container/san.py index 33fd3ac..2f704ac 100644 --- a/scripts/crash-dedup/src/cdd/container/san.py +++ b/scripts/crash-dedup/src/cdd/container/san.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/container/summary.py b/scripts/crash-dedup/src/cdd/container/summary.py index 2731206..648dcef 100644 --- a/scripts/crash-dedup/src/cdd/container/summary.py +++ b/scripts/crash-dedup/src/cdd/container/summary.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/grouping.py b/scripts/crash-dedup/src/cdd/grouping.py index 0308c70..10fb0a6 100644 --- a/scripts/crash-dedup/src/cdd/grouping.py +++ b/scripts/crash-dedup/src/cdd/grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/main.py b/scripts/crash-dedup/src/cdd/main.py index 39b3ba4..abca55e 100644 --- a/scripts/crash-dedup/src/cdd/main.py +++ b/scripts/crash-dedup/src/cdd/main.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/utils/__init__.py b/scripts/crash-dedup/src/cdd/utils/__init__.py index a69c9d1..063efc5 100644 --- a/scripts/crash-dedup/src/cdd/utils/__init__.py +++ b/scripts/crash-dedup/src/cdd/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/utils/fs.py b/scripts/crash-dedup/src/cdd/utils/fs.py index b25e2fa..948d557 100644 --- a/scripts/crash-dedup/src/cdd/utils/fs.py +++ b/scripts/crash-dedup/src/cdd/utils/fs.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/utils/proc.py b/scripts/crash-dedup/src/cdd/utils/proc.py index 946eaa8..e3354c2 100644 --- a/scripts/crash-dedup/src/cdd/utils/proc.py +++ b/scripts/crash-dedup/src/cdd/utils/proc.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/tests/__init__.py b/scripts/crash-dedup/tests/__init__.py index 709acb3..e82e8b9 100644 --- a/scripts/crash-dedup/tests/__init__.py +++ b/scripts/crash-dedup/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/tests/test_grouping.py b/scripts/crash-dedup/tests/test_grouping.py index e7744f2..4061958 100644 --- a/scripts/crash-dedup/tests/test_grouping.py +++ b/scripts/crash-dedup/tests/test_grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/tests/test_san.py b/scripts/crash-dedup/tests/test_san.py index ad76b62..79a7fcb 100644 --- a/scripts/crash-dedup/tests/test_san.py +++ b/scripts/crash-dedup/tests/test_san.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023 XXX XXX # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.