Skip to content

Instantly share code, notes, and snippets.

View S4ddik's full-sized avatar
💭
I may be slow to respond.

S4ddik

💭
I may be slow to respond.
View GitHub Profile
@S4ddik
S4ddik / TestAssembly.cs
Created September 6, 2022 11:06 — forked from Arno0x/TestAssembly.cs
This code shows how to load a CLR in an unmanaged process, then load an assembly from memory (not from a file) and execute a method
/*
================================ Compile as a .Net DLL ==============================
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library /out:TestAssembly.dll TestAssembly.cs
*/
using System.Windows.Forms;
namespace TestNamespace
@S4ddik
S4ddik / win32_net.cpp
Created April 1, 2022 18:37 — forked from gordonglas/win32_net.cpp
win32 HTTP GET
#include "win32_net.h"
#include <windows.h>
#include <wininet.h>
#pragma comment (lib, "Wininet.lib")
#include <stdio.h>
#include <wchar.h>
#include <cwctype>
#include <algorithm>
@S4ddik
S4ddik / HttpRequest.cpp
Created April 1, 2022 18:35 — forked from MordechaiMaman/HttpRequest.cpp
http request module for windows (using wininet.lib)
#include "HttpRequest.h"
#include <sstream>
HTTP::HttpRequest::HttpRequest(const std::wstring& user_agent)
{
_connection = InternetOpenW(user_agent.c_str(),
INTERNET_OPEN_TYPE_DIRECT,
NULL, NULL, 0);
if (_connection == NULL)