Credential Phishing check bypass

Each system, has its limits.The Palo Alto on the latest version (tested on 9.0.1), is checking only up to 21 fields for a coupe of username and password in the bloom field.Normal creds form with 20 hidden INPUT before the Username & Password field. This shows the...

SSH Redirect

Reading Time: < 1 minuteThe following example binds local port 8834 on remote host via ssh as localhost port 8834.ssh -R 8834:localhost:8834...

AWS some commands

Reading Time: < 1 minutedig 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...

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