├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Ashish D'Souza 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Raspberry Pi 3 Model B+ Kali Linux Installation 2 | *October 3rd, 2018* 3 | 4 | ## Dependencies 5 | * Linux operating system, preferrably existing Kali Linux OS 6 | * sha256sum 7 | * xzcat 8 | * dd 9 | 10 | ## Installation 11 | 1. **Download the image.** Visit the [Kali Linux ARM Images](https://www.offensive-security.com/kali-linux-arm-images/#1493408272250-e17e9049-9ce8) website and download the correct image. For the Raspberry Pi 3 Model B+, the correct image is labeled [**Kali Linux RaspberryPi 2 and 3**](https://images.offensive-security.com/arm-images/kali-linux-2018.3-rpi3-nexmon.img.xz) (This link is valid for version **2018.3**). 12 | 1. **Verify the installation.** Obtain the SHA256 checksum of the file that you downloaded with the `sha256sum` tool. Open Bash and run this command (replace the filename with the correct filename): `sha256sum kali-linux-2018.3-rpi3-nexmon.img.xz` If the computed checksum matches that provided on the [website](https://www.offensive-security.com/kali-linux-arm-images/#1493408272250-e17e9049-9ce8), then you can proceed with installing Kali Linux. The SHA256 checksum for version 2018.3 is **a90717c67cd914e01a2f885a308b06f70cf9276c8760f1fa71a0ae372e341673**. 13 | 1. **Determine the correct drive.** Use the *fdisk* utility to find the correct drive for your micro SD card. Run `fdisk -l` to view all drives, and determine the correct one. It should appear as something similar to */dev/sdb*. 14 | 1. **Flash the image.** Run the following command on the verified download file (replace the filename with the correct filename and the drive with the correct drive): `xzcat kali-linux-2018.3-rpi3-nexmon.img.xz | dd of=/dev/sdb bs=512k` 15 | 1. **Run Kali Linux.** Unmount, eject, and insert the SD card into your Raspberry Pi 3 Model B+. Connect the Raspberry Pi to a 5V DC 1.5A micro USB power supply, and log in with the username *root* and the password *toor*. 16 | 1. **Update the Raspberry Pi.** Run the following commands to obtain the latest software and packages after configuring the network connection: 17 | ```bash 18 | apt-get update 19 | apt-get dist-upgrade 20 | apt-get autoremove 21 | apt-get autoclean 22 | ``` 23 | 24 | ## Authors 25 | * **Ashish D'Souza** - *Sole developer* - [computer-geek64](https://github.com/computer-geek64) 26 | 27 | ## APA Reference and Citation 28 | * D'Souza, A. (2018, September 19). Raspberry Pi 3 Model B+ Kali Linux Installation. Retrieved from https://github.com/computer-geek64/rpi3-b-plus-kali-linux/blob/master/README.md 29 | * (D'Souza, 2018) 30 | 31 | ## License 32 | This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. 33 | --------------------------------------------------------------------------------