Posting Notifications
If you are developing your own malware; you may be happy to hear that Lambda allows developers to leverage our API, so you can handle recovered data through our user interface.
Sending a request to the below URL acts as a webhook, after reloading the notifications/logs page, you will see your custom message.
Post a notification to a Lambda user.
GET /users/notifications/send?uid={lambda_uid}
Request Body
Name
Type
Description
message*
String
Notification Message
rank*
String
The context of the notification:
System, Urgent, or Payload
link
String
Link shown in the "Follow Link" text.
{
"success": true,
"userFacingMessage": string
}{
"success": false,
"userFacingMessage": "Invalid notification data."
}{
"success": false,
"userFacingMessage": "The UID passed does not belong to any account."
}Last updated