
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
(c)Bumblehead, 2013 MIT-license
CORS is not supported by IE < 8.
xdrgo is beta and is not for production use
https://stripe.com/blog/stripejs-and-jsonp no need for iframes as well as jsonp
http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx xdr limitations:
Simple/dumb xhr (xdr for IE) object for performing cross-domain requests, using CORS when available or xdr as a fallback.
Another way to make cross-domain requests is JSONP. JSONP exploits unintended browser functionality. You may want to use JSONP rather than CORS if you need to support older browsers (lt IE8).
CORS and xdr supports the full range of REST methods (GET, POST, DELETE, etc.). CORS provides complete error handling. It limits access a malicious page would have to remote server data. It does not expose clients to remote server vulnerabilities.
xdrgo is not a comprehensive solution for xhr/xdr usage. It's perfect for the most common type of request using non-chunked json, html and form-urlencoded data formats. It assumes there is one 'success' response, 200.
xdrgo uses the node.js callback convention.
xdrgo.JSON( type, url, data, token, fn, time )
The first two parameters are required. Data is sent and received in the JSON format. Data is passed to and returned from the method in the form of an object.
xdrgo.JSON('POST', '/hi', {hi:'b'}, null, function (err, res) {
if (err) return fn(new Error(err));
fn(null, res);
}, 1000);
xdrgo.JSONU( type, url, data, token, fn, time )
Calls xdrgo.JSON after adding a unique parameter to the url. Used to avoid cached responses.
xdrgo.getTextHTML( url, fn, time )
This method makes 'GET' requests with "Content-Type" "text/html". Useful for requesting static template and text files.
xdrgo.getTextHTML(htmlUrl, function (err, template) {
if (err) return fn(new Error('failed load html: ' + htmlUrl));
fn(null, template);
});
xdrgo.getTextHTMLU( url, fn, time )
Calls xdrgo.getTextHTML after adding a unique parameter to the url. Used to avoid cached responses.
xdrgo.newRequest( )
Returns a browser-supported xhr object. For most browser's the value returned by this method is new XMLHttpRequest()
xdrgo.getUriAsUnique( url )
Returns a new url with a unique parameter added.
xdrgo.getUriAsUnique('/a.html'); // "/a.html?uid=1377988402490"
xdrgo.addKeyVal( url, k, v )
Returns a new url with key/val parameters added.
var url = '/resource';
url = xdrgo.addKeyVal(url, 'a', '1'); // "/resource?a=1"
url = xdrgo.addKeyVal(url, 'b', '2'); // "/resource?a=1&b=2"
xdrgo.getArgsObjAsUriStr( argsObj )
Top-level properties of the object are returned as a key/value string. Each value is encoded. The keys are joined in alphabetical order.
For more comprehensive object serialization use url-formencoded.
xdrgo.getArgsObjAsUriStr({
modified : 137798840249,
currency : 'usd'
});
// "currency=usd&modifed=137798840249"
xdrgo.getUriStrAsArgsObj( uriStr )
Retuns an object with properties named and defined with values from the url. vanillaUri and hash are always named properties on the object returned.
xdrgo.getUriStrAsArgsObj(
"/resource/currency=usd&time=137798840249#hashvalue"
});
// {
// vanillaUri : '/resource/currency=usd&time=137798840249#val',
// hash : 'val',
// lastmodified : 137798840249,
// currency : 'usd'
// }

(The MIT License)
Copyright (c) 2012 Bumblehead chris@bumblehead.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
cross-site http requests in your browser script
We found that xdrgo 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.