@appthreat/atom 2.0.6 → 2.0.8

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 (31) hide show
  1. package/README.md +4 -2
  2. package/package.json +2 -2
  3. package/plugins/bin/atom +1 -1
  4. package/plugins/bin/atom.bat +1 -1
  5. package/plugins/composer/installed.php +6 -6
  6. package/plugins/lib/{com.lihaoyi.ujson_3-3.1.3.jar → com.lihaoyi.ujson_3-3.1.4.jar} +0 -0
  7. package/plugins/lib/{com.lihaoyi.upack_3-3.1.3.jar → com.lihaoyi.upack_3-3.1.4.jar} +0 -0
  8. package/plugins/lib/{com.lihaoyi.upickle-core_3-3.1.3.jar → com.lihaoyi.upickle-core_3-3.1.4.jar} +0 -0
  9. package/plugins/lib/{com.lihaoyi.upickle-implicits_3-3.1.3.jar → com.lihaoyi.upickle-implicits_3-3.1.4.jar} +0 -0
  10. package/plugins/lib/com.lihaoyi.upickle_3-3.1.4.jar +0 -0
  11. package/plugins/lib/io.appthreat.atom-2.0.8-classpath.jar +0 -0
  12. package/plugins/lib/io.appthreat.atom-2.0.8.jar +0 -0
  13. package/plugins/lib/{io.appthreat.c2cpg_3-2.0.5.jar → io.appthreat.c2cpg_3-2.0.8.jar} +0 -0
  14. package/plugins/lib/{io.appthreat.dataflowengineoss_3-2.0.5.jar → io.appthreat.dataflowengineoss_3-2.0.8.jar} +0 -0
  15. package/plugins/lib/{io.appthreat.javasrc2cpg_3-2.0.5.jar → io.appthreat.javasrc2cpg_3-2.0.8.jar} +0 -0
  16. package/plugins/lib/{io.appthreat.jimple2cpg_3-2.0.5.jar → io.appthreat.jimple2cpg_3-2.0.8.jar} +0 -0
  17. package/plugins/lib/{io.appthreat.jssrc2cpg_3-2.0.5.jar → io.appthreat.jssrc2cpg_3-2.0.8.jar} +0 -0
  18. package/plugins/lib/{io.appthreat.php2atom_3-2.0.5.jar → io.appthreat.php2atom_3-2.0.8.jar} +0 -0
  19. package/plugins/lib/{io.appthreat.pysrc2cpg_3-2.0.5.jar → io.appthreat.pysrc2cpg_3-2.0.8.jar} +0 -0
  20. package/plugins/lib/{io.appthreat.semanticcpg_3-2.0.5.jar → io.appthreat.semanticcpg_3-2.0.8.jar} +0 -0
  21. package/plugins/lib/{io.appthreat.x2cpg_3-2.0.5.jar → io.appthreat.x2cpg_3-2.0.8.jar} +0 -0
  22. package/plugins/lib/org.antlr.antlr4-runtime-4.13.1.jar +0 -0
  23. package/plugins/lib/{org.eclipse.cdt.core_8.3.1.202309150117.jar → org.eclipse.cdt.core_8.3.100.202309251502.jar} +0 -0
  24. package/plugins/lib/{org.gradle.gradle-tooling-api-8.5.jar → org.gradle.gradle-tooling-api-8.6.jar} +0 -0
  25. package/plugins/lib/{org.slf4j.slf4j-api-2.0.11.jar → org.slf4j.slf4j-api-2.0.12.jar} +0 -0
  26. package/plugins/lib/org.slf4j.slf4j-nop-2.0.12.jar +0 -0
  27. package/plugins/lib/com.lihaoyi.upickle_3-3.1.3.jar +0 -0
  28. package/plugins/lib/io.appthreat.atom-2.0.6-classpath.jar +0 -0
  29. package/plugins/lib/io.appthreat.atom-2.0.6.jar +0 -0
  30. package/plugins/lib/org.antlr.antlr4-runtime-4.7.jar +0 -0
  31. package/plugins/lib/org.slf4j.slf4j-nop-2.0.11.jar +0 -0
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Atom npm wrapper
2
2
 
