- 300g Gravad lax
- 1 knippe dill
- 2dl Creme fraiche
- 1 hönsbuljongtärning
- ½ rödlök
- Pasta
This file contains 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
/// <summary> | |
/// Start elevated process with UAC bypass. | |
/// Credits: Rottweiler | |
/// </summary> | |
/// <param name="filename"></param> | |
static void UACStart(string filename) | |
{ | |
if (Environment.OSVersion.Version.Major >= 6) | |
{ | |
string filename_safe = Path.GetFullPath(filename); |
This file contains 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
using System.Diagnostics; | |
using System.Windows.Forms; | |
namespace Loader { | |
public static class Library | |
{ | |
[DllExport] | |
static void ShowMessage() { | |
using(var p = Process.GetCurrentProcess()) { | |
// Add System.Windows.Forms reference |
This file contains 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
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
public static class ProcessExtensions { | |
private static IntPtr kernel32; | |
private static IntPtr loadlibrary; | |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
public delegate void ThreadQueueWorkDelegate<T>(T task); | |
/// <summary> | |
/// ThreadQueue | |
/// Made by BahNahNah |
This file contains 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
//Xerxes, code assumed to be public domain | |
//by tH3j3st3r | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdint.h> | |
#include <unistd.h> | |
#include <netdb.h> | |
#include <signal.h> |
This file contains 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
using System; | |
using System.Text.RegularExpressions; | |
namespace ETC.Helpers | |
{ | |
public static class StringExtensions | |
{ | |
/// <summary> | |
/// Indicates whether the regular expression specified in "pattern" could be found in the "text". |