Browsing tag

CLI

Penta – Open Source All-In-One CLI Tool To Automate Pentesting

  Penta is is Pentest automation tool using Python3. (Future!) It provides advanced features such as metasploit and nexpose to extract vuln info found on specific servers. Installation Install requirements penta requires the following packages. Python3.7 pipenv Resolve python package dependency. $ pipenv install If you dislike pipenv… $ pip install -r requirements.txt Usage $ […]

Strings Command In Linux: A Simple But Very Useful Tool

We all have to search through text files for strings from time to time. But what about when you need to search through a binary file for bits of text? Most of us don’t have to do that often, if ever. For those of you that haven’t tried it before, it’s not the easiest thing […]

‘Cut’ Command In Linux: Useful Applications Explained

Linux and other UNIX-like operating systems have many tools for processing text on the command line. Without these tools (find complete Linux command list here), we would be forced to write down the output of one command and type it into the next so we could isolate the bits we actually need and not pipe the entire output into an unexpecting […]

QBDI – QuarkslaB Dynamic binary Instrumentation

QuarkslaB Dynamic binary Instrumentation (QBDI) is a modular, cross-platform and cross-architecture DBI framework. It aims to support Linux, macOS, Android, iOS and Windows operating systems running on x86, x86-64, ARM and AArch64 architectures. Information about what is a DBI framework and how QBDI works can be found in the user documentation introduction. QBDI modularity means […]

DBC2 (DropboxC2) – A Modular Post-Exploitation Tool, Composed Of An Agent Running On The Victim’S Machine

DBC2 (DropboxC2) is a modular post-exploitation tool, composed of an agent running on the victim’s machine, a controler, running on any machine, powershell modules, and Dropbox servers as a means of communication. This project was initially inspired by the fantastic Empire framework, but also as an objective to learn Python. Features DBC2 main features: Various […]

The Ultimate A To Z List of Linux Commands | Linux Command Line Reference

Short Bytes: Linux distributions can leverage an extensive range of commands to accomplish various tasks. For most Linux distros, Bash (bourne again shell) is the default command-line interface or shell used to execute these commands. In this A to Z list of Linux commands, we have tried to include as many commands as possible which […]

Linux Lexicon — Input And Output With Pipes And Redirection In Linux

Short Bytes: Command output, and input, can be controlled in extremely flexible ways using pipes and redirection. This is much more than smoke and mirrors, it’s the magic of Linux and UNIX-like shells. When working with the command-line interface it’s common to want to use the results of one command in another, but it’s extremely […]

Linux Lexicon: Introduction To Linux Shell And Terminal | fossBytes

Last time we discussed the Linux Directory Structure and the roles of the various directories that form a part of the Linux File System. In this article, we shall be discussing the Linux Shell, the Terminal, and the Shell Prompt. Put in simple words, the ‘Linux Shell’ is the default command line interface to the […]