
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
IT systems are growing in complexity and the threat from cyberattacks is increasing. Threat modeling is a process that can be used to analyze potential attacks to IT systems in order to facilitate secure design. Meta Attack Language (MAL) is a threat modeling language framework for the creation of domain specific languages (DSL). MAL is developed at KTH Royal Institute of Technology.
MAL grammar for tree-sitter.
References
Install tree sitter CLI to be able to use this grammar. Then, run tree-sitter generate
to generate the parser from the grammar and tree-sitter test
to test the parser, as well as the syntax highlighting and code navigation queries.
To see the parse tree the parser generates, use the command tree-sitter parse
.
To use the highlight through the command line, make sure you have a config file initialized. Then, you can use your own highlighting colors or copy the ones in the repository, specialized for MAL. Lastly, use tree-sitter highlight
to generate an output, see the docs for more information.
For more commands see tree sitter CLI docs.
[!NOTE] Tested for NeoVim v0.11.1.
nvim-treesitter
init.lua
or respective package config)
local parser_config = require "nvim-treesitter.parsers".get_parser_configs()
parser_config.mal = {
install_info = {
url = "https://github.com/Tobiky/tree-sitter-mal", -- local path or git repo
files = {"src/parser.c"},
branch = "main",
generate_requires_npm = false,
requires_generate_from_grammar = false,
},
filetype = "mal",
}
vim.filetype.add({
extension = {
mal = "mal",
},
})
:h rtp
). You can find various locations by using e.g. find ~ -type d -and -iname "queries"
(NOTE: This example only looks at files installed in your home directory). An example of the path can be $HOME/.local/share/nvim/lazy/nvim-treesitter/
if you are using the Lazy PM. Install the files from queries
into a directory named after the language (cp -r queries $NVIM_TREESITTER_QUERIES/mal/
).:checkhealth nvim-treesitter
, the table will list if the grammar and highlighting has been found.vim.api.nvim_create_autocmd( 'FileType', { pattern = 'mal',
callback = function(args)
vim.treesitter.start(args.buf, 'mal')
end
})
FAQs
IT systems are growing in complexity and the threat from cyberattacks is increasing. Threat modeling is a process that can be used to analyze potential attacks to IT systems in order to facilitate secure design. Meta Attack Language (MAL) is a threat modeling language framework for the creation of domain specific languages (DSL). MAL is developed at KTH Royal Institute of Technology.
We found that tree-sitter-mal demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.