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
S.compt
6019 1818
3359 7178
6052 3756
9362 9064
2089 3498
2623 1800
1620 5438
6586 1092
5184 5191
@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)
@S4ddik
S4ddik / IPsec_ikev2.sh
Last active October 10, 2020 23:31
IPsec IKEv2 server Installer
#!/bin/bash
# Script pour cree un IPsec ikv2 VPN Server
# Tested on Archlinux - ubuntu 14.4
# Lundi 13 September 2020
# thanx to https://www.digitalocean.com/community/tutorials/how-to-set-up-an-ikev2-vpn-server-with-strongswan-on-ubuntu-18-04-2
_7mer=`tput setaf 1`
_5dar=`tput setaf 2`
_5chin=`tput bold`
wali=`tput sgr0`