
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.
freefiresuper
Advanced tools
Um módulo para node que pode interagir com a API do jogo Garena Free Fire!
Um módulo para Node.js, capaz de interagir com a API do jogo Garena Free Fire.
Instalando freefiresuper
com npm:
npm install freefiresuper
Instalando freefiresuper
com yarn:
yarn add freefiresuper
Pegando informações gerais sobre o jogo:
const freefire = require("freefiresuper");
freefire.version.overview().then((info)=>{
console.log("Versão do APK: "+info.version);
let serverStatus = info.isServerOpen ? "Sim" : "Não"
console.log("Servidor Aberto? "+serverStatus);
});
Pegando informações de um jogador pelo seu ID:
const freefire = require("freefiresuper");
freefire.player.searchPlayerById("123456789", "BR").then((player)=>{
console.log("Apelido: "+player.nickname);
console.log("Nível: "+player.level);
console.log("Likes: "+player.liked);
// Abrindo perfil do jogador e retornando todas as informações
player.profile().then((profile)=>{
console.log(profile);
});
// Checando se o jogador foi banido
player.checkBanned().then((isBanned)=>{
if(isBanned){
console.log("O jogador está banido.");
}else{
console.log("Esse jogador não está banido.");
}
});
// Pegando estatísticas do jogador
player.stats("BR_CAREER").then((stats)=>{
console.log(stats.soloStats)
});
});
Pegando uma lista de jogadores pelo apelido:
const freefire = require("freefiresuper");
freefire.player.searchPlayerByNickname("abcdefg", "BR").then((players)=>{
// Lista de jogadores com apelidos parecidos
console.log(players);
// Percorrendo a lista e pegando o apelido de cada um
for(player of players){
console.log("Apelido: "+player.nickname)
}
});
Pegando informações sobre uma guilda pelo ID:
const freefire = require("freefiresuper");
freefire.guild.searchGuildById("2012676417", "BR").then((guild)=>{
console.log("Nome da Guilda: "+guild.clanInfo.clanName);
console.log("ID do Líder: "+guild.clanInfo.captainId);
});
freefire.version.overview()
:freefire.player.searchPlayerById(playerId, region)
:Player
com informações sobre algum jogador.freefire.player.searchPlayerByNickname(nickname, region)
:freefire.guild.searchGuildById(guildId, region)
:Player
:Player.stats(match_mode)
:Player.profile()
:Player.checkBanned()
:Boolean
indicando se o jogador está banido ou nãoModos disponíveis para player.stats(match_mode)
:
FAQs
Um módulo para node que pode interagir com a API do jogo Garena Free Fire!
The npm package freefiresuper receives a total of 5 weekly downloads. As such, freefiresuper popularity was classified as not popular.
We found that freefiresuper 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
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.