Earlier quoted context omitted.
That's not always what is going on. In some cases unscrupulous operators will run through large numbers of $1 transactions in order to lower their chargeback rate.
This sounds interesting - can you explain further?
Looking at how many sites use vulnerable JavaScript libraries
51–53 of 53 posts
Re: Looking at how many sites use vulnerable JavaScript libraries
#52> One of the discoveries the report mentions is that an analysis of around 433,000 sites found that 77% of them use at least one front-end JavaScript library with a known security vulnerability. Does that even matter? No Front-End JS Library should actually make your backend vulnerable.
An XSS issue could make your users' data vulnerable.
Otherwise you can throw your fancy anti-XSS on the frontend in the bin.
Also CSP helps.
Re: Looking at how many sites use vulnerable JavaScript libraries
#53> One of the discoveries the report mentions is that an analysis of around 433,000 sites found that 77% of them use at least one front-end JavaScript library with a known security vulnerability. Does that even matter? No Front-End JS Library should actually make your backend vulnerable.
FUD. Most SPAs keep the authentication token accessible to JavaScript so it can be sent to the API server. And XSS in the FE JS can permit an attacker to steal the user's authentication token and then the attacker could impersonate the user and take any action as the user.