Friday, December 6, 2024
Home Scripts

Scripts

Here you’ll find a collection of custom scripts designed to streamline and automate various cybersecurity tasks.

- Advertisement -
Google search engine

RECENT

SIMILAR

How NAT and PAT Works

0
Network Address Translation (NAT) This is a method that allows multiple devices on a local network to be mapped to a single public IP address, which conserves the number of public IP addresses needed. How it works Private to Public - When a device on a private...

Regex (Regular Expressions)

0
Regex (short for Regular Expressions) is a powerful tool used for searching, matching, and manipulating text based on specific patterns. Understanding and mastering this tool involves learning its syntax, operators, and advanced features. Basics Literals Match exact characters. E.g. ‘cat’ matches the string “cat” Metacharacters Special characters with unique meanings MetacharacterMeaning.Matches...

Simple Concepts of Reverse Engineering

0
Reverse engineering in cybersecurity involves analysing software, systems, or hardware to understand their design, functionality and behaviour. The goal is often to uncover vulnerabilities, analyse malware, or understand proprietary systems for security research and defence. Key Concepts Disassembly: Converts machine code (binary) into assembly language, we...