This file contains hidden or 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
/* | |
typedef struct { | |
int size; | |
char* data; | |
} test_struct; | |
void some_func(test_struct **s); |
This file contains hidden or 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
// compile this to hook.dll | |
// for example, with MSVC: cl.exe /LD /MT /O2 hook.c /Fehook.dll | |
#include <windows.h> | |
// get this from https://github.com/kubo/plthook | |
#include "plthook_win32.c" | |
static plthook_t* hook; |
Last Updated: 1st April, 2016
Installation / Updating / Running a Server
- Download and unzip https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip (link is legit, it's referenced here on Valve's instructions) to the Steam home directory (e.g.
C:\Program Files (x86)\Steam\steamapps\common\steamcmd
) - Execute the
install_update_run_server.bat
batch script (below). It will download and install the server, then run the server in a new window on port27015
.
- SimplePEG for JS - https://github.com/SimplePEG/JavaScript
- SimplePEG for Python - https://github.com/SimplePEG/Python
- https://tools.ietf.org/html/rfc822 ( 1982 год )
- https://tools.ietf.org/html/rfc2822 ( 2001 год )
This file contains hidden or 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
@ECHO OFF | |
SETLOCAL | |
ECHO ASLR Enable / Diable Batch Script - Please run as admin | |
set /p Choice=Want to Enable or Disable ASLR? (e or d):%=% | |
if "%Choice%"=="e" goto :ENABLE | |
if "%Choice%"=="d" goto :DISABLE | |
:ENABLE |