selvalives

Untitled

Aug 27th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. static application security testing (SAST)
  2. -fits in Development stage
  3. -secure code review
  4. -detailed inspection on source code
  5. -done when is code is stable and nearly complete
  6. objectives
  7. -root cause analysis by inspecting DFD
  8. -enumerates all instances of certain vulnerability
  9. -enumerates weakness in the existing security controls again known threats
  10. -design flaws like mishandling of nonuser inputs can be identified
  11. why SAST?
  12. -many serious vulnerabilities can be identified
  13. -decrease the cost to solve later
  14. SAST deliverables
  15. -types of vulnerabilities
  16. -severity level/impact
  17. -location ,line of code
  18. -recommendations
  19.  
  20. tools
  21. -checkmarx
  22. -visual code grepper
  23. -hpfortify
  24. -rational appscan source edition
  25.  
  26. -selection is based on the choosen language
  27. -the tool's understanding on the libraries and framework
  28. -IDE integration should be checked
  29. -time and effort for setting up the tool
  30. -tool cost
  31.  
  32. manual secure code review techniques for most common vulnerabilities
  33. -basically we sit and check for all common errors mentioned in the previous modules
  34. -use whitelisting instead of blacklisting
  35. -usage of nonparameterized statements
  36. -.....
  37. -time consuming but less false positives and false negatives
  38. -requires good understanding on code
  39.  
  40. dynamic application security testing (DAST)
  41. -fits in Testing stage
  42. -simulate attacks
  43. -produces runtime errors
  44. -generally executed by penetration testers or security practioners
  45. -use automated web application scanners
  46. -generates workloads to detect security weaknesses
  47.  
  48. DAST via automated application vulnerability scanning tools
  49. -webinspect
  50. -....
  51. DAST via proxy based security testing tools
  52. ....
Add Comment
Please, Sign In to add comment