- 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 год )
| @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 |
Last Updated: 1st April, 2016
Installation / Updating / Running a Server
C:\Program Files (x86)\Steam\steamapps\common\steamcmd)install_update_run_server.bat batch script (below). It will download and install the server, then run the server in a new window on port 27015.| // 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; |
Note on sizes: a lot of those might be inaccurate as there might be many microservices required aside from the core release/docker image. I haven't tested these recently so I'm not sure
| /* | |
| typedef struct { | |
| int size; | |
| char* data; | |
| } test_struct; | |
| void some_func(test_struct **s); |
| .global _main | |
| .extern _putchar | |
| .align 4 | |
| _main: | |
| ; prolog; save fp,lr,x19 | |
| stp x29, x30, [sp, #-0x20]! | |
| str x19, [sp, #0x10] |