forked from CaringCaribou/caringcaribou
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (54 loc) · 2.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
"""
Caring Caribou Next
===================
- This work was initiated as part of the research project HEAVENS (HEAling Vulnerabilities to ENhance Software Security and Safety), and was forked to act as a quick way to perform changes for personal use, and for people that are intrested on those changes.
- While caringcaribounext is not perfect, it can act as a quick evaluation utility, which can help with exploration of a target ECU over several target networks/interfaces. This project is not meant to be a complete one button solution, but a tool that can give researchers a quick and easy head start into the path of ECU exploration.
"""
from setuptools import find_packages, setup
version = "1.1"
dl_version = "master" if "dev" in version else "v{}".format(version)
print(r"""-----------------------------------
Installing Caring Caribou Next version {0}
-----------------------------------
""".format(version))
setup(
name="caringcaribounext",
version=version,
author="Thomas Sermpinis",
author_email="[email protected]",
description="A fork of a friendly automotive security exploration tool",
long_description=__doc__,
keywords=["automotive", "security", "CAN", "automotive protocols", "fuzzing"],
url="https://github.com/Cr0wTom/caringcaribounext",
download_url="https://github.com/Cr0wTom/caringcaribounext/releases",
license="GPLv3",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"python-can"
],
entry_points={
"console_scripts": [
"ccn.py=caringcaribounext.caringcaribounext:main",
"caringcaribounext=caringcaribounext.caringcaribounext:main",
],
"caringcaribounext.modules": [
"dcm = caringcaribounext.modules.dcm",
"doip = caringcaribounext.modules.doip",
"dump = caringcaribounext.modules.dump",
"fuzzer = caringcaribounext.modules.fuzzer",
"listener = caringcaribounext.modules.listener",
"send = caringcaribounext.modules.send",
"test = caringcaribounext.modules.test",
"uds_fuzz = caringcaribounext.modules.uds_fuzz",
"uds = caringcaribounext.modules.uds",
"xcp = caringcaribounext.modules.xcp",
]
}
)
print(r"""-----------------------------------------------------------
Installation completed, run `ccn.py --help` to get started
-----------------------------------------------------------
""")