Alan L

Results 12 comments of Alan L

It's a bit late to reply, but I found that 1. `safe-regex` is false positive on this regex because it has nested repetitions while it is actually safe. 2. `vuln-regex-detector`...

I tried to fix it by the following code: API.cpp ```cpp #include "API.hpp" using namespace methods; namespace API{ CALLBACK(listPrinters){ ISOLATE; cups_dest_t* dests; int numDests = cupsGetDests(&dests); Local printers = Array::New(isolate,...

Personally I use [Nuxt Components](https://github.com/nuxt/components) with a custom derivative of this package as Vue SFCs (`@keeer/material-components-nuxt`). The config is as follows: ```js components: [ '~/components', { path: '~/node_modules/@keeer/material-components-nuxt/components', prefix: 'm-'...

I made [a size comparison of importing `material-components-vue` using different methods](https://github.com/Alan-Liang/mdv-sizes). | import method | css size | js size(vendor) | | ------------: | :-------- | :-------------- | | npm...

[How the implementation prints *args* is up to the implementation](https://console.spec.whatwg.org/#printer), so probably we shouldn't use `console.log` as an output function for objects since it is not well-defined. Perhaps passing it...

> They even registered a patent for it. > > "A commercial certificate delivery method based on headless ACME" > https://qxb-img-osscache.qixin.com/patents_pdf_new/2219395a941e8bae0e5cb4475b3b3610.pdf (zh-CN) ([Archive](http://web.archive.org/web/20230609090329/https://qxb-img-osscache.qixin.com/patents_pdf_new/2219395a941e8bae0e5cb4475b3b3610.pdf)) It seems that the patent is unrelated...

See effect: This script does no harm but sleeps for a exponentially-increasing time.

> The general bug you are exploiting still exists, however #434 made it slightly harder to exploit, breaking the specific trick you are using. Sure. ```javascript !function h4xx0r(m){ var g...

> > [Overriding `onExit`](https://gist.github.com/Untrusted-Game/d6a6af8633edffd6e1e965bb2fccb7ce) > > Should be fixed by #464 (which I wrote before seeing this issue, on general security grounds.) Not really... it still works:

I regret for not noticing that. 于 2020年7月17日 GMT+08:00 下午11:45:18, pppery 写到: >#464 hasn't been merged yet. I'm unable to reproduce the "Overriding >onExit" trick if I apply that patch...