How to Open Ports in Linux

Linux runs the world and we all know it. It is the backbone of most servers and network devices. Whitelisting or opening a port in Linux is a common and…

0 Comments

Google Dorks Cheat Sheet

Search Filters: 1. allintext: Searches for occurrences of all the keywords given within the text of a webpage. Example: HTMLallintext:"keyword" 2. intext: Searches for the occurrences of keywords all at…

0 Comments

How to Ping a Port in Linux

Pinging a port in Linux is a routine operation any dev or engineer needs to do in their day to day life. While it is such an important operation which…

1 Comment

CMD Commands Cheat Sheet

Basic Navigation: BAT (Batchfile)cd [directory_path] # Change the current directory. dir [directory_path] # List directory contents. mkdir [directory_name] # Create a new directory. File Operations: BAT (Batchfile)copy [source] [destination] #…

0 Comments

GDB Cheat Sheet

Running Bashgdb <program> [core dump] # Start GDB (with optional core dump). gdb --args <program> <args…> # Start GDB and pass arguments. gdb --pid <pid> # Start GDB and attach…

0 Comments

How to Edit Files in Linux

Linux is a powerful kernel with a powerful terminal and command line interface. This interfaces provides users with a wide variety of tools and commands to edit a file or…

0 Comments