Cahier des courses

Escalade & Rocher haute Montagne : https://www.camptocamp.org/outings?u=112318&act=mountain_climbing,rock_climbing Alpinisme : https://www.camptocamp.org/outings?u=112318&act=snow_ice_mixed   Cascade de Glace...

Turn Python scripts into Windows exe file

pyinstaller -i toto.ico -w -F toto.py Medium article : https://medium.com/dreamcatcher-its-blog/making-an-stand-alone-executable-from-a-python-script-using-pyinstaller-d1df9170e263 Another one which I don’t agree, as yes, payload is undetected by execute will...

Get TLS content or check service

Reading Time: < 1 minuteIn the olden days, we did for example telnet mailserver 110, and then we could get the combination of username/password or other checks.With all being TLS/SSL, here is a way to do the way but with a TLS underlay.openssl s_client -connect...

ProxyPAC Performances

Reading Time: < 1 minuteEach IsInNet generates each time a DNS request.So if many lines, one should do usednsResolve()Resolves hostnames to an IP address. This function can be used to reduce the number of DNS lookups.Example:var resolved_ip = dnsResolve(host);if...