
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
@lavamoat/across
Advanced tools
Allowing Communication Relationship Of Scripts Securely
Across standard allows different scripts within the same web application to communicate with each other by passing messages between one another securely.
Across for yourself with this live demo!AcrossAcross is still experimental ⚠️ - your help is highly appreciated!This capability obviously already exists (by reading/writing from/to window), however the edge Across brings
is its core added values:
Across makes sure that a message passed on from script A to script B
The latest across production version is included in the official repo
and also in upkg cdn, so in order to
install across in the website, simply place it wherever and serve it to the website as-is:
<script src="https://unpkg.com/@lavamoat/across/across.prod.js"></script>
<script>
// apply Across by running:
ACROSS();
</script>
Make sure this runs first - any javascript that runs before Across can easily break it from securely working!
ACROSS API can also be required as part of a bundle instead of a script tag:
yarn add @lavamoat/across
const across = require('@lavamoat/across');
across(); // remember to call Across in order for it to apply
Once you register your onmessage callback by calling the document.onmessage() API by Across, you'll get a postMessage function that can be used to send messages to other scripts within the web app:
<script src="https://x.com/script-a.js">
(function(){
const postMessage = document.onmessage((src, msg) => {
if (src !== 'htts://y.com/script-b.js') {
console.log('message is not really from "script-b.js"');
return;
}
console.log('got a message from "' + src + '" : ', msg);
});
}())
</script>
<script src="https://y.com/script-b.js">
(function(){
const postMessage = document.onmessage((src, msg) => {
// do nothing
});
setTimeout(() => {
postMessage('https://x.com/script-a.js', 'hi A, this is B!');
}, 30);
}())
</script>
Due to security limitations, registering a script to send and receive messages from other scripts can only be done before DOM is loaded (that's when document.currentScript API is still relevant).
This project is an important POC aspiring to standardize how scripts can securely communicate with each other, however it is not yet production ready:
Currently across is written to support chromium based browsers only, it was
never tested on anything else.
Achieving an hermetic solution costs in performance. Injecting this script into some major websites went smoothly while with some others it caused them some performance issues.
Although this project takes the hermetic concept very seriously and massively tests for
potential flaws, across might potentially still have flaws which might enable attackers
to bypass its hooks.
Bottom line - across might have security vulnerabilities!
In order to assure security, there are many tests that verify that across
is fully hermetic as promised - everything that across supports is fully tested.
The tests mainly try to bypass across in any possible way.
If you found a vulnerability in across, open a PR with a test that demonstrates it.
Help with promoting any of the topics above is very much appreciated in order for this project to become production ready and reshape how browser scripts can communicate with one another!
Funded by Consensys đź’™
Maintained and developed by MetaMask 🦊
Invented and developed by Gal Weizman 👋🏻
Runs on Snow ❄️
FAQs
across
We found that @lavamoat/across demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.