Adding V2G Injector to PWN some V2G chargers and cars

This commit is contained in:
FlUxIuS 2024-06-28 10:54:11 +02:00
parent 04421b8836
commit 3db9588141
No known key found for this signature in database
GPG Key ID: E8B96449EE4FA72F
2 changed files with 11 additions and 0 deletions

View File

@ -26,6 +26,7 @@ RUN ./entrypoint.sh caringcaribou_soft_install
RUN ./entrypoint.sh savvycan_soft_install
#RUN ./entrypoint.sh internalphz_carzombie
RUN ./entrypoint.sh gallia_soft_install
RUN ./entrypoint.sh v2ginjector_soft_install
# Cleaning and quitting
WORKDIR /root/

View File

@ -36,4 +36,14 @@ function gallia_soft_install() {
installfromnet "pip3 install gallia"
}
function v2ginjector_soft_install() {
goodecho "[+] Installing V2G Injector"
[ -d /automotive ] || mkdir /automotive
cd /automotive
installfromnet "git clone https://github.com/FlUxIuS/V2GInjector.git"
cd V2GInjector
chmod +x install.sh
./install.sh
}
### TODO: more More!