Socket
Socket
Sign inDemoInstall

node-iframe

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-iframe - npm Package Compare versions

Comparing version 1.8.2 to 1.8.3

7

dist/fetch.js

@@ -132,7 +132,12 @@ "use strict";

return new Promise(function (resolve, reject) {
var body = "";
httpMethod
.get(url, options, function (res) {
res.setEncoding("utf8");
res.on("data", function (d) {
resolve(d);
body += d;
});
res.on("end", function () {
resolve(body);
});
})

@@ -139,0 +144,0 @@ .on("error", function (e) {

2

package.json
{
"name": "node-iframe",
"version": "1.8.2",
"version": "1.8.3",
"description": "create iframes on your server to bypass CORS. Reverse engineer security issues.",

@@ -5,0 +5,0 @@ "main": "dist/iframe.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc