Skip to content

Instantly share code, notes, and snippets.

View AlexeyTolstopyatov's full-sized avatar
😊

NtWaitForWorkViaWorkerFactory+0xc AlexeyTolstopyatov

😊
View GitHub Profile
@AlexeyTolstopyatov
AlexeyTolstopyatov / pwgen.c
Created July 26, 2024 06:16
Маленький генератор паролей на Си.
#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");
using System;
using System.Collections.Generic;
using UnityEngine; // база
using TMPro; // TextMeshPro
/// <summary>
/// Определение типа "Слова".
/// Если я помню правильно, аттрибут нужен, чтобы Юня
@AlexeyTolstopyatov
AlexeyTolstopyatov / kill.asm
Created August 15, 2024 00:56
Process killer
format PE GUI 4.0
entry start
include 'win32a.inc'
section '.data' data readable writeable
buff rb 100h
section '.code' code readable executable
@AlexeyTolstopyatov
AlexeyTolstopyatov / derd.h
Created August 23, 2024 06:37
DER Encoding keys define
#define CERT_DER_H
/*
* Если я помню правильно, "DER" Кодировка
* работает следующим образом:
* 1) Указывается тип данных
* 2) Указывается длинна
* 3) Указываются сами данные в виде последовательности байт
*
* ASN 1>> INTEGER 8192
@AlexeyTolstopyatov
AlexeyTolstopyatov / CriticalProcessDied.cs
Created September 20, 2024 04:07
Important of Windows Processes.
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
@AlexeyTolstopyatov
AlexeyTolstopyatov / KillRvRvpnGui.bat
Last active November 19, 2024 15:28
Force killing Radmin VPN (for Sonya~)
ECHO OFF
TASKKILL /F /IM RvRvpnGui.exe /FI "STATUS eq RUNNING"
TASKKILL /F /IM RvControlSvc
EXIT
@AlexeyTolstopyatov
AlexeyTolstopyatov / quake_approximation_of_inv_sqrt.c
Last active December 21, 2024 05:32
Fast Quake Approximation of Inverse Square Root
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;
@AlexeyTolstopyatov
AlexeyTolstopyatov / vb6head.bas
Last active January 28, 2025 02:13
The proposed VB5 table
'
' (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]