Base64 Code | Mnemonic Aid | Decoded* | Description |
---|---|---|---|
JAB |
🗣 Jabber | $. |
Variable declaration (UTF-16) |
TVq |
📺 Television | MZ |
MZ header |
SUVY |
🚙 SUV | IEX |
PowerShell Invoke Expression |
SQBFAF |
🐣 Squab favorite | I.E. |
PowerShell Invoke Expression (UTF-16) |
SQBuAH |
🐣 Squab uahhh | I.n. |
PowerShell Invoke string (UTF-16) e.g. Invoke-Mimikatz |
PAA |
💪 "Pah!" | <. |
Often used by Emotet (UTF-16) |
Some Maths motivation....
Twitter @the_IAS
Described in Wikipedia as
"The Institute for Advanced Study (IAS), located in Princeton, New Jersey, in the United States,
is an independent center for theoretical research and intellectual inquiry.
WhatsApp is rolling out a new video calling feature. A lot of scam websites have come up which promise to enable the video calling feature on WhatsApp user phones.
Here are some of the URLs of the scam websites:
- whatsappvideoactivate DOT com
- whatappvideoenable DOT com
- whatappvideoonline DOT com
Hey vulnerability-researcher,
Here are some tips for documenting the reversing work you are doing.
` version 1 Jan 19, 2016.
version 2 Feb 23, 2016. `
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this is a sample .curlrc file | |
# https://everything.curl.dev/ is a GREAT RESOURCE | |
# store the trace in curl_trace.txt file. beware that multiple executions of the curl command will overwrite this file | |
--trace curl_trace.txt | |
# store the header info in curl_headers.txt file. beware that multiple executions of the curl command will overwrite this file | |
--dump-header curl_headers.txt | |
#change the below referrer URL or comment it out entirely |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set incsearch | |
set hlsearch | |
"filetype on | |
color oceandeep | |
"set background=dark |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Replaces 'smarT' quotes | |
%s/[]/"/g | |
" Replaces 'smart sIngle' quotes and backtick sIngle quotes (also covers 'smart' apostrophe) | |
%s/[`]/'/g | |
" Replaces 'smart' Hyphens | |
%s/ \| \|/ - /g | |
" Replaces 'backticK' quotes and 'double apostrophe' endquotes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"deletes all instances of the following | |
" CVE-ID: CVE-2007-0719 | |
" and appends them to the bottom of the file | |
while search('^\s\+ CVE-ID:.\+$') | |
"/\s\+CVE-ID:\sCVE-\d\d\d\d.\+ $/ yank | |
"+1 put | |
"delete the matched text and append it to register K |