Best of ShellJuly 2022

  1. 1
    Article
    Avatar of phProduct Hunt·4y

    Gum - A tool for building glamorous shell scripts!

  2. 2
    Article
    Avatar of linuxhandbookLinux Handbook·4y

    What is Dash Shell in Linux?

    Dash is a POSIX-compliant implementation of Bourne Shell. It replaces the /bin/sh in default scripts and provides better execution speed while consuming fewer resources.

  3. 3
    Article
    Avatar of systemweaknessSystem 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. 4
    Article
    Avatar of systemweaknessSystem 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. 5
    Article
    Avatar of dzDZone·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.