
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@appolo/http
Advanced tools
Http Service module for appolo
build with axios
npm i @appolo/http
in config/modules/all.ts
key | Description | Type | Default |
---|---|---|---|
id | httpService injection id | string | httpService |
any option from Request Config
can be added and will be added to all request.
import {HttpModule} from '@appolo/http';
export = async function (app: App) {
await app.module(new HttpModule({baseURL:"https://some-domain.com/api/",retry:2}));
}
import {define, singleton,inject} from 'appolo'
import {publisher} from "@appolo/http";
@define()
@singleton()
export class SomeManager {
@inject httpService:HttpService
async getUserId(): Promise<string> {
let result = await this.httpService.request<{userId:string}>({
url:"http://someurl"
method:"post"
timeout:1000
retry:3
})
return result.data.userId
}
}
key | Description | Type | Default |
---|---|---|---|
url | `request url | string | `` |
method | is the request method to be used when making the request | string | get |
baseURL | baseURL will be prepended to url unless url is absolute | string | `` |
headers | custom headers | object | {} |
params | are the URL parameters to be sent with the request | object | {} |
data | the data to be sent as the request body | object | {} |
timeout | specifies the number of milliseconds before the request times out | number | 0 |
withCredentials | indicates whether or not cross-site Access-Control requests | boolean | false |
auth | indicates that HTTP Basic auth should be used, and supplies credentials | object | {} |
authDigest | indicates that HTTP Digest Auth should be used, and supplies credentials | object | {} |
responseType | indicates the type of data that the server will respond with | string | json |
responseEncoding | indicates encoding to use for decoding responses | string | utf8 |
maxRedirects | defines the maximum number of redirects to follow in node.js | number | 5 |
retry | retry times on requests that return a response (500, etc) before giving up | number | 0 |
noResponseRetries | etry times on errors that don't return a response (ENOTFOUND, ETIMEDOUT, etc) | number | 0 |
retryDelay | Milliseconds to delay at first | number | 100 |
FAQs
appolo http module
We found that @appolo/http 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.