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
' | |
' (C) Bilbo Backends 2024-2025 | |
' 15th section (as far as I know, ".text") | |
' stores Visual Basic 5.0 VM information. Nowdays 15th section stores Cor20 .NET data | |
' | |
Public Type VBRuntimeHead | |
PushStartOpcode As Integer 'push | |
PushStartAddress As Double 'offset of signature | |
CallStartOpcode As Integer 'jmp | |
CallStartAddress As Double ' offset to [EntryPoint] |
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
float Q_rsqrt(float number) { | |
long i; | |
float x2, y; | |
const float threehalfs = 1.5f; | |
x2 = number * 0.5f; | |
y = number; | |
i = *(long*)&y; | |
i = 0x5f3759df - (i >> 1); | |
y = *(float*)&i; |
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
ECHO OFF | |
TASKKILL /F /IM RvRvpnGui.exe /FI "STATUS eq RUNNING" | |
TASKKILL /F /IM RvControlSvc | |
EXIT |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Security.Principal; | |
using System.Runtime.InteropServices; | |
using System.Diagnostics; | |
namespace criticalProcess |
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
#define CERT_DER_H | |
/* | |
* Если я помню правильно, "DER" Кодировка | |
* работает следующим образом: | |
* 1) Указывается тип данных | |
* 2) Указывается длинна | |
* 3) Указываются сами данные в виде последовательности байт | |
* | |
* ASN 1>> INTEGER 8192 |
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
format PE GUI 4.0 | |
entry start | |
include 'win32a.inc' | |
section '.data' data readable writeable | |
buff rb 100h | |
section '.code' code readable executable |
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
using System; | |
using System.Collections.Generic; | |
using UnityEngine; // база | |
using TMPro; // TextMeshPro | |
/// <summary> | |
/// Определение типа "Слова". | |
/// Если я помню правильно, аттрибут нужен, чтобы Юня |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <time.h> | |
#define MINC_ASCII 0x21 /* Нижняя граница ASCII таблицы */ | |
#define MAXC_ASCII 0x7a /* Верхняя граница ASCII таблицы */ | |
int main(int argc, char *argv[]) { | |
srand((unsigned int)time(0)); | |
if (argc < 2) { | |
printf("./pwgen [length]\n"); |