Giter Club home page Giter Club logo

kali-build's Introduction

kali-build

Eventually Kali becomes a bit bloated and needs to be reimaged to continue functioning properly. This repo helps document my setup steps and hosts some of my more commonly used scripts and files.

New Build - Intial Setup Steps

  1. Update/Upgrade:
sudo apt update && sudo apt upgrade
sudo apt dist-upgrade
  1. Enable RDP and SSH:
# RDP
sudo apt install -y xrdp
sudo systemctl enable xrdp
sudo systemctl start xrdp

# SSH
sudo systemctl enable ssh
sudo systemctl start ssh
  1. GitHub Setup:
# Clone this repo:
git clone https://github.com/Oofles/kali-build.git

# Optional: Authenticate to GitHub:
sudo apt install -y gh
gh auth login
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
  1. Install additional packages:
sudo apt install -y gobuster seclists
  1. Firefox extensions:

    a. HackTools: https://addons.mozilla.org/en-US/firefox/addon/hacktools/ b. FoxyProxy: https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/

  2. Configure FoxyProxy (Settings):

  • Title: Burp
  • Proxy Type: HTTP
  • Proxy IP: 127.0.0.1
  • Port: 8080

Troubleshooting

DNS not working

Barebones install - can ping out, but not resolve hostnames

  • If the NIC drivers aren't installed properly or there's an issue during build, the resolv.conf file may be misconfigured
sudo -i
rm -rf /etc/resolv.conf
echo "nameserver 8.8.8.8" > /etc/resolv.conf
exit

After reboot (or network service restart), DHCP may pick up and modify the resolv.conf to the desired DNS servers.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.