Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit ae30d7e

Browse files
authored
Merge pull request #53 from zzzFelix/feature/update-docs
Update README.md
2 parents 97ba984 + 85ad6d1 commit ae30d7e

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The purpose of _secureCodeBox_ **is not** to replace the penetration testers or
6363

6464
**Important note**: The _secureCodeBox_ is no simple one-button-click-solution! You must have a deep understanding of security and how to configure the scanners. Furthermore, an understanding of the scan results and how to interpret them is also necessary.
6565

66-
There is a german article about [Security DevOps – Angreifern (immer) einen Schritt voraus][secdevops-objspec] in the software engineering journal [OBJEKTSpektrum][objspec].
66+
There is a German article about [Security DevOps – Angreifern (immer) einen Schritt voraus][secdevops-objspec] in the software engineering journal [OBJEKTSpektrum][objspec].
6767

6868
## Quickstart
6969

@@ -144,16 +144,19 @@ kubectl apply -f scanners/nmap/examples/scan.nmap.org/scan.yaml
144144
kubectl get scans
145145
```
146146

147+
#### To delete a scan, use ```kubectl delete```, e.g. for localhost nmap scan:
148+
```
149+
kubectl delete -f scanners/nmap/examples/localhost/scan.yaml
150+
```
151+
147152
### Access Services
148153

149154
- Minio UI:
155+
- Port Forward Minio UI: `kubectl port-forward -n securecodebox-system service/securecodebox-operator-minio 9000:9000`
150156
- AccessKey: `kubectl get secret securecodebox-operator-minio -n securecodebox-system -o=jsonpath='{.data.accesskey}' | base64 --decode; echo`
151157
- SecretKey: `kubectl get secret securecodebox-operator-minio -n securecodebox-system -o=jsonpath='{.data.secretkey}' | base64 --decode; echo`
152-
- Port Forward Minio UI: `kubectl port-forward -n securecodebox-system service/securecodebox-operator-minio 9000:9000`
153158
- Elastic / Kibana UI:
154-
- User: `elastic`
155-
- Password: `kubectl get secret scb-elasticsearch-es-elastic-user -n scb-analytics -o=jsonpath='{.data.elastic}' | base64 --decode; echo`
156-
- Port Forward Kibana: `kubectl port-forward -n default service/persistence-elastic-kibana 5601:5601`
159+
- Port Forward Kibana: `kubectl port-forward -n default service/elkh-kibana 5601:5601`
157160
- Port Forward Elasticsearch: `kubectl port-forward -n default service/elasticsearch-master 9200:9200`
158161

159162
## How does it work?

0 commit comments

Comments
 (0)