
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
ci-cd-apier
Advanced tools
APIer is a library that allows you to launch its backend code with Flask-like syntax using GitLab CI/CD. All the requests and responses are processed with e2e encryption using age, so nobody has access to the data except the sender (web page) and the receiver (GitLab job in memory).
To see the full example, take a look at the example repository.
Whenever the client calls a backend via APIer script, e.g.:
const APIer = new APIer(
'$AGE_PUBLIC_KEY$',
'$GITLAB_PIPELINE_ENDPOINT$',
'$GITLAB_TOKEN$'
);
const totalSum = await APIer.sendRequest('sumNumbers', [1, 2, 3, 4, 5]);
A pipeline is triggered. Example code that handles the request in the pipeline may be:
app = APIER(environ["AGE_SECRET_KEY"])
@app.route("echo")
def endpoint_echo(data: any) -> str:
return f"You said: {data}. Enjoy :)"
@app.route("sumNumbers")
def endpoint_sum(data: list[int]) -> str:
return str(sum(data))
app.process_requests()
There also exists Python client for APIer in ci_cd_apier.client package.
FAQs
ci-cd-APIer -- Flask-like API framework for GitLab CI/CD pipelines
We found that ci-cd-apier 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.