scart


Namescart JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/kfirgirstein/scart
SummarySCART: Simulation of Cyber Attacks for Real-Time systems
upload_time2023-04-10 14:16:11
maintainer
docs_urlNone
authorKfir Girstein
requires_python
licenseApache License 2.0
keywords simulation real-time cybersecurity mitm network attacks
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SCART

[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Contributing](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](CONTRIBUTING.md)
[![PyPI version](https://img.shields.io/pypi/v/scart.svg)](https://pypi.org/project/scart/)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/kfirgirstein/SCART)](https://github.com/kfirgirstein/SCART/releases)
[![GitHub issues](https://img.shields.io/github/issues/kfirgirstein/SCART.svg)](https://github.com/kfirgirstein/SCART/issues)
[![GitHub forks](https://img.shields.io/github/forks/kfirgirstein/SCART.svg)](https://github.com/kfirgirstein/SCART/network/members)

## Introduction
This repository contains code for the SCART framework, an innovative solution for simulating cyber threats in real-time systems. The SCART framework adds a layer to existing simulators of real-time systems, allowing for the simulation of faults and vulnerabilities. The goal of this framework is to increase the reliability of real-time systems by simulating and testing for possible sensor failures and cyber security attacks. The SCART framework is designed to be modular and extensible, allowing for the addition of new types of faults and vulnerabilities.

Here you can find the PoC for MiTM threats.
```
├── AnomalyObjects
│   ├── AbstractAnomalyObjectFile.py
│   ├── Action
│   ├── Condition
│   ├── Listener
├── Scenario
│   ├── BaseScenario.py
│   ├── OneSensorScenario.py
│── history.py
├── __init__.py
```

## Installation

Instructions for installing the SCART package and its dependencies can be found in the [scart](scart/README.md) folder.

```
# from the base folder (SCART) run:
> python setup.py sdist bdist_wheel
> pip install . #install from current dir
```

## Usage

Instructions for using the SCART package and its various features can be found in the [scart](scart/README.md) folder.

```
>>> import scart
>>> from scart import *
>>> dir(scart)
['AnomalyObjects', 'Scenario', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', 'history']
>>> 
```
## Contributing

If you wish to contribute to this project, please follow the guidelines outlined in the [CONTRIBUTING.md](CONTRIBUTING.md) file.


## License

This project is licensed under the [LICENSE](LICENSE) license. A copy of the license can be found in the `LICENSE` file.

## Citation
If you use the SCART framework in your research or project, please cite our paper:

```
@article{girstein2023scart,
      title={SCART: Simulation of Cyber Attacks for Real-Time Digital Twins}, 
      author={Kfir Girstein and Eliron Rahimi and Prof. Avi Mendelson},
      year={2023},
      eprint={2304.03657},
      archivePrefix={arXiv},
      primaryClass={cs.CR}
}

```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kfirgirstein/scart",
    "name": "scart",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "simulation,real-time,cybersecurity,MITM,network,attacks",
    "author": "Kfir Girstein",
    "author_email": "kfirgirstein@campues.technion.ac.il",
    "download_url": "https://files.pythonhosted.org/packages/16/a2/426e096a878aaf7a3f40d6bc888a71aa390809db25883da7409b79ed8c2e/scart-1.0.0.tar.gz",
    "platform": null,
    "description": "# SCART\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Contributing](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](CONTRIBUTING.md)\n[![PyPI version](https://img.shields.io/pypi/v/scart.svg)](https://pypi.org/project/scart/)\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/kfirgirstein/SCART)](https://github.com/kfirgirstein/SCART/releases)\n[![GitHub issues](https://img.shields.io/github/issues/kfirgirstein/SCART.svg)](https://github.com/kfirgirstein/SCART/issues)\n[![GitHub forks](https://img.shields.io/github/forks/kfirgirstein/SCART.svg)](https://github.com/kfirgirstein/SCART/network/members)\n\n## Introduction\nThis repository contains code for the SCART framework, an innovative solution for simulating cyber threats in real-time systems. The SCART framework adds a layer to existing simulators of real-time systems, allowing for the simulation of faults and vulnerabilities. The goal of this framework is to increase the reliability of real-time systems by simulating and testing for possible sensor failures and cyber security attacks. The SCART framework is designed to be modular and extensible, allowing for the addition of new types of faults and vulnerabilities.\n\nHere you can find the PoC for MiTM threats.\n```\n\u251c\u2500\u2500 AnomalyObjects\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 AbstractAnomalyObjectFile.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 Action\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 Condition\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 Listener\n\u251c\u2500\u2500 Scenario\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 BaseScenario.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 OneSensorScenario.py\n\u2502\u2500\u2500 history.py\n\u251c\u2500\u2500 __init__.py\n```\n\n## Installation\n\nInstructions for installing the SCART package and its dependencies can be found in the [scart](scart/README.md) folder.\n\n```\n# from the base folder (SCART) run:\n> python setup.py sdist bdist_wheel\n> pip install . #install from current dir\n```\n\n## Usage\n\nInstructions for using the SCART package and its various features can be found in the [scart](scart/README.md) folder.\n\n```\n>>> import scart\n>>> from scart import *\n>>> dir(scart)\n['AnomalyObjects', 'Scenario', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', 'history']\n>>> \n```\n## Contributing\n\nIf you wish to contribute to this project, please follow the guidelines outlined in the [CONTRIBUTING.md](CONTRIBUTING.md) file.\n\n\n## License\n\nThis project is licensed under the [LICENSE](LICENSE) license. A copy of the license can be found in the `LICENSE` file.\n\n## Citation\nIf you use the SCART framework in your research or project, please cite our paper:\n\n```\n@article{girstein2023scart,\n      title={SCART: Simulation of Cyber Attacks for Real-Time Digital Twins}, \n      author={Kfir Girstein and Eliron Rahimi and Prof. Avi Mendelson},\n      year={2023},\n      eprint={2304.03657},\n      archivePrefix={arXiv},\n      primaryClass={cs.CR}\n}\n\n```\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "SCART: Simulation of Cyber Attacks for Real-Time systems",
    "version": "1.0.0",
    "split_keywords": [
        "simulation",
        "real-time",
        "cybersecurity",
        "mitm",
        "network",
        "attacks"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c58ea0d659b9c08448cacb7e721eec4512e3c2fe977832eba7197bf858fe7a34",
                "md5": "9a5a70dcb8e8ef6a7221e8e87b5c20ef",
                "sha256": "fe7e2ab6ccade65543f1222404914159a06d2ed6e3d9393514e9d5bc3cb60bb6"
            },
            "downloads": -1,
            "filename": "scart-1.0.0-py2.7.egg",
            "has_sig": false,
            "md5_digest": "9a5a70dcb8e8ef6a7221e8e87b5c20ef",
            "packagetype": "bdist_egg",
            "python_version": "1.0.0",
            "requires_python": null,
            "size": 84329,
            "upload_time": "2023-04-10T14:16:07",
            "upload_time_iso_8601": "2023-04-10T14:16:07.175461Z",
            "url": "https://files.pythonhosted.org/packages/c5/8e/a0d659b9c08448cacb7e721eec4512e3c2fe977832eba7197bf858fe7a34/scart-1.0.0-py2.7.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "143a679ab4a2aa66178afcb9ad7d2b1d0f8ee429338473a638523144ff1eec4d",
                "md5": "db2393e226f9fe3b0b93ec9efd6088e3",
                "sha256": "eafc97cff66528aa4a31f1350266493d09e3250b0118773d7654890d57599c6c"
            },
            "downloads": -1,
            "filename": "scart-1.0.0-py3.8.egg",
            "has_sig": false,
            "md5_digest": "db2393e226f9fe3b0b93ec9efd6088e3",
            "packagetype": "bdist_egg",
            "python_version": "1.0.0",
            "requires_python": null,
            "size": 88782,
            "upload_time": "2023-04-10T14:16:09",
            "upload_time_iso_8601": "2023-04-10T14:16:09.605742Z",
            "url": "https://files.pythonhosted.org/packages/14/3a/679ab4a2aa66178afcb9ad7d2b1d0f8ee429338473a638523144ff1eec4d/scart-1.0.0-py3.8.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48d9546d0212eaf2c696f73aaf38157713d8771fb564186acc90e96fc6745c3d",
                "md5": "d9b4f1da47429f32f2936a3304f667d7",
                "sha256": "5c54168c696ce80b1fff828e8ac8512ca580aa8a5166e592f4e8a80790cfb28d"
            },
            "downloads": -1,
            "filename": "scart-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d9b4f1da47429f32f2936a3304f667d7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 44592,
            "upload_time": "2023-04-10T14:16:04",
            "upload_time_iso_8601": "2023-04-10T14:16:04.530186Z",
            "url": "https://files.pythonhosted.org/packages/48/d9/546d0212eaf2c696f73aaf38157713d8771fb564186acc90e96fc6745c3d/scart-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16a2426e096a878aaf7a3f40d6bc888a71aa390809db25883da7409b79ed8c2e",
                "md5": "d677e6ce90eb09dd036b117ac08d7c49",
                "sha256": "5e0996b27fab1f8f42039a4ac4ef8f1ca9c75185ee1c660982afa87a36eb4e83"
            },
            "downloads": -1,
            "filename": "scart-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d677e6ce90eb09dd036b117ac08d7c49",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 16145,
            "upload_time": "2023-04-10T14:16:11",
            "upload_time_iso_8601": "2023-04-10T14:16:11.325390Z",
            "url": "https://files.pythonhosted.org/packages/16/a2/426e096a878aaf7a3f40d6bc888a71aa390809db25883da7409b79ed8c2e/scart-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-10 14:16:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "kfirgirstein",
    "github_project": "scart",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "scart"
}
        
Elapsed time: 0.05363s