Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@cdktf/hcl2json
Advanced tools
This is a WebAssembly wrapper for https://github.com/tmccombs/hcl2json
yarn add @cdktf/hcl2json
import { parse } from '@cdktf/hcl2json'
const hcl = `
variable "name" {
description = "Name to be used on all the resources as identifier"
type = string
default = ""
}
`
(async () => {
// my-filename.tf isn't relevant for the functionality, just metadata
const json = await parse('my-filename.tf', hcl)
console.log(json)
})()
// =>
{
"variable": {
"name": [
{
"default": "",
"description": "Name to be used on all the resources as identifier",
"type": "${string}"
}
]
}
}
import { convertFiles } from "@cdktf/hcl2json";
(async () => {
const json = await convertFiles("/your/terraform/code");
console.log(json);
})();
// => Unified JSON representation of all *.tf and *.tf.json files in the given directory
import { getReferencesInExpression } from "@cdktf/hcl2json";
(async () => {
const variables = await getReferencesInExpression(
"main.tf",
"This is a ${var.input} embedded"
);
console.log(variables);
})();
// => [{ value: "var.input", startPosition: 12, endPosition: 23 }]
With yarn build
a Typescript compile is triggered and a Go build with a WASM target is performed.
FAQs
Transform HCL into JSON
The npm package @cdktf/hcl2json receives a total of 196,586 weekly downloads. As such, @cdktf/hcl2json popularity was classified as popular.
We found that @cdktf/hcl2json demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.