Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/syanide-/msf-nasm_shell-ng
A slightly improved wrapper around msf-nasm_shell
https://github.com/syanide-/msf-nasm_shell-ng
Last synced: 14 days ago
JSON representation
A slightly improved wrapper around msf-nasm_shell
- Host: GitHub
- URL: https://github.com/syanide-/msf-nasm_shell-ng
- Owner: SYANiDE-
- Created: 2023-06-18T23:54:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-19T00:23:53.000Z (over 1 year ago)
- Last Synced: 2024-11-06T17:30:19.482Z (2 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# msf-nasm_shell-ng
A slightly imroved wrapper around msf-nasm_shellWraps msf-nasm_shell with pexpect to extend nasm_shell with:
* newline delimited commands (already had that capability)
* semicolon delimited commands
* shell loop interactive terminal (retained)
* oneshot piped input
* oneshot cli arg input
* Helpful formatting: oneline c-style hexstring followed by opcode commentsExample output
```
┌──(notroot㉿Business-End)-[~/repos/msf-nasm_shell-ng]
└─$ msf-nasm_shell-ng "push esp; pop eax; ret"#[.] push esp\n pop eax\n ret
# 00000000 54 push esp
# 00000001 58 pop eax
# 00000002 C3 ret
# 3 bytes"\x54\x58\xc3" # 54 push esp; 58 pop eax; C3 ret # 3 bytes
```