kop is a cli tool that I personally use for daily CTF(Capture the flag). 


 Concept: Do not type same commands 


 If you are CTF player, you a

GitHub - 0xsuk/kop: Do not type same commands

submited by
Style Pass
2022-05-16 11:00:08

kop is a cli tool that I personally use for daily CTF(Capture the flag). Concept: Do not type same commands If you are CTF player, you are probably typing same shell commands everyday, like nmap <IP address>, or gobuster dir -u http://<IP address> -w directory-list-2.3-medium.txt... and so on. You don't want to type these long command for every machine with different IP addresses, right? The problem is that these commands slightly change every time because of the "variable" factors like IP address, so just a simple shell alias does not lessen your job.

The nmap command was copied to my clipboard, replacing IP variable with its value. You can paste the command, without typing loooong shell command again.

Leave a Comment