
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
oauth-electron-facebook
Advanced tools

Use Facebook OAuth in a simple way inside your electron App.
add it to your electron project using npm install oauth-electron-facebook --save or yarn add oauth-electron-facebook
require oauth-electron-facebook exports a function that requires a javascript object and an electron window, as seen on the next example:
const auth = require('oauth-electron-facebook')
const { BrowserWindow, session } = require('electron')
let info = {
key: ***,
secret: ***,
scope: ***
},
window = new BrowserWindow({webPreferences: {nodeIntegration: false}});
auth.login(info, window, session)
the login function will return a Promise with the access token and secret
{
"access_token":<string>,
"token_type":<string>,
"expires_in":<number>
}
Consider this before you integrate this library in your application:
keys & secrets in code that is going to be shipped.FAQs
oauth for facebook inside electron
We found that oauth-electron-facebook demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.