Swiss Knife on your Kali Linux to help you move fast.
OSCP Swiss is a collection of functions, aliases, and variables designed to boost productivity on Kali Linux. It helps you automate repetitive tasks, manage your workspace, and provide the necessary tools to perform penetration testing.
For example, the command ship
is a one-liner command to drop a file from your Kali to the target machine. For example:
ship ./linpeas.sh
# The command will automatically host the file and copy the command to fetch it to your click board automatically.
# All you need is to paste it on the target machine :)
Here is a quick demo for shipping multiple files at a time:
command-ship.mov
![tips] It is powerful when you have a set of frequently used tools. For example:
# under /script/extension.sh # I have a set of utilities that I often use for enumerate on Windows windows_family=( $windows_mimikatz_x64 $windows_winpeas_x64 $windows_powerview $windows_powerup ... ) # I can easily get all of them on the target VM by: ship -t windows $windows_family
There are other commands to help you with the enumeration, exploitation, and post-exploitation. See 3. Usage. You can also customize the settings and add your own scripts and utilities to the Swiss Knife. See 4. Development & Customization.
Note
Tested on Kali 6.8.11-1kali2 (2024-05-30)
, virtualizing using UTM 4.4.5
on MacBook Pro (M2, Sonoma 14.5)
Caution
The script is designed to work on Kali Linux. It may not work on other Linux distributions. the scripts are developed and tested under Zsh (v5.9). There might be some issues if you are using Bash. PRs and Issues are welcome!
You will need to install the following packages. Additionally, you may need to check the script before the run if you are not using Kail (version β₯ 6.8.11).
Caution
Some of the commands may need additional libraries or packages. You will see a warning message if you need to install additional packages:
jq # (required) parsing configuration
xclip # (required) click board
docker # (optional) used in the command `svc docker`
docker-compose # (optional) used in the command `svc bloodhound`
pygmentize # (optional) replace `cat` command with syntax highlighting
rlwrap # (optional) used in the command `listen` for supporting arrow keys
# Download and put it in the home directory
cd $HOME && git clone https://github.com/dextermallo/oscp-swiss.git
# copy the example settings to the settings.json
# you can customize the settings.json
cd $HOME/oscp-swiss && cp example.settings.json settings.json
# Add the following line to your .zshrc or .bashrc
echo "\nsource ~/oscp-swiss/script/oscp-swiss.sh" >> ~/.zshrc
# All done! Restart your terminal or run the following command
source ~/.zshrc
# (Optional) If you already have any customized scripts, utilities, or wordlists, you can put them in the following directories:
mv ~/my-script.sh ~/oscp-swiss/private/
# you can see all the supported modules by:
swiss -h
# you can also find your customized scripts by running the command:
swiss private
# pull the latest changes
cd ~/oscp-swiss & git pull
# noted that you may need to update your settings.json if there are any changes
# and restart your terminal
source ~/.zshrc
![TIP] To keep the README concise, the following sections only provide a short description and examples. You can find more detailed information by running the command
<command> -h
or read it under the/script
directory.
Functions are broken down into modules and main functions. For more information, see 4. Development & Customization.
Tip
You can find configurations for functions under /settings.json
. For example:
{
"global_settings": { ... },
"functions": {
"wpscan": {
"token": "your_token_here"
}
}
}
Customized cd
with cd -
(to move to the previous directory) and cd $file
(by default, cd to a file will fail. The customized cd
will move to the directory of the file.)
command-svc.mov
command-ship.mov
command-listen.mov
Here are the key structures for swiss:
.
βββ data # (Private) common data/material for testing
β βββ ...
β βββ test.jpg
βββ doc
β βββ cheatsheet # (Public) quick cheatsheet for copy-paste, review, etc. See command `cheatsheet`.
β βββ utils-note.md # (Public) notes for utilities. See command `memory`.
βββ private # (Private) you can put your customized script, .ovpn file, etc.
β βββ myscript.sh
β βββ lab.ovpn
βββ script # (Public) main script for swiss
β βββ module # (Public) function module
β βββ target # (Public) scripts for the target side
β βββ alias.sh # (Public) alias for native resources (i.e., binaries, executables) on Kali
β βββ extension.sh # (Public) alias for external resources
β βββ installation.sh # (Public) (WIP) installation for creating wordlist, downloading binaries, etc.
β βββ oscp-swiss.sh # (Public) main script
β βββ utils.sh
βββ utils # (Private) put your binaries, compiled files, utilities (e.g., pspy)
β βββ ...
βββ wordlist # (Private) custom wordlist
βββ settings.json
This project is licensed under the MIT License - see the LICENSE.md file for details