Skip to content

Commit 190b5d4

Browse files
committed
release 0.7.0 [WIP]
1 parent db2fe4f commit 190b5d4

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

docs/_docs/emulation_system.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -57,20 +57,20 @@ in Fig. 6 and whose configuration is listed in Table 4.
5757

5858
| *Emulation configuration* | *Description* |
5959
|---------------------------|---------------------------------------------------------------------------------|
60-
| `csle-level1-060` | Emulation with 7 components, 3 flags, password vulnerabilities, no IDS. |
61-
| `csle-level2-060` | Emulation with 13 components, 6 flags, password vulnerabilities, no IDS. |
62-
| `csle-level3-060` | Emulation with 34 components, 6 flags, password vulnerabilities, no IDS. |
63-
| `csle-level4-060` | Emulation with 7 components, 3 flags, password vulnerabilities, IDS. |
64-
| `csle-level5-060` | Emulation with 13 components, 6 flags, password vulnerabilities, IDS. |
65-
| `csle-level6-060` | Emulation with 34 components, 6 flags, password vulnerabilities, IDS. |
66-
| `csle-level7-060` | Emulation with 7 components, 3 flags, password & RCE vulnerabilities, IDS. |
67-
| `csle-level8-060` | Emulation with 13 components, 6 flags, password & RCE vulnerabilities, IDS. |
68-
| `csle-level9-060` | Emulation with 34 components, 6 flags, password & RCE vulnerabilities, IDS. |
69-
| `csle-level10-060` | Emulation with 16 components, 12 flags, password & RCE vulnerabilities, IDS. |
70-
| `csle-level11-060` | Emulation with 36 components, 6 flags, password & RCE vulnerabilities, IDS. |
71-
| `csle-level12-060` | Emulation with 7 components, 3 flags, password RCE vulnerabilities, IDS, SDN. |
72-
| `csle-level13-060` | Emulation with 64 components, 6 flags, password RCE vulnerabilities, IDS, SDN. |
73-
| `csle-level14-060` | Emulation with 17 components, 12 flags, password RCE vulnerabilities, IDS, SDN. |
60+
| `csle-level1-070` | Emulation with 7 components, 3 flags, password vulnerabilities, no IDS. |
61+
| `csle-level2-070` | Emulation with 13 components, 6 flags, password vulnerabilities, no IDS. |
62+
| `csle-level3-070` | Emulation with 34 components, 6 flags, password vulnerabilities, no IDS. |
63+
| `csle-level4-070` | Emulation with 7 components, 3 flags, password vulnerabilities, IDS. |
64+
| `csle-level5-070` | Emulation with 13 components, 6 flags, password vulnerabilities, IDS. |
65+
| `csle-level6-070` | Emulation with 34 components, 6 flags, password vulnerabilities, IDS. |
66+
| `csle-level7-070` | Emulation with 7 components, 3 flags, password & RCE vulnerabilities, IDS. |
67+
| `csle-level8-070` | Emulation with 13 components, 6 flags, password & RCE vulnerabilities, IDS. |
68+
| `csle-level9-070` | Emulation with 34 components, 6 flags, password & RCE vulnerabilities, IDS. |
69+
| `csle-level10-070` | Emulation with 16 components, 12 flags, password & RCE vulnerabilities, IDS. |
70+
| `csle-level11-070` | Emulation with 36 components, 6 flags, password & RCE vulnerabilities, IDS. |
71+
| `csle-level12-070` | Emulation with 7 components, 3 flags, password RCE vulnerabilities, IDS, SDN. |
72+
| `csle-level13-070` | Emulation with 64 components, 6 flags, password RCE vulnerabilities, IDS, SDN. |
73+
| `csle-level14-070` | Emulation with 17 components, 12 flags, password RCE vulnerabilities, IDS, SDN. |
7474

7575

7676
<p class="captionFig">
@@ -103,7 +103,7 @@ Figure 6: Topology of the emulation configuration `csle-level9-020`
103103

104104
<p class="captionFig">
105105
Table 4: Configuration of the emulation configuration
106-
`csle-level9-060`, whose topology is shown in Fig. 6.
106+
`csle-level9-070`, whose topology is shown in Fig. 6.
107107
</p>
108108

109109
An *emulation execution* consists of a set of running containers and virtual networks,

simulation-system/libs/csle-cli/src/csle_cli/cli.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ def stop_shell_complete(ctx, param, incomplete) -> List[str]:
765765
"- \033[95mpacketbeat\033[0m: stops packetbeat for a container with the IP address "
766766
"--container_ip, node specified by --ip, and emulation identified by --name and --id.\n\n"
767767
"\b\n"
768-
"* \033[93mExample: csle stop filebeat csle-level4-060 15 --ip X.X.X.X "
768+
"* \033[93mExample: csle stop filebeat csle-level4-070 15 --ip X.X.X.X "
769769
"--container_ip Y.Y.Y.Y \033[0m")
770770
def stop(entity: str, name: str, id: int = -1, ip: str = "", container_ip: str = "") -> None:
771771
"""
@@ -2033,7 +2033,7 @@ def start_shell_complete(ctx, param, incomplete) -> List[str]:
20332033
"node with --ip, and emulation with --name and --id. Use --initial_start for the"
20342034
" initial start.\n\n"
20352035
"\b\n"
2036-
"* \033[93mExample: csle start filebeat csle-level4-060 --id 15 --ip X.X.X.X "
2036+
"* \033[93mExample: csle start filebeat csle-level4-070 --id 15 --ip X.X.X.X "
20372037
"--container_ip Y.Y.Y.Y \033[0m")
20382038
def start(entity: str, no_traffic: bool, name: str, id: int, no_clients: bool, no_network: bool, ip: str,
20392039
container_ip: str, no_beats: bool, initial_start: bool) -> None:
@@ -3429,7 +3429,7 @@ def ls_shell_complete(ctx, param, incomplete) -> List[str]:
34293429
"- \033[95memulation_description\033[0m: show detailed information about the containers"
34303430
" running in the emaultion with the given name and id.\n\n"
34313431
"\b\n"
3432-
"* \033[93mExample: csle ls filebeats --name csle-level4-060 --id 15 --ip X.X.X.X \033[0m")
3432+
"* \033[93mExample: csle ls filebeats --name csle-level4-070 --id 15 --ip X.X.X.X \033[0m")
34333433
@click.argument('entity', default='all', type=str, shell_complete=ls_shell_complete)
34343434
@click.option('--all', is_flag=True, help='list all')
34353435
@click.option('--running', is_flag=True, help='list running only (default)')

0 commit comments

Comments
 (0)