Common:
searchsploit <application> <version>
To exclude some exploits (e.g. dos)
searchsploit <app> <version> | grep -v '/dos/'
To grep with REGEX (e.g. we want php exploit only)
searchsploit <app> <version> | grep -vi '\.php$'
Last updated 4 years ago