FAILCAKEZ

Untitled

Nov 15th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1.  
  2. Required items:
  3. 14mm Ratchet
  4. JTAGulator
  5. Bus Pirate Cable
  6. OBD to DE-9 Cable
  7. Micro USB Connector
  8. Funcube Dongle USB
  9. Laptop
  10. knife
  11. Something to enter the car
  12.  
  13. - Get into a car.
  14. (smash window or open the door.)
  15.  
  16. - Take out your 14mm ratchet to remove the bolts on each side of the glovebox before removing it with your knife.
  17. (Be careful not to damage any wiring!)
  18.  
  19. - Grab your laptop, log in and take out all the technology mentioned above.
  20.  
  21. - Connect your USB connector to the laptop and the JTAGulator to link them.
  22. The JTAG should turn green.
  23.  
  24. - Connect the Bus Pirate Cable to the ECU, it's behind the empty slot in which the glovebox was located.
  25.  
  26. - Hook the OBD to DE-9 cable to the CAN BUS and the laptop.
  27. Your computer should now be connected to the ECU.
  28.  
  29. - Open your VM on your laptop and run Kali Linux.
  30.  
  31. - Type "# ip link set can0 type can bitrate 500000 listen-only on".
  32. The Bitrate should now be 500000.
  33.  
  34. - Type "# ip link set can0 up" to start the network.
  35.  
  36. - Type "# candump -cae can0,0:0,#FFFFFFFF" to start sniffing.
  37.  
  38. - Set up a .json file with WWW as root and 2515 as port.
  39.  
  40. - Type "{"DeviceType": "simulator", "DeviceFile": "simulator.json"}".
  41.  
  42. - Type "$ candump -1 can0,0:0,#FFFFFFFF." to start using a candump to save the packets.
  43.  
  44. - Edit the ECU response by changing the 7F (failure) to 67 (acceptance).
  45.  
  46. - Take the Funcube Dongle you took out earlier and plug it in the laptop before letting it detect wave signals by the immobilizer.
  47.  
  48. - Feed data in the immobilizer, jamming the keyfob signal to keep the RFID the same so the immobilizer remains opened.
  49.  
  50. - Type "# modprobe vcan" "# ip link add vcan0 type vcan" "# ip link set vcan0 up" to start the virtual device up.
  51. The car now thinks there is a key in it.
  52.  
  53. - Type "$ canplayer vcan0=can0 < candump-2015-29-9_190602.log" to play the virtual device.
  54. The laptop now send data to the CAN BUS, the vehicle should turn on.
Add Comment
Please, Sign In to add comment