
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
crossdomain
Advanced tools
Render a `crossdomain.xml` so that Adobe Flash Player clients can make requests to your domain. More on this nonsense [here](http://www.adobe.com/devnet/adobe-media-server/articles/cross-domain-xml-for-streaming.html).
Render a crossdomain.xml
so that Adobe Flash Player clients can make requests to your domain. More on this nonsense here.
$ npm install crossdomain
var crossdomain = require('crossdomain');
crossdomain({ domain: '*.segment.io' });
which returns:
<cross-domain-policy>
<allow-http-request-headers-from domain="*.segment.io" headers="*"/>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" secure="false"/>
</cross-domain-policy>
and Express
integration works like this:
var app = express();
var xml = crossdomain({ domain: '*.segment.io' });
app.all('/crossdomain.xml', function (req, res, next) {
res.set('Content-Type', 'application/xml; charset=utf-8');
res.send(xml, 200);
});
app.listen(8000);
Generate a crossdomain.xml
file with custom options
. options.domain
is mandatory, and everything else is defaulted to this:
{
"allow-http-request-headers-from-headers": "*",
"site-control-permitted-cross-domain-policies": "all",
"allow-access-from-domain": "*",
"allow-access-from-secure": "false"
}
Read more about these options in the Adobe docs.
WWWWWW||WWWWWW
W W W||W W W
||
( OO )__________
/ | \
/o o| MIT \
\___/||_||__||_|| *
|| || || ||
_||_|| _||_||
(__|__|(__|__|
FAQs
Render a `crossdomain.xml` so that Adobe Flash Player clients can make requests to your domain. More on this nonsense [here](http://www.adobe.com/devnet/adobe-media-server/articles/cross-domain-xml-for-streaming.html).
The npm package crossdomain receives a total of 41 weekly downloads. As such, crossdomain popularity was classified as not popular.
We found that crossdomain 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.