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.
@dwifte/robloxjs
Advanced tools
Roblox API written as a nodejs module.
npm i https://github.com/DwifteJB/RobloxJS
const robloxjs = require("@dwifte/robloxjs")
<a href=https://github.com/S0ftwareUpd8/roblox-api#get-place-details>API Documentation
(async () => {
let Place = await new robloxjs.Place(2506738224) // Place ID
let placeDetails = await Place.getDetails()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://github.com/S0ftwareUpd8/roblox-api#get-place-settings>API Documentation
(async () => {
let Place = await new robloxjs.Place(2506738224) // Place ID
let PlaceSettings = await Place.getSettings()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://github.com/S0ftwareUpd8/roblox-api#get-universe-containing-place>API Documentation
(async () => {
let Place = await new robloxjs.Place(2506738224) // Place ID
let UniverseJSON = await Place.getUniverse()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://games.roblox.com/docs#!/GameInstances/get_v1_games_placeId_servers_serverType>API Documentation
(async () => {
let Place = await new robloxjs.Place(2506738224) // Place ID
let gameInstances = await Place.getGameInstances()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://thumbnails.roblox.com/docs#!/Avatar/get_v1_users_avatar_headshot>API DOCUMENTATION
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let onlineStatus = await Player.getAvatar()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let onlineStatus = await Player.getAvatarBust()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let onlineStatus = await Player.getAvatarHeadshot()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!
<a href=https://github.com/S0ftwareUpd8/roblox-api#get-online-status-of-an-user>API DOCUMENTATION
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let onlineStatus = await Player.getOnlineStatus()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://github.com/matthewdean/roblox-web-apis#get-a-users-profile-games>API DOCUMENTATION
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let createdGames = await Player.getCreatedGames()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://users.roblox.com/docs#!/Users/get_v1_users_userId>API DOCUMENTATION
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let generalInfo = await Player.getInfo()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://users.roblox.com/docs#!/Users/get_v1_users_userId>API DOCUMENTATION
(async () => {
let Player = await new robloxjs.Player(1) // Player ID
let olderUsernames = await Player.getOldUsernames()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
Well, simply use the Get Universe ID of Place section from the Player Class
<a href=https://github.com/S0ftwareUpd8/roblox-api#get-places-in-an-universe>API DOCUMENTATION
(async () => {
let Universe = await new robloxjs.Universe(1337) // Universe ID
let UniversePlaces = await Universe.getPlaces()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://github.com/S0ftwareUpd8/roblox-api#get-info-about-an-universe>API DOCUMENTATION
(async () => {
let Universe = await new robloxjs.Universe(1337) // Universe ID
let UniverseInfo = await Universe.getInfo()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://games.roblox.com/docs#!/Games/get_v1_games_games_product_info>API DOCUMENTATION
(async () => {
let Universe = await new robloxjs.Universe(1337) // Universe ID
let UniversePrices = await Universe.getPrice()
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
<a href=https://users.roblox.com/docs#!/Users/post_v1_usernames_users>API DOCUMENTATION
(async () => {
let IDS = await robloxjs.getPlayerIDFromUsernames(["RobsPlayz", "Roblox"], false) // IDS IN ARRAY, EXCLUDE BANNED MEMBERS?
})(); // EVERYTHING MUST BE DONE IN AN ASYNC ENVIRONMENT!!
Special thanks to <a href=https://github.com/S0ftwareUpd8/roblox-api>roblox-api & <a href=https://github.com/matthewdean/roblox-web-apis>roblox-web-apis for the documentation on the API
FAQs
Roblox API Wrapper written in NodeJS using fetch.
We found that @dwifte/robloxjs 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.