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.
A hassle free JSON based C build system.
Only tested with gcc
I have only minimally used it myself. It most likely still does not support some critical features for serious C development
I like programming in C, but I hate Makefiles and CMake. It takes an effort to learn and they do not have an intuitive syntax so I keep having to look up how to use them. In addition to this, they are quite time consuming to setup. I do admit, they are extremely configurable and portable. However, rarely do I need anything complicated. So I created Ceasium, which is very simple C build system.
It works by creating compiler commands and running them in console.
pip install ceasium
brew install pkg-config
).Ceasium provides these commands:
ceasium init // Creates an empty c project
ceasium install // installs libraries defined in build.json
ceasium build // Builds .exe (default), .a or .dll based on configuration
ceasium clean // Removes entire build directory
init
--path=<value>
defaults to current pathinstall
--path=<value>
defaults to current pathbuild
--path=<value>
defaults to current pathclean
--path=<value>
defaults to current pathExample config:
{
"name": "myapp",
"type": "exe",
"compiler": "gcc",
"libraries": ["glew", "SDL2"],
"flags": {
"compiler": ["-g"],
"linker": ["-lopengl"]
},
"packages": {
"pacman": [
"pacman -S --needed --noconfirm mingw-w64-ucrt-x86_64-glew",
"pacman -S --needed --noconfirm mingw-w64-ucrt-x86_64-SDL2"
],
"apt": [
"sudo apt-get install -y libglew-dev",
"sudo apt-get install -y libglfw3"
]
}
}
name
: Name of the exe or library that will be built.type
: ["so", "dll", "exe"] what will be built.compiler
: ["gcc", "clang" ...other].libraries
: A list of library names as they would be in pkg-config.flags:compiler
: extra flags to be added right after compiler command.flags:linker
: extra flags to be added at the end of compiler command.package-manager
: package manager commands to use for ceasium install
. The section of this name should be defined under packages.packages
: list of commands for package installation based of different package managers.FAQs
A hassle free C (gcc) JSON build system.
We found that ceasium 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.
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.