Skip to content

Instantly share code, notes, and snippets.

View sh1nu11bi's full-sized avatar

sh1nu11bi

View GitHub Profile
@sh1nu11bi
sh1nu11bi / gistodo.md
Created June 19, 2019 00:00
vbetoex.py
#!/usr/bin/python
"""file2vbscript V0.3
tool to create a VBScript containing an embedded (executable) file
Source code put in public domain by Didier Stevens, no Copyright
https://DidierStevens.com
Use at your own risk
bash,pentesting one-liners and stuff
Basics
grep case insensitive
grep -i "<this>" <file>
grep recursively
grep -ir "<this>" <directory>
grep with word match only (string starting/ending with non-word constituent character)
grep -wi "<this>" <file>
remove/delete filename from grep output
grep -hi "<this>" <file>