Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
tinsoftproxy
Advanced tools
Nhằm hỗ trợ việc sử dụng proxy một cách nhanh chóng và đơn giản. Chỉ cần gọi 1 hàm duy nhất để có được proxy không phải thao tác request quá nhiều.
Via npm:
npm i -S tinsoftproxy
Update via npm:
npm update tinsoftproxy
const TinSoftProxy = require('tinsoftproxy');
(async () => {
try {
const proxyService = new TinSoftProxy({
user_api_key: 'TINSOFT_USER_API_KEY'
});
proxyService.Stream.on('log', data => console.log('##LOG:', data));
const rp = await proxyService.pickup({
api_key: process.env.TINSOFT_API_KEY || '',
location_id: 0
});
console.log('rp:', rp);
// {
// isChanged: false,
// message: 'Wait 119s',
// success: true,
// proxy: '116.107.60.32:54877',
// location: '15',
// next_change: 119,
// timeout: 1185,
// api_key: 'api_key dùng để get proxy'
// }
} catch (e) {
console.log(e);
}
})();
options
<Object>
api_key
<string> (option) Chỉ định api_key cần get proxy, hoặc để trống thì mạc định thư viện sẽ tự động chọn keylocation_id
<Number> Default: 0
ID Location. Danh sách tại đâyreturn <Object>
isChanged
<boolean> Proxy IP có sự thay đổi, true
là có sự thay đổiproxy
<string> Thông tin proxynext_change
<Number> Thời gian đợi cho đến lần thay IP tiếp theo (giây)timeout
<Number> Có thể xem như là tốc độ của proxy (càng thấp càng nhanh)location
<Number|string> ID địa chỉ địa lý của IP. Danh sách tại đây{
isChanged: false,
message: 'Wait 119s',
success: true,
proxy: '116.107.60.32:54877',
location: '15',
next_change: 119,
timeout: 1185,
api_key: 'api_key dùng để get proxy'
}
👤 Văn Tài
Made with ❤️ by Văn Tài
FAQs
tinsoftproxy
We found that tinsoftproxy demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.