Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k0retux/fuddly
Fuzzing and Data Manipulation Framework (for GNU/Linux)
https://github.com/k0retux/fuddly
data-manipulation framework fuzzing python security
Last synced: 2 months ago
JSON representation
Fuzzing and Data Manipulation Framework (for GNU/Linux)
- Host: GitHub
- URL: https://github.com/k0retux/fuddly
- Owner: k0retux
- License: gpl-3.0
- Created: 2015-03-22T17:55:36.000Z (almost 10 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-08T09:15:26.000Z (2 months ago)
- Last Synced: 2024-11-08T10:24:56.374Z (2 months ago)
- Topics: data-manipulation, framework, fuzzing, python, security
- Language: Python
- Homepage:
- Size: 7.46 MB
- Stars: 161
- Watchers: 18
- Forks: 44
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: COPYING
Awesome Lists containing this project
- awesome-rainmana - k0retux/fuddly - Fuzzing and Data Manipulation Framework (for GNU/Linux) (Python)
README
fuddly: a fuzzing and data manipulation framework
=================================================|docs|
.. |docs| image:: https://readthedocs.org/projects/fuddly/badge/?version=develop
:target: https://readthedocs.org/projects/fuddly/?badge=develop
:alt: DocumentationList of features
----------------
+ Graph-based data model that enables:- to represent complex data formats and also to mix them
- complex data manipulations
- to dissect/absorb existing data
- generation & mutation fuzzing strategy+ Fuzzing automation framework:
- target abstraction
- monitoring means based on independant probes
- replay & logging
- data manipulation based on disruptors (objects that implement
specific data transformation)
- scenario infrastructure (for modeling protocol logic)
- virtual operators+ and so on...
What's still missing
--------------------
+ Refer to TODO fileAbout documentation
-------------------
+ Documentation is available `here`_.
+ In order to generate the documentation from the source, follow these steps:#. go to the folder ``docs/``
#. execute ``make html`` to generate HTML documentation
#. execute ``make latexpdf`` to generate PDF documentation
#. generated documentation is located in ``docs/build/``.. _here: http://fuddly.readthedocs.io
Launch fuddly test cases
------------------------The package ``test`` include all unit & integration test cases
of ``fuddly`` itself. From the ``src/`` directory, usage is as follows:- To launch all the tests, issue the command::
>> python -m fuddly.test -a
- To launch all the tests but the longer ones, issue the command::
>> python -m fuddly.test
- To avoid data model specific test cases use the option ``--ignore-dm-specifics``
- To launch a specific test category issue the following command::
>> python -m fuddly.test fuddly.test....
Miscellaneous
-------------
+ Don't forget to populate ``/imported_data/`` with sample files for data
models that need it+ Note that when the fuddly shell is launched, the path of the fuddly data folder is displayed as
well as its configuration folderDependencies
------------
+ Compatible with Python3
+ Mandatory:- `sqlite3`_: SQLite3 data base
+ Optional:
- `xtermcolor`_: Terminal color support
- `graphviz`_: For graphic visualization (e.g., scenario display)
- `paramiko`_: Python implementation of the SSHv2 protocol
- `serial`_: For serial port access
- `cups`_: Python bindings for libcups
- `rpyc`_: Remote Python Call (RPyC), a transparent and symmetric RPC library
- `pyxdg`_: XDG Base Directory support+ For testing:
- `ddt`_: Used for data-driven tests
- `mock`_: Used for mocking+ For documentation generation:
- `sphinx`_: sphinx >= 1.3 (with builtin napoleon extension)
- `texlive`_ (optional): Needed to generate PDF documentation
- `readthedocs theme`_ (optional): Privileged html theme for sphinx.. _sqlite3: https://www.sqlite.org/
.. _xtermcolor: https://github.com/broadinstitute/xtermcolor
.. _graphviz: https://pypi.python.org/pypi/graphviz
.. _paramiko: http://www.paramiko.org/
.. _serial: https://github.com/pyserial/pyserial
.. _cups: https://pypi.python.org/pypi/pycups
.. _rpyc: https://pypi.python.org/pypi/rpyc
.. _ddt: https://github.com/txels/ddt
.. _mock: https://pypi.python.org/pypi/mock
.. _sphinx: http://sphinx-doc.org/
.. _texlive: https://www.tug.org/texlive/
.. _readthedocs theme: https://github.com/snide/sphinx_rtd_theme
.. _pyxdg: https://pypi.org/project/pyxdg/