Enhancement
See original GitHub issuehey, nice code over there !
i just wanted to add one more silly feature:
if u can generate the bin file using this code, then u can try generating the shellcode ;p
try this tinny code: using python 2
import sys
if len(sys.argv) < 2:
print "usage: %s file.bin\n" % (sys.argv[0],)
sys.exit(0)
shellcode = "\""
ctr = 1
for b in open(sys.argv[1], "rb").read():
shellcode += "\\x" + b.encode("hex")
shellcode += "\""
print shellcode
and if it worked u can add it to the repo . have a good one !
and thanks for the code again, be sure ill use it
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Enhancement Definition & Meaning - Dictionary.com
the state or quality of being elevated, heightened, or increased, as in quality, degree, intensity, or value: The latest update brings many performance ......
Read more >Meaning of enhancement in English - Cambridge Dictionary
a change, or a process of change, that improves something or increases its value: We have made many enhancements to the software that...
Read more >Enhancement - Definition, Meaning & Synonyms
The noun enhancement comes from the verb enhance, meaning "to increase or improve," and it can describe anything that's an improvement to the...
Read more >4 Synonyms & Antonyms for ENHANCEMENT - Thesaurus.com
Find 4 ways to say ENHANCEMENT, along with antonyms, related words, and example sentences at Thesaurus.com, the world's most trusted free thesaurus.
Read more >Enhance Definition & Meaning - Merriam-Webster
The meaning of ENHANCE is heighten, increase; especially : to increase or improve in value, quality, desirability, or attractiveness. How to use enhance...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Ohhh, my bad I thought it can output a .bin file or at least ur code did, sorry for wasting ur time 😦 my bad man !
Anywayss thanks for the code !!!
Hey, thanks for your suggestion! I will add it to the code.