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
# This is the sshd server system-wide configuration file. See | |
# sshd_config(5) for more information. | |
# The strategy used for options in the default sshd_config shipped with | |
# OpenSSH is to specify options with their default value where | |
# possible, but leave them commented. Uncommented options override the | |
# default value. | |
#Port 22 | |
#AddressFamily any |
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
#!/bin/bash | |
# Example for the Docker Hub V2 API | |
# Returns all imagas and tags associated with a Docker Hub user account. | |
# Requires 'jq': https://stedolan.github.io/jq/ | |
# set username and password | |
UNAME="FOO" | |
UPASS="BAR" |
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
;Как получить привелегию Ring 0 | |
;Автор: The GSGR | |
;Иногда это нужно для доступа к портам выше $FF, таких как IDE контроллер и т.д. | |
;-------------------------------------------------- | |
.386p | |
.model flat | |
.radix 16 | |
Ring_0_CS_32 = 28 |
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
%define SEL_RING_0_CODE 0x0008 | |
%define SEL_RING_0_DATA 0x0010 | |
%define SEL_RING_1_CODE (0x0018 | 0x0001) | |
%define SEL_RING_1_DATA (0x0020 | 0x0001) | |
%define SEL_RING_2_CODE (0x0028 | 0x0002) | |
%define SEL_RING_2_DATA (0x0030 | 0x0002) | |
%define SEL_RING_3_CODE (0x0038 | 0x0003) |