multipart-parser
multipart-parser copied to clipboard
A C++ multipart MIME parser that isn't bloated with unnecessary stuff and doesn't depend on huge external libraries
Hello. I tried to use this parser in my project and found invalid behaviour. When parser meets last boundary, it just exits from feed function without updating its members. As...
Any good, specialized solution suggestion for only parsing multipart on the client-side in browsers? So far everything i have checked needs dependencies of libraries that cannot be used client-side or...
Is there any way this can be incorporated? https://github.com/egirshov/node-formidable/commit/a06f68f417004f680a16822bb76fdba033bbf73f I'll try to send a PR as well.
There's absolutely no need for the boyer-moore pattern matching algorithm at all, it's a waste of effort, and actually wrong in the way you use it. Effectively all you are...
Unhandled std::out_of_range exception in MultipartParser::processPartData causes process termination
### Summary `MultipartParser::processPartData()` may throw an uncaught `std::out_of_range` exception when parsing certain malformed multipart inputs. If the caller does not explicitly catch this exception, the entire process terminates. This behavior...