
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Very thin wrapper for the API provided by SteamRep.com.
npm install steamrep
var SteamRepAPI = require('steamrep');
// You can change the timeout value if you wish
SteamRepAPI.timeout = 5000;
// All methods are "static"
SteamRepAPI.isScammer("76561197960435530", function(error, result) {
if(error) {
console.log(error);
} else {
if(result) {
console.log("This user is tagged as 'SCAMMER' at SteamRep.");
} else {
console.log("This user is NOT tagged as 'SCAMMER' at SteamRep.");
}
}
});
SteamRepAPI.getProfile("76561197960435530", function(error, result) {
if(error === null) {
console.log(result);
}
});
Timeout value used for HTTP requests. Defaults to 10000ms (10 seconds).
steamID - user's SteamID64 as stringcallback - should be function(error, result)
error comes from the HTTP requestresult is either true or falseProvides simple yes/no answer about user's scammer status.
steamID - user's SteamID64 as stringcallback - should be function(error, result)
error comes from the HTTP requestresult is object returned by the APIProvides SteamRep information about given SteamID64, such as VAC status, reputation status, pending reports and more.
npm test
MIT. See LICENSE.
FAQs
SteamRep API Wrapper for node.js
The npm package steamrep receives a total of 11 weekly downloads. As such, steamrep popularity was classified as not popular.
We found that steamrep 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.