Best of Shell — July 2022
- 1
- 2
- 3
System Weakness·4y
Basic Pentesting Cheat Sheet
Once you’ve run your nmap scans and got the services/versions use searchsploit or Google to find vulnerabilities/exploits. If there are no exploits for the services you find, it’s time to enumerate them. Port/Service Enumeration is where we’re going to pull as much data/information as we can from each service/port.
- 4
System Weakness·4y
Mr Robot CTF | TryHackMe
Mr. Robot CTF is a Mr. Robot-themed room on TryHackMe. It involves basic recon and it will give you a start on WordPress vulnerabilities if you are new to Web exploitation (WordPress Vulnerability → Reverse Shell) Here is the link for the box if you want to follow along:https://tryhackme.com/room/mrrobot.Machine Used: Kali Linux.
- 5
DZone·4y
Understand Regressions With Git Bisect
Git bisect is a tool for debugging regressions. It can be used to find bugs in older versions of software. The hardest part in debugging is knowing the general area of the bug. bisect literally shines a light on the specific commit that caused it. The simplest use of git bisect starts with the command:gui bisect start. This switches us into bisect mode.