项目作者: JonZeolla
项目描述 :
An introductory lab to automotive security.
高级语言: Shell
项目地址: git://github.com/JonZeolla/lab-AutomotiveSecurity.git
Automotive Security Lab
How to clone this branch
git clone https://github.com/JonZeolla/lab-AutomotiveSecurity --recursive
- Clone the latest revision of the lab-AutomotiveSecurity repo.
git clone -b 2016-05-12_SCIS_AutomotiveSecurity https://github.com/JonZeolla/lab-AutomotiveSecurity --recursive
- Clone the revision of the lab-AutomotiveSecurity repo used during the 2016-05-12 Steel City InfoSec lab. Cloning any of the pointers (tags) will put you in a detached HEAD state, which is expected.
Contributing
- Fork the repository
- Create a feature branch via
git checkout -b feature/description
- Make your changes
- Commit your changes via
git commit -am 'Summarize the changes here'
- Create a new pull request (how-to)
Event Details
Event Posting
How to use this repo
setup
- Here are some scripts to setup the requirements to do the lab tutorials. There is a VM which was distributed the first time I did this lab, but the scripts in here allow the lab to be setup on additional machines.
- If you plan to use the VM, the username is
carhax
and the password is P@ssword
.
tutorials
- All of the materials exist here, categorized into skill level (beginner, intermediate, etc.), and then type of lab (read vs write).
external
- All external projects used by this lab exist here as submodules.
store
- This is where large(ish) files go for storage, especially if they’re referenced in multiple labs.
Updating the lab
If you’d like to update this branch, open a terminal and cd
into the repo (if you are following the lab, this is ${HOME}/Desktop/lab-AutomotiveSecurity/
) and then run:
git pull
setup/configure.sh
- It is possible that you will need to first run
git reset --mixed
, depending on if the git merge
can be successful without manual intervention. Note that running this command will reset your index, but not the working tree. If you don’t know what that means, and would like to, read this.
Some other good materials
Migration
On 2016-12-27, this repo was migrated from the AutomotiveSecurity branch of https://github.com/JonZeolla/Lab to its own standalone repository. This was in order to make contributions and third party use easier, as I received feedback that the branching strategy used before was confusing to some.