
Research
/Security News
5 Malicious Rust Crates Posed as Time Utilities to Exfiltrate .env Files
Published late February to early March 2026, these crates impersonate timeapi.io and POST .env secrets to a threat actor-controlled lookalike domain.
@wasmcloud/actor-http-server
Advanced tools
Interface to the httpserver contract for use by wasmCloud Actors
This module provides wasmCloud actors with an interface to the HTTP Server capability provider. Actors using this
interface must have the claim wasmcloud:httpserver in order to have permission to handle requests, and they
must have an active, configured binding to an HTTP Server capability provider.
The HTTP Server provider is one-way, and only delivers messages to actors. Actors cannot make host calls to this provider.
import { Request, Response, ResponseBuilder, Handlers as HTTPHandlers } from "@wasmcloud/actor-http-server";
import { HealthCheckResponse, HealthCheckRequest, Handlers as CoreHandlers, HealthCheckResponseBuilder } from "@wasmcloud/actor-core";
import { JSONEncoder } from "assemblyscript-json";
export function wapc_init(): void {
CoreHandlers.registerHealthRequest(HealthCheck);
HTTPHandlers.registerHandleRequest(HandleRequest);
}
function HealthCheck(request: HealthCheckRequest): HealthCheckResponse {
return new HealthCheckResponseBuilder().withHealthy(true).withMessage("AssemblyScript KVCounter Healthy").build();
}
function HandleRequest(request: Request): Response {
return new ResponseBuilder()
.withStatusCode(200)
.withStatus("OK")
.build(); //(TODO) Implement
}
// Boilerplate code for waPC. Do not remove.
import { handleCall, handleAbort } from "@wapc/as-guest";
export function __guest_call(operation_size: usize, payload_size: usize): bool {
return handleCall(operation_size, payload_size);
}
// Abort function
function abort(
message: string | null,
fileName: string | null,
lineNumber: u32,
columnNumber: u32
): void {
handleAbort(message, fileName, lineNumber, columnNumber);
}
FAQs
Interface to the httpserver contract for use by wasmCloud Actors
The npm package @wasmcloud/actor-http-server receives a total of 3 weekly downloads. As such, @wasmcloud/actor-http-server popularity was classified as not popular.
We found that @wasmcloud/actor-http-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Research
/Security News
Published late February to early March 2026, these crates impersonate timeapi.io and POST .env secrets to a threat actor-controlled lookalike domain.

Security News
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.