PatchPorting / patch-finder

A tool to find security patches from across the web.
GNU General Public License v2.0
4 stars 6 forks source link

Calling certain parse methods with URLs is redundant #3

Open jajajasalu2 opened 5 years ago

jajajasalu2 commented 5 years ago

In DefaultSpider, the parse methods for the parser classes are called by URLs, for example the parse_debian method is called if a debian security tracker URL is found. This is wrong.

Either these parsers should be called before crawling the entrypoint URLs, or a sophisticated way to call these parse methods without a URL is required.