
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
premiumize-me-api
Advanced tools
A simple JS-Wrapper for the official PremiumizeMe-API.
npm install premiumize-me-api
const PremiumizeMeAPI = require('premiumize-me-api')
let testAPI = new PremiumizeMeAPI("YOUR_API_KEY");
testAPI.getFolderList(folder_id).then(console.log);
The result for the getFolderList()
command looks like this:
{
"status": "string",
"content": [
{
"id": "string",
"name": "string",
"type": "file",
"size": 0,
"created_at": 0,
"link": "string",
"stream_link": "string",
"breadcrumbs": [
{
"id": "string",
"name": "string",
"parent_id": "string"
}
]
}
],
"name": "string",
"parent_id": "string"
}
testAPI.createFolder(folder_name, parent_id).then(console.log)
The result for the createFolder()
command looks like this:
{
"status": "success",
"id": "string"
}
testAPI.renameFolder(folder_id, folder_name).then(console.log)
The result for the renameFolder()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.pasteToFolder(folder_id, toPasteFolderIds, toPasteFileIds).then(console.log);
The result for the pasteToFolder()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.deleteFolder(folder_id).then(console.log);
The result for the deleteFolder()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.uploadToFolder(folder_id).then(console.log);
The result for the uploadToFolder()
command looks like this:
{
"status": "success",
"token": "string",
"url": "string"
}
testAPI.deleteFile(file_id).then(console.log);
The result for the deleteFile()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.renameFile(file_id, file_name).then(console.log);
The result for the renameFile()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.fetchFileDetails(file_id).then(console.log);
The result for the fetchFileDetails()
command looks like this:
{
"id": "string",
"name": "string",
"type": "file",
"size": 0,
"created_at": 0,
"folder_id": "string",
"link": "string",
"stream_link": "string"
}
testAPI.createTransfer(src_address_file, folder_id).then(console.log);
The result for the createTransfer()
command looks like this:
{
"status": "success",
"id": "string",
"name": "example.jpg"
}
testAPI.createDirectDownload(src_address).then(console.log);
The result for the createDirectDownload()
command looks like this:
{
"status": "success",
"location": "https://server.com/path/file.ext",
"filename": "file.ext",
"filesize": 123123123,
"content": [
{
"path": "folder/file1.jpg",
"size": 123123123,
"link": "https://server.com/path/file.ext",
"stream_link": "https://server.com/path/file.ext",
"transcode_status": "finished"
}
]
}
testAPI.getTransferList().then(console.log);
The result for the getTransferList()
command looks like this:
{
"status": "string",
"transfers": [
{
"id": "string",
"name": "string",
"message": "string",
"status": "waiting",
"progress": 0,
"target_folder_id": "string",
"folder_id": "string",
"file_id": "string"
}
]
}
testAPI.clearTransferList().then(console.log);
The result for the clearTransferList()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.deleteTransfer(transfer_id).then(console.log);
The result for the deleteTransfer()
command looks like this:
{
"status": "success",
"message": "string"
}
testAPI.getAccountInfo().then(console.log);
The result for the getAccountInfo()
command looks like this:
{
"status": "success",
"customer_id": 0,
"premium_until": 0,
"limit_used": 0,
"space_used": 0
}
testAPI.createZipDownload(file_id, folder_id).then(console.log);
The result for the createZipDownload()
command looks like this:
{
"status": "success",
"location": "string"
}
testAPI.checkHosterAvailability(src_address).then(console.log);
The result for the checkHosterAvailability()
command looks like this:
{
"status": "success",
"response": [
true
],
"transcoded": [
true
],
"filename": [
"string"
],
"filesize": [
"string"
]
}
testAPI.getServiceList().then(console.log);
The result for the getServiceList()
command looks like this:
{
"directdl": [
"string"
],
"cache": [
"string"
],
"fairusefactor": {
"service": 0
},
"aliases": {
"service": [
"string"
]
},
"regexpatterns": {
"service": [
"string"
]
}
}
FAQs
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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.