Reading Time: < 1 minute

RECENTS ARTICLES

BLOG

AWS some commands

dig website.cloudnslookup website.cloud sudo pip install awscli List content of a public AWS bucketaws s3 ls s3://website.cloud --no-sign-request --region us-west-2 List content of a user authenticated AWS bucketaws configure --profile myuserprofilename # Add your AWS...

Error installing a MSI, no logs ?

Generate an installation log by running your msi with the following optionsmsiexec.exe /i "C:Example.msi" /L*V "C:package.log"

GPP Windows Passwords

echo %logonserver% findstr /S /I cpassword \\xxDC01\sysvol\xxxdc01\policies*.xml crack cpassword with the default AES key https://github.com/PowerShellMafia/PowerSploit/blob/master/Exfiltration/Get-GPPPassword.ps1

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 be. So...

WESNG script to analyse Windows patching infos

Analyse Windows Systeminfo output, and produce a lit of the vulnerabilities and possible only show which ones have exploitspython wesng.py --exploits-only ./systeminfo.txt

Get TLS content or check service

In 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 www.google.com:443This enables...