Code that harms the system, data, or private information. Viruses, trojans, spyware, etc. are forms of malicious code.

learn more… | top users | synonyms

1
vote
1answer
367 views

Is parsing a submitted JSON object safe?

I have a RESTful API, built in NODE.js that does what you would expect it to: consumes data and then makes it accessible. Currently, data being submitted to my server is nested form data: ...
1
vote
3answers
615 views

Avoid malicious code while dynamically loading classes with ClassLoader

Background One of the advantages of decoupled components in systems is that you can extend the system without having to touch the existing code. Sometimes you don't even have to recompile the old ...