Add Structure and NC-Content
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
363c2df542
commit
103f51efdc
5
docs/cicd.md
Normal file
5
docs/cicd.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# CI / CD
|
||||||
|
|
||||||
|
## Continuous integration
|
||||||
|
|
||||||
|
## Continuous delivery
|
9
docs/docker.md
Normal file
9
docs/docker.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Docker
|
||||||
|
|
||||||
|
## Handling Builds
|
||||||
|
|
||||||
|
## Handling Images
|
||||||
|
|
||||||
|
## Handlicng Containers
|
||||||
|
|
||||||
|
## Handling private registry
|
25
docs/network.md
Normal file
25
docs/network.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Network
|
||||||
|
|
||||||
|
## Netcat
|
||||||
|
Manual `man nc`
|
||||||
|
|
||||||
|
### Port Scanning
|
||||||
|
scan a single port
|
||||||
|
```bash
|
||||||
|
nc -v -w 2 z 192.168.56.1 22
|
||||||
|
```
|
||||||
|
|
||||||
|
scan multiple ports
|
||||||
|
```bash
|
||||||
|
nc -v -w 2 z 192.168.56.1 22 80
|
||||||
|
```
|
||||||
|
|
||||||
|
scan range of ports
|
||||||
|
```bash
|
||||||
|
nc -v -w 2 z 192.168.56.1 20-25
|
||||||
|
```
|
||||||
|
|
||||||
|
### Find a Service Running on Port
|
||||||
|
```bash
|
||||||
|
nc -v -n 192.168.56.110 80
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user