├── .gitignore ├── LICENSE ├── README.md ├── attribute ├── __init__.py ├── __init__.pyc ├── generate_attribute.py ├── html.py └── svg.py ├── config.py ├── css ├── __init__.py ├── declaration.py ├── rule.py ├── selector.py └── var.py ├── db.py ├── docs ├── __init__.py ├── __init__.pyc ├── css.py ├── css.pyc ├── generate_hierarchy.py ├── hierarchy.py ├── hierarchy.pyc ├── html.py ├── html.pyc ├── svg.py └── svg.pyc ├── document ├── __init__.py ├── context.py ├── css.py └── dom_tree.py ├── fuzzer.py ├── js ├── __init__.py ├── arg │ ├── __init__.py │ ├── html.py │ └── svg.py ├── function │ ├── __init__.py │ ├── html.py │ └── svg.py ├── misc.py ├── property │ ├── __init__.py │ ├── html.py │ └── svg.py └── ret │ ├── __init__.py │ ├── generate.py │ ├── html.py │ └── svg.py ├── main.py ├── object ├── __init__.py ├── factory.py ├── function.py ├── html.py └── svg.py ├── utils ├── __init__.py ├── dom_value.py ├── helper.py └── random.py └── value ├── __init__.py ├── common.py ├── css.py ├── html.py └── svg.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/README.md -------------------------------------------------------------------------------- /attribute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/attribute/__init__.py -------------------------------------------------------------------------------- /attribute/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/attribute/__init__.pyc -------------------------------------------------------------------------------- /attribute/generate_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/attribute/generate_attribute.py -------------------------------------------------------------------------------- /attribute/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/attribute/html.py -------------------------------------------------------------------------------- /attribute/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/attribute/svg.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/config.py -------------------------------------------------------------------------------- /css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/css/__init__.py -------------------------------------------------------------------------------- /css/declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/css/declaration.py -------------------------------------------------------------------------------- /css/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/css/rule.py -------------------------------------------------------------------------------- /css/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/css/selector.py -------------------------------------------------------------------------------- /css/var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/css/var.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/db.py -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/__init__.py -------------------------------------------------------------------------------- /docs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/__init__.pyc -------------------------------------------------------------------------------- /docs/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/css.py -------------------------------------------------------------------------------- /docs/css.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/css.pyc -------------------------------------------------------------------------------- /docs/generate_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/generate_hierarchy.py -------------------------------------------------------------------------------- /docs/hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/hierarchy.py -------------------------------------------------------------------------------- /docs/hierarchy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/hierarchy.pyc -------------------------------------------------------------------------------- /docs/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/html.py -------------------------------------------------------------------------------- /docs/html.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/html.pyc -------------------------------------------------------------------------------- /docs/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/svg.py -------------------------------------------------------------------------------- /docs/svg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/docs/svg.pyc -------------------------------------------------------------------------------- /document/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/document/__init__.py -------------------------------------------------------------------------------- /document/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/document/context.py -------------------------------------------------------------------------------- /document/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/document/css.py -------------------------------------------------------------------------------- /document/dom_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/document/dom_tree.py -------------------------------------------------------------------------------- /fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/fuzzer.py -------------------------------------------------------------------------------- /js/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/__init__.py -------------------------------------------------------------------------------- /js/arg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/arg/__init__.py -------------------------------------------------------------------------------- /js/arg/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/arg/html.py -------------------------------------------------------------------------------- /js/arg/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/arg/svg.py -------------------------------------------------------------------------------- /js/function/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/function/__init__.py -------------------------------------------------------------------------------- /js/function/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/function/html.py -------------------------------------------------------------------------------- /js/function/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/function/svg.py -------------------------------------------------------------------------------- /js/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/misc.py -------------------------------------------------------------------------------- /js/property/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/property/__init__.py -------------------------------------------------------------------------------- /js/property/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/property/html.py -------------------------------------------------------------------------------- /js/property/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/property/svg.py -------------------------------------------------------------------------------- /js/ret/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/ret/__init__.py -------------------------------------------------------------------------------- /js/ret/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/ret/generate.py -------------------------------------------------------------------------------- /js/ret/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/ret/html.py -------------------------------------------------------------------------------- /js/ret/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/js/ret/svg.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/main.py -------------------------------------------------------------------------------- /object/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/object/__init__.py -------------------------------------------------------------------------------- /object/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/object/factory.py -------------------------------------------------------------------------------- /object/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/object/function.py -------------------------------------------------------------------------------- /object/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/object/html.py -------------------------------------------------------------------------------- /object/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/object/svg.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/dom_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/utils/dom_value.py -------------------------------------------------------------------------------- /utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/utils/helper.py -------------------------------------------------------------------------------- /utils/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/utils/random.py -------------------------------------------------------------------------------- /value/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/value/__init__.py -------------------------------------------------------------------------------- /value/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/value/common.py -------------------------------------------------------------------------------- /value/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/value/css.py -------------------------------------------------------------------------------- /value/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/value/html.py -------------------------------------------------------------------------------- /value/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/freedom/HEAD/value/svg.py --------------------------------------------------------------------------------