[ Hidden Content! ]
hey, if you're lazy and want to find vulns in some websites, there is actually a pretty decent way to do this :)
you can use a opensource tool called nuclei, it's a vuln scanner written in go that uses YAML-based templates.
So, first of all you need to install the go programing language which is required for this, once you do that you can install nuclei using "go install", you can read more about it on their github repo.
once you install it, all you need to do to use it is just open cmd and type "nuclei" and the args you want to use.
so if you want to scan 1 website you will do:
Code:
nuclei -target https://example.com
if you want to scan multiple websites from a text file, you can do this:
Code:
nuclei -list urls.txt
so, yeah. those are the very very basics, you can find out more in the github repo: https://github.com/projectdiscovery/nuclei
Now using automated scanners will only get you so far, so if you want to learn more advanced skills you can lookup web exploitation tutorials, learn how to use burp suite etc.
Not ratedThis leak has not been rated yet, be careful when downloading.