{"id":23050805,"url":"https://github.com/richardschwabe/kaliexpress","last_synced_at":"2025-04-03T03:43:11.072Z","repository":{"id":190796237,"uuid":"683258138","full_name":"richardschwabe/kaliexpress","owner":"richardschwabe","description":"Ansible Playbook to update Kali with various personalisations","archived":false,"fork":false,"pushed_at":"2023-12-18T12:06:06.000Z","size":35090,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T17:44:39.514Z","etag":null,"topics":["ansible-playbook","ctf","cybersecurity","cybersecurity-tools","kali-linux","penetration-testing","penetration-testing-tools"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/richardschwabe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-26T02:13:21.000Z","updated_at":"2023-08-28T11:57:28.000Z","dependencies_parsed_at":"2025-02-08T17:54:36.510Z","dependency_job_id":null,"html_url":"https://github.com/richardschwabe/kaliexpress","commit_stats":null,"previous_names":["richardschwabe/kaliexpress"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richardschwabe%2Fkaliexpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richardschwabe%2Fkaliexpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richardschwabe%2Fkaliexpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richardschwabe%2Fkaliexpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/richardschwabe","download_url":"https://codeload.github.com/richardschwabe/kaliexpress/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246933354,"owners_count":20857052,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible-playbook","ctf","cybersecurity","cybersecurity-tools","kali-linux","penetration-testing","penetration-testing-tools"],"created_at":"2024-12-15T23:37:59.352Z","updated_at":"2025-04-03T03:43:11.052Z","avatar_url":"https://github.com/richardschwabe.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eKaliExpress\u003c/h1\u003e\n\u003cp\u003eMy personalised Kali setup automated via ansible playbook \u0026 roles.\n\u003c/p\u003e\n\u003c/div\u003e\n\n# Table Of Contents\n- [Table Of Contents](#table-of-contents)\n- [Overview](#overview)\n- [How to use](#how-to-use)\n- [Details](#details)\n    - [base](#base)\n    - [docker](#docker)\n    - [tools](#tools)\n- [License](#license)\n\n\n# Overview\nAdjust Kali to my liking, incl:\n- Custom Oh My Zsh with Powerlevel10K\n- Pipx some applications\n- Wordlists\n- Exa and colorful outputs\n- Bookmarks\n- Preferred Apps\n\n\n# How to use\nMake sure you have ansible installed\n\n```\nsudo apt install ansible\n```\n\nSimply clone the repo and run make\n```\ngit clone https://github.com/richardschwabe/kaliexpress.git\n\ncd kaliexpress \u0026\u0026 make\n```\n\n\n# Details\nThe playbook consists of the following Roles\n\n### base\nThis role will add the following applications:\n\n- bat - a colorful cat alternative\n- exa - a colorful ls alternative\n- dbeaver - a great database management tool\n- vscode - my IDE of choice\n- chrome - my preferred browser\n- golang - GO programming language for [nuclei](github.com/projectdiscovery/nuclei)\n\nFor personalisation it will install my personal\n`.zshrc` with various settings, such as aliases for `ls` and `cat`.\nFurthermore with Oh-my-zsh it will also configure the Powerlevel10k theme, and its fonts.\n\nThere is also a collection of bookmarks that are copied into the home directory. At the moment they need to be imported manually into Chrome/Firefox.\n\nLastly, it also makes sure that `pipx` is installed and used to install some tools, such as `CrackMapExec`. The corresponding `~/.local/bin` folder is added to the $PATH enviornment.\n\nThis is the current list of pentest tools added via pipx:\n- CrackMapExec\n- pwncat-cs\n- wesng.git\n- impacket\n- bbot\n- enum4linux-ng\n- ssh-audit\n- mitm6\n\n### docker\n\nInstalls docker from the official docker debian repo and makes sure that the docker compose plugin is installed.\n\nThis means, that there is no `docker-compose` command, but instead the new `docker compose` syntax.\n\nFurthermore it installs `portainer-ce` locally.\n### tools\nFurther pentest tools are added in the tools section.\n\nThese include various installation mediums, such as apt, go installer or simple Github clones.\n\nIn the `files/share` folder we have common executables, scripts for Academy, CTF and learning environments (non of these are obfuscated). So only really used on environments with no AV running.\n\nOften used with\n```\nxfreerdp /v:10.10.10.10 /u:USER /p:PASS /drive:linux,~/pentest-tools +clipboard /dynamic-resolution\n```\n\nPentest tools installed include:\n- [seclists](https://github.com/danielmiessler/SecLists) - a great wordlist collection\n- [breach-parse](https://github.com/hmaverickadams/breach-parse) - for parsing breached passwords\n- [rassetfinder](https://github.com/richardschwabe/rassetfinder) - my updated Rust based version of AssetFinder\n- [dirsearch](https://github.com/maurosoria/dirsearch) - alternative for gobuster, dirbuster etc\n- [stegseek](https://github.com/RickdeJager/stegseek) - quick password bruteforce\n- [steghide](https://github.com/StefanoDeVuono/steghide) - find CTF data in pictures\n- [nishang](https://github.com/samratashok/nishang) - some older PS scripts\n# License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frichardschwabe%2Fkaliexpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frichardschwabe%2Fkaliexpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frichardschwabe%2Fkaliexpress/lists"}