create-oss-store 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +9 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-oss-store",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "type": "module",
5
5
  "description": "Create a new OSS – OopsSec Store instance for web security CTF training",
6
6
  "author": "kOaDT",
package/src/index.js CHANGED
@@ -7,10 +7,17 @@ import degit from "degit";
7
7
 
8
8
  const REPO = "kOaDT/oss-oopssec-store";
9
9
 
10
+ const ASCII_ART = [
11
+ String.raw` ____ ____ ____ ____ ____ ____ _ `,
12
+ String.raw` / __ \/ __// __/ / __ \ ___ ___ ___ / __/ ___ ____ / __/ / /_ ___ ____ ___ `,
13
+ String.raw` / /_/ /\ \ _\ \ / /_/ // _ \ / _ \(_-<_\ \ / -_)/ __/_\ \ / __// _ \ / __// -_)`,
14
+ String.raw` \____/___//___/ \____/ \___// .__/___/___/ \__/ \__//___/ \__/ \___//_/ \__/ `,
15
+ String.raw` /_/ `,
16
+ ];
17
+
10
18
  export async function createOssStore(projectName) {
11
19
  console.log();
12
- console.log(chalk.bold("OSS – OopsSec Store"));
13
- console.log(chalk.dim("Vulnerable Web Application for Security Training"));
20
+ ASCII_ART.forEach((line) => console.log(chalk.cyan(line)));
14
21
  console.log();
15
22
 
16
23
  if (!projectName) {