LukasMarckmiller

Results 5 issues of LukasMarckmiller

This PR is related to #2052 and covers the **implicit intent** part but the part about broadcast receiver changes in Android Oreo, mentioned in the closed issue #941 is still...

Android
MASVS-PLATFORM
tests

Chapter **0x04h-Testing-Code-Quality, Testing for Injection Flaws (MSTG-PLATFORM-2)** could provide a better background to intent hijacking and spoofing (see e.g https://onlinelibrary.wiley.com/doi/abs/10.1002/spe.2643). What's missing in the MSTG is testing for a tech...

Android
MASVS-PLATFORM

According to the NIST Standard 1 needs to be subtracted/added before the division. ![Screenshot_2024-04-19_09-37-58](https://github.com/stevenang/randomness_testsuite/assets/18208274/d0fd8500-1821-4ca5-a5e2-1fa0351dc7a0) This is not the case for following lines: https://github.com/stevenang/randomness_testsuite/blob/7147879859d095a4cac63962efd7a19d4874a630/CumulativeSum.py#L54-L55 It should be: ```python start = int(floor(0.25...

It seems that from version scipy version [v1.12.0rc1](https://github.com/scipy/scipy/releases/tag/v1.12.0rc1) ``scipy.zeros` was finally removed. This leads to an import error in RunTest.py ![grafik](https://github.com/stevenang/randomness_testsuite/assets/18208274/ee155693-1053-4a73-bc12-d79172bbebc4) FIX: Use numpy.zeros instead.

Replaced by numpy.zeros as suggested by scipy. Fixed #21