3
- This package wraps the atom distributable and makes it available via the npm package registry. Atom is an upcoming intermediate representation for application and packages that is optimized for threat analysis and supply-chain security use cases.
3
+ Atom is a novel intermediate representation for applications and a standalone tool powered by the [chen](https://github.com/AppThreat/chen) library. The intermediate representation (a network with nodes and links) is optimized for operations typically used for application analytics and machine learning, including [slicing](./specification/docs/slices.md) and [vectoring](./specification/docs/vectors.md).
4
+
5
+ This package wraps the atom distributable and makes it available via the npm package registry.
4
6
 
5
7
  ## Usage
6
8
 
@@ -8,4 +10,4 @@ This package wraps the atom distributable and makes it available via the npm pac
8
10
  npm install @appthreat/atom
9
11
  ```
10
12
 
11
- Ensure Java 17/19 is available in the PATH.
13
+ Ensure Java 21 is available in the PATH.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appthreat/atom",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "Create atom (⚛) representation for your application, packages and libraries",
5
5
  "exports": "./index.js",
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  "lint": "eslint *.mjs *.js"
10
10
  },
11
11
  "dependencies": {
12
- "@babel/parser": "^7.23.6",
12
+ "@babel/parser": "^7.23.9",
13
13
  "typescript": "^5.3.3",
14
14
  "yargs": "^17.7.2"
15
15
  },
package/plugins/bin/atom CHANGED
@@ -360,7 +360,7 @@ declare -r lib_dir="$(realpath "${app_home}/../lib")"
360
360
  declare -a app_mainclass=(io.appthreat.atom.Atom)
361
361
 
362
362
  declare -r script_conf_file="${app_home}/../conf/application.ini"
363
- declare -r app_classpath="$lib_dir/io.appthreat.atom-2.0.6-classpath.jar"
363
+ declare -r app_classpath="$lib_dir/io.appthreat.atom-2.0.8-classpath.jar"
364
364
 
365
365
  # java_cmd is overrode in process_args when -java-home is used
366
366
  declare java_cmd=$(get_java_cmd)
@@ -40,7 +40,7 @@ rem "-J" is stripped, "-D" is left as is, and everything is appended to JAVA_OPT
40
40
  set _JAVA_PARAMS=
41
41
  set _APP_ARGS=
42
42
 
43
- set "APP_CLASSPATH=%APP_LIB_DIR%\io.appthreat.atom-2.0.6-classpath.jar"
43
+ set "APP_CLASSPATH=%APP_LIB_DIR%\io.appthreat.atom-2.0.8-classpath.jar"
44
44
  set "APP_MAIN_CLASS=io.appthreat.atom.Atom"
45
45
  set "SCRIPT_CONF_FILE=%APP_HOME%\conf\application.ini"
46
46
 
@@ -1,9 +1,9 @@
1
1
  <?php return array(
2
2
  'root' => array(
3
3
  'name' => '__root__',
4
- 'pretty_version' => 'v2.0.6',
5
- 'version' => '2.0.6.0',
6
- 'reference' => 'f5a3bf62ab1205a0012260fb9bb86c103b6acee3',
4
+ 'pretty_version' => 'v2.0.8',
5
+ 'version' => '2.0.8.0',
6
+ 'reference' => '1bd634b348c0a6825c53ebaad7b60fcfeb927202',
7
7
  'type' => 'library',
8
8
  'install_path' => __DIR__ . '/../../',
9
9
  'aliases' => array(),
@@ -11,9 +11,9 @@
11
11
  ),
12
12
  'versions' => array(
13
13
  '__root__' => array(
14
- 'pretty_version' => 'v2.0.6',
15
- 'version' => '2.0.6.0',
16
- 'reference' => 'f5a3bf62ab1205a0012260fb9bb86c103b6acee3',
14
+ 'pretty_version' => 'v2.0.8',
15
+ 'version' => '2.0.8.0',
16
+ 'reference' => '1bd634b348c0a6825c53ebaad7b60fcfeb927202',
17
17
  'type' => 'library',
18
18
  'install_path' => __DIR__ . '/../../',
19
19
  'aliases' => array(),
index 4f7d631..c94a920 100644
Binary file
index c4a1925..5d92488 100644
Binary file
index 1fe0fc0..1220a1c 100644
Binary file
index 4bfd7c5..d375317 100644
Binary file
index 652cb9e..bfa1de3 100644
Binary file