note - kdaisho/Blog GitHub Wiki
how to copy to clipboard from vim
- select text (V selection)
- "+y
youtube.com/watch?v=dJjQoxwyNCc
- proxychain configuration file etc/proxychains4.conf
sudo service tor start
sudo service tor status
proxychains firefox
- use tor with a proxy for all:
export ALL_PROXY=socks5://127.0.0.1:9050
To check if I'm using tor:
Make sure to start it first.
sudo service tor start
Then
curl https://ifconfig.me
or
curl --proxy socks5h://127.0.0.1:9050 https://check.torproject.org
or even access to my web app. (A server block file has been configured to read real IPs: How to configure Nginx to read real IP address from who request)
curl --proxy socks5h://127.0.0.1:9050 https://brailler.daishodesign.com
From within the server, you can read the access log and you'll see completely randomized IP.
sudo tail -f /var/log/nginx/access.log
Web application ethical hacking
https://www.youtube.com/watch?v=X4eRbHgRawI&list=PLdgqgrnMB9RYYYW8bG4HRJQ4ujbURQq-U
- running juice-shop locally
docs: https://owasp.org/www-project-juice-shop/ repo: https://github.com/juice-shop/juice-shop
there are some peer dependency issue so make sure to install everything you need by adding the flag:
pnpm install --shamefully-hoist
- Sublist3r
- install sublist3r from github
- run
python sublist3r.py -d irobot.com
# or
# python sublist3r.py -d greyzonewellness.com
-
crt.sh enter: %.greyzonewellness.com
-
Burpsuite (37:25~)
-
Securityheaders.com (https://securityheaders.com/)
-
Wappalyzer (firefox extension)
-
weleakinfo.com (not available anymore)
-
shodan https://www.shodan.io/
-
hunter.io https://hunter.io
[email protected]
OWASP ZAP https://www.youtube.com/watch?v=QJ5u_dHwoAk&t=336s
- SQL injection
' OR 1=1; --
Trying to run ZAP on tor
proxychains /opt/zaproxy/zap.sh