Dependency Injection
Unprotected CDNs
Verify server vulnerability
Options request
curl -i -X OPTIONS <url>
curl -i --request-target "*" -X OPTIONS <base url>test unrestricted file upload
#PUT
curl -X PUT <url>/test.js -d "test"
#POST
curl -X POST <url> -d @<path to file>
curl -X POST <url> -F @<path to file> #as form encoded
curl -X POST <url> --data-binary @<path to file> #use this if file is corruptedCode injection
Dependency confusion
Package structure
Compile and upload the package
Last updated