Powershell Obsfucation tricks with examples Here is a list of obsfucation techniques. String encoding: This involves converting strings into a different format, such as base64 or hexadecimal, ...
Python Virtual Enviroment (with specific python version)
To create a Python 3 virtual environment with a specific version of Python, follow these steps: Install the virtualenv package using pip: pip install virtualenv Create a new virtual environme...
Bash Cheatsheet
Introduction This is a quick reference to getting started with Bash scripting. Learn bash in y minutes (learnxinyminutes.com) Bash Guide (mywiki.wooledge.org) Example #!/usr/bin/env bash ...
Powershell Obsfucation tricks
PowerShell obfuscation is the practice of making it difficult to understand or reverse engineer PowerShell code. This can be useful for a variety of reasons, such as to protect intellectual propert...
Sqlmap Cheatsheet
Burp + sqlmap Save a request in burp (right click > save to file) Run with sqlmap sqlmap -r sqlmap.txt --batch Generic -u "<URL>" -p "<PARAM TO TEST>" --user-agent=SQLMAP --r...
BugBounty Oneliners
Oneliner commands for bug bounty xss + urls katana -u "https://pestphp.com/" | cariddi | dalfox pipe --proxy http://127.0.0.1:8080 | tee -a pest_test_urls.txt cat pest_test_urls.txt | egrep -iv ...
Password advice
Are you tired of using the same weak and easily hackable password for all of your online accounts? It’s time to step up your game and create strong and unique passwords that will keep your person...
Blog revamp
If you’re reading this, chances are you’re passionate about staying safe and secure online. In today’s world, cyber security is more important than ever. With so much of our lives taking place onli...
Nmap
What is Nmap? Nmap (Network Mapper) is a free and open-source network scanner created by Gordon Lyon. Nmap is used to discover hosts and services on a computer network by sending packets and analy...
Ports
Common Ports And Usage Port 21 Port 22 (SSH) Port 25 (SMTP) Port 80 (web) Port 135 (Microsoft RPC) Port 139/445 (SMB) Port 161 (SNMP Enum) Port 161/162 (UDP) Port 443 (Https) ...