Coder Social home page Coder Social logo

commander's Introduction

Commander

Store your commands and find it easy

I write this tool to you store your command and find it always that you need.

Features

  • Store your commands used in Pentest or in CTF;
  • Easy to add commands;
  • Find your command writing 2 letters;
  • Click on the line and the command is copied to clipboard;

How to Use

First you need to open index.html in a web browser.

You can search your commands in the input file.

How to add a new command

First of all you need to copy a block of code like this:

1: <tr onclick="copyCommand('nc1')">
2:   <td></td>
3:   <td>nc</td>
4:   <td id="nc1">nc -lnvp 4120</td>
5:   <td>open the 4120 port to listen for connections</td>
6: </tr>

After you need to change nc1 in first and fourth line to another unique identification. This id is used to copy the command to clipboard. In my example I changed nc1 to nmap1.

1: <tr onclick="copyCommand('nmap1')">
...
4:   <td id="nmap1">nc -lnvp 4120</td>
...

And than you need to change the slug in the third line. It will be used when you find commands in the search input.

...
3:  <td>nmap</td>
...

After you need to change the command line and the description from command.

...
4:   <td id="nmap1">nmap -sT -p22 X.X.X.X</td>
5:   <td>do a fast TCP scan in the SSH service</td>
...

Save and relaunch your browser.

commander's People

Watchers

James Cloos avatar Jonathan Messias avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.