Posts

OS Command Injection -Portswigger (LAB-1) | INFOCODX

Image
Hey there, how are you all? I hope everything is going smoothly and everyone is doing fine.  Today, we're diving into the exciting world of OS Command Injection labs from portswigger . Get ready for some hands-on action!    So, the first thing we need to know is what OS command injection actually means. A command injection allows attackers to run any commands they want by exploiting data handling vulnerabilities. This can lead to various attacks like injecting JavaScript or HTML code. OS Command Injection is a specific attack that enables the execution of commands on the target operating system or server. Alright, let's begin, shall we? LAB 1 : OS command injection This lab contains an  OS command injection  vulnerability in the product stock checker. The application executes a shell command containing user-supplied product and store IDs, and returns the raw output from the command in its response. To solve the lab, execute the  whoami  command to dete...

Top 5 Kali Linux Tools For Hacking

Image
  The IT world is under constant threat from cybercrime, necessitating the adoption of various measures to combat it. Ethical hackers, also known as "white hackers," leverage a multitude of network security tools to evaluate networks and data systems, pinpointing any possible vulnerabilities that may be exploited by hackers. What Is Kali Linux?  An open-source distribution that is designed for cybersecurity professionals, ethical hackers, and penetration testers, Kali Linux is based on Debian and offers over 600 tools for security auditing and penetration testing. Offensive Security is the active developer of Kali Linux, which is widely used by Infosec companies and ethical hackers. Kali Linux  was designed to be used by professionals, web admins, and anyone who knows how to run Kali Linux; it was not designed for general use. Kali Linux has numerous security-hacker applications pre-installed for exploitation tools, forensic tools, hardware hacking, information gathering,...

Discover the latest features and enhancements in Angular 17

Image
  Introduction On November 8, 2023, Angular version 17 was unveiled, signifying a remarkable evolution for the framework that originated in September 2016. This release breathes new life into the application, presenting a fresh outlook and renewed potential. It is important to clarify that rebirths do not imply a complete overhaul of the framework, but rather the incorporation of major functionalities that enhance its power using the latest browser features. A new Branding The Angular logo was absent from social media sites like X for a few days, and instead, a question mark was displayed. However, on November 6, the Angular team introduced a new logo and a brand new documentation website that can be found here. This brand-new site (still under construction in terms of APIs) brings many improvements, such as: the ability to experiment with features in a sandbox new tutorials with the option of creating them in a sandbox a brand-new organization by theme (component, form, accessibil...

Linux Fundamentals Part 3 | TryHackMe: Walkthrough | INFOCODX

Image
  Discover a simplified and beginner-friendly documentation of the Linux Fundamentals Part 3 Room on TryHackMe, which includes a detailed step-by-step guide and answer key. Room URL:  Linux Fundamentals Part 3 Task 1 (Introduction) Ready to begin? This area will guide you through flags, arguments, advanced filesystem information, and permissions! Nothing more to do here but proceed to part 2! Task 2 (Accessing Your Linux Machine Using SSH) To proceed to task 3, it is crucial that you closely follow TryHackMe 's guide, as this task is highly specific to their platform. TASK 3-: Terminal Text Editors Create a file using Nano by using the command “ nano new_file_name ”. # Create a file using Nano Answer:   No answer needed # Edit “task3” located in “tryhackme”’s home directory using Nano. What is the flag? Answer:   THM{TEXT_EDITORS} Task 4 :  General/Useful Utilities      Type in the following command to start a python webserver on the default ...

Linux Fundamentals Part 2 | TryHackMe: Walkthrough | INFOCODX

Image
  Simplified and beginner-friendly documentation of the Linux Fundamentals Part 2 Room on TryHackMe, featuring a step-by-step guide and answer key. Room URL:  Linux Fundamentals Part 2 Task 1 (Introduction) Ready to begin? This area will guide you through flags, arguments, advanced filesystem information, and permissions! Nothing more to do here but proceed to part 2! Task 2 (Accessing Your Linux Machine Using SSH) To proceed to task 3, it is crucial that you closely follow TryHackMe 's guide, as this task is highly specific to their platform. Task 3 (Introduction to flags and switches) T erminal commands often accept arguments, which can be provided by using a hyphen ('-') followed by a keyword, commonly referred to as flags or switches. By default, commands perform their usual behavior. For example, the "ls" comma nd displays the contents of the current directory without showing hidden files. To modify command behavior  By using the -a option (--all), our output...