-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc8367f
commit 8da9681
Showing
4 changed files
with
196 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/python3 | ||
# Copyright 2022 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 os | ||
import sys | ||
|
||
with atheris.instrument_imports(): | ||
import numpy as np | ||
|
||
def TestOneInput(input_bytes): | ||
fdp = atheris.FuzzedDataProvider(input_bytes) | ||
input_str = fdp.ConsumeString(sys.maxsize) | ||
try: | ||
np.datetime64(input_str) | ||
except ValueError: | ||
return | ||
except SyntaxError: | ||
return | ||
|
||
def main(): | ||
atheris.instrument_all() | ||
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True) | ||
atheris.Fuzz() | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/python3 | ||
# Copyright 2022 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 os | ||
import sys | ||
|
||
with atheris.instrument_imports(): | ||
import numpy as np | ||
|
||
def TestOneInput(input_bytes): | ||
fdp = atheris.FuzzedDataProvider(input_bytes) | ||
input_str = fdp.ConsumeString(sys.maxsize) | ||
try: | ||
np.dtype(input_str) | ||
except ValueError: | ||
return | ||
except TypeError: | ||
return | ||
except SyntaxError: | ||
return | ||
|
||
def main(): | ||
atheris.instrument_all() | ||
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True) | ||
atheris.Fuzz() | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/usr/bin/python3 | ||
# Copyright 2022 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 os | ||
import sys | ||
import tempfile | ||
from tokenize import TokenError | ||
from zipfile import BadZipFile | ||
|
||
with atheris.instrument_imports(): | ||
import numpy as np | ||
|
||
def TestOneInput(input_bytes): | ||
with tempfile.NamedTemporaryFile(suffix=".dat", delete=False) as fd: | ||
fdp = atheris.FuzzedDataProvider(input_bytes) | ||
fd.write(fdp.ConsumeBytes(sys.maxsize)) | ||
tmpname = fd.name | ||
|
||
try: | ||
np.fromfile(tmpname) | ||
# Catch all of the exceptions that are documented in help(np.load) | ||
except OSError: | ||
return | ||
except ValueError: | ||
return | ||
except EOFError: | ||
return | ||
finally: | ||
os.remove(tmpname) | ||
|
||
def main(): | ||
atheris.instrument_all() | ||
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True) | ||
atheris.Fuzz() | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#!/usr/bin/python3 | ||
# Copyright 2022 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 os | ||
import re | ||
import sys | ||
import tempfile | ||
from tokenize import TokenError | ||
from zipfile import BadZipFile | ||
|
||
with atheris.instrument_imports(): | ||
import numpy as np | ||
|
||
def TestOneInput(input_bytes): | ||
fdp = atheris.FuzzedDataProvider(input_bytes) | ||
input_str = fdp.ConsumeString(20) | ||
try: | ||
dtype = np.dtype(input_str) | ||
except (ValueError, TypeError, SyntaxError): | ||
return | ||
|
||
input_str = fdp.ConsumeString(20) | ||
try: | ||
reg = re.compile(input_str) | ||
except (ValueError, TypeError, re.error,OverflowError): | ||
return | ||
|
||
with tempfile.NamedTemporaryFile(suffix=".txt", delete=False) as fd: | ||
fd.write(fdp.ConsumeBytes(5000)) | ||
tmpname = fd.name | ||
|
||
try: | ||
a = np.fromregex(tmpname, reg, dtype) | ||
if a.shape != (0,): | ||
print(a.shape) | ||
except OSError: | ||
return | ||
except TypeError: | ||
return | ||
except ValueError: | ||
return | ||
except EOFError: | ||
return | ||
finally: | ||
os.remove(tmpname) | ||
|
||
def main(): | ||
atheris.instrument_all() | ||
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True) | ||
atheris.Fuzz() | ||
|
||
if __name__ == "__main__": | ||
main() |