-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproblem.md
55 lines (38 loc) · 859 Bytes
/
problem.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# General SSH
- Namespace: picoctf/examples
- ID: general-ssh
- Type: custom
- Category: General Skills
- Points: 1
- Templatable: yes
- MaxUsers: 1
## Description
Do you know how to move between directories and read files in the shell?
## Details
`ssh -p {{port("ssh")}} ctf-player@{{server("ssh")}}` using password
`{{lookup("password")}}`
## Hints
- Finding a cheatsheet for bash would be really helpful!
## Solution Overview
Login to the remote machine and use `ls` to find pieces of the flag and hints
to the next one.
## Challenge Options
```yaml
cpus: 0.5
memory: 128m
pidslimit: 20
ulimits:
- nofile=128:128
diskquota: 64m
init: true
```
## Learning Objective
Usage of ssh and bash commands
## Tags
- ssh
- bash
- example
## Attributes
- author: LT 'syreal' Jones
- organization: picoCTF
- event: picoCTF Problem Developer Training