Skip to content

Commit 3eb37dc

Browse files
committed
little changes in the readme
1 parent f5e231d commit 3eb37dc

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,23 @@ Shellen is an interactive shellcoding environment. If you want a handy tool to w
55

66
It uses [keystone](https://github.com/keystone-engine/keystone) and [capstone](https://github.com/aquynh/capstone) engines for all provided operations.
77

8-
Shellen *works only on python3*, but it will be changed in the future!
8+
Shellen **works only on python3**. Maybe it will be changed in the future.
99

1010
## Installing
1111
You can install the stable version of shellen using pip3:
1212
```
1313
$ sudo pip3 install shellen
1414
```
1515

16+
Or if you already have all required packages (see [Requirements](#requirements)):
17+
```
18+
$ python3 setup.py install
19+
```
20+
21+
If you have any trouble with installing keystone-engine, then you should compile it by yourself (see the [COMPILE.md](https://github.com/keystone-engine/keystone/blob/master/docs/COMPILE.md) file in the [keystone](https://github.com/keystone-engine/keystone) repository)
22+
1623
## How to run:
17-
To run shellen just type the next in your terminal:
24+
After installing shellen and all its required packages, you can run shellen just by typing the next in your terminal:
1825
```sh
1926
$ shellen
2027
```

shellen/shell.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -82,22 +82,22 @@ def help(self, *args):
8282
cprint((
8383
'\n<white,bold>PROMPT INFO</>\n'
8484
' The prompt format is <white,bold>mode</>:<white,bold>arch</>\n'
85-
' <white,bold> mode</> is a current <white,underline>assembly mode</> (by default it\'s asm). See below for more information.\n'
86-
' <white,bold> arch</> is a chosen processor <white,underline>architecture</> (by default it\'s x86_32).\n'
85+
' <white,bold>* mode</> is a current <white,underline>assembly mode</> (by default it\'s asm). See below for more information.\n'
86+
' <white,bold>* arch</> is a chosen processor <white,underline>architecture</> (by default it\'s x86_32).\n'
8787
'\n<white,bold>BASIC</>\n'
8888
' Basic commands are listed below:\n'
89-
' <white,bold> clear</>: Clear the terminal screen.\n'
90-
' <white,bold> help</>: Show this help message.\n'
91-
' <white,bold> quit, q, exit</>: Finish the current session and quit.\n'
89+
' <white,bold>* clear</>: Clear the terminal screen.\n'
90+
' <white,bold>* help</>: Show this help message.\n'
91+
' <white,bold>* quit, q, exit</>: Finish the current session and quit.\n'
9292
'\n<white,bold>MODES</>\n'
9393
' If you want to change a current mode, then just type the name of a mode.\n'
9494
' There are two assembly modes (each is described below):\n'
95-
' <white,bold> asm</>: Assembler mode.\n'
96-
' <white,bold> dsm</>: Disassembler mode.\n'
95+
' <white,bold>* asm</>: Assembler mode.\n'
96+
' <white,bold>* dsm</>: Disassembler mode.\n'
9797
'\n<white,bold>COMMON COMMANDS FOR MODES</>\n'
9898
' Common commands can be used for both <white, underline>asm</> and <white, underline>dsm</> modes.\n'
99-
' <white,bold> archs</>: Print a table of available architectures for a current mode.\n'
100-
' <white,bold> setarch [arch]</>: Change current processor architecture.\n'
99+
' <white,bold>* archs</>: Print a table of available architectures for a current mode.\n'
100+
' <white,bold>* setarch [arch]</>: Change current processor architecture.\n'
101101
'\n<white,bold>ASSEMBLY MODE</>\n'
102102
' <white,bold>asm</> mode is intended for assembling instructions.\n'
103103
' To assembly instuctions, write them separated by colons.\n'

0 commit comments

Comments
 (0)