Overview
| Room Name | |
|---|---|
| tmux | ![]() |
| Dev | @anir0y |
[Task 1] Screens wishes it was cool
tmux, the terminal multiplexer, is easily one of the most used tools by the Linux community (and not just pentesters!). While not a malicious tool, tmux makes running simultaneous tasks throughout a pentest incredibly easy. In this primer room, we’ll walk through the process of installing and using some of the most common key combinations used in tmux. (Note, the installation process in this is geared towards Kali/Ubuntu.)

Once tmux is installed, let’s launch a new session. What command do we use to launch a new session without a custom name?
tmuxAll tmux commands start with a keyboard button combination. What is the first key in this combination?
ControlHow about the second key? Note, these keys must be pressed at the same time and released before pressing the next target key in the combination.
BLets go ahead and detach from our newly created tmux session. What key do we need to add to the combo in order to detach?
DWell shoot, we’ve detached from our session. How do we list all of our sessions?
tmux lsWhat did our session name default to when we created one without a set name?
0Now that we’ve found the name of our session, how do we attach to it?
tmux a -t 0Let’s go ahead and make a new window in this session. What key do we add to the combo in order to do this?
cWhew! Plenty of output to work with now! If you work with a relatively small terminal like me, this output might not all fit on screen at once. To fix that, let’s enter ‘copy mode’. What key do we add to the combo to enter copy mode?
[Copy mode is very similar to ’less’ and allows up to scroll up and down using the arrow keys. What if we want to go up to the very top?
gHow about the bottom?
GWhat key do we press to exit ‘copy mode’?
qThis window we’re working in is nice and all but I think we need an upgrade. What key do we add to the combo to split the window vertically?
%How about horizontally?
"Say one of these newly minted panes becomes unresponsive or we’re just done working in it, what key do we add to the combo to ‘kill’ the pane?
xNow that’s we’ve finished out work, what can we type to close the session?
exitLast but now least, how do we spawn a named tmux session named ’neat’?
tmux new -s neat

