Skip to content

Instantly share code, notes, and snippets.

View Kavan72's full-sized avatar
:octocat:
Focusing

Kavan Vadaliya Kavan72

:octocat:
Focusing
View GitHub Profile
@Esyottil
Esyottil / enable_hidden_wall
Last active June 30, 2026 04:03
Включение видимости невидимых стен в CryEngine!
# Включение невидимых стен в играх на CryEngine (пример: "Лицо войны")
В этом руководстве показано, как активировать отображение невидимых стен (collision proxy) путём патча памяти в CryEngine-игре. Пример основан на билде ПДБ известной игры "Лицо войны".
## Инструменты
- IDA Pro (с загруженным дампом игры)
- Visual Studio (для создания DLL)
- Инжектор DLL (например, любой публичный)
## Шаги
@rhaym-tech
rhaym-tech / VGK DriverEntry Analysis.md
Created February 2, 2025 18:42
A well detailed Riot Vanguard Kernel AntiCheat (vgk.sys) analysis

Overall threshold and difficulty

Vanguard's anti-cheating system is a protection system that pays more attention to the threshold, and the overall design and realization of the national re-examination anti-cheating system is still not the same. Here we first discuss the threshold and the difficulty of analysis, and then discuss these in blocks later.

  1. After the game is installed, Riot Vanguard will be installed to C:\Program Files\Riot Vanguard Under the catalog. Its overall anti-cheating is driven by vgk.sys And the three-ring program vgc.exe achieve
  2. The VGK-driven boot is turned on, and the boot mode is activated. When the game is activated, it will be verified that this state cannot be turned on if it is not turned on. VGK drive will intercept all unsigned, loophole-driven and black-driven loading. That is, all public ARK and some Rootkit tools, even Dbgview, cannot be used. However, after testing, the driver can be successfully loaded with a time-poke signature.
  3. Neither Ring3 nor Ring0 can w
@Kavan72
Kavan72 / endpoints.txt
Last active June 7, 2026 22:48
Valorant endpoints
[PlayerFeedback_CheckForSurvey] POST
[PlayerFeedback_SendAnswers] POST
[PatchNotes_GetPatchNotes] GET
[AggStats_Fetch] GET
[AccountXP_GetPlayer] GET https://pd.ap.a.pvp.net/account-xp/v1/players/{user_id}
[Config_FetchConfig] GET https://shared.ap.a.pvp.net/v1/config/ap
@HeshamMeneisi
HeshamMeneisi / docker-compose
Last active September 13, 2023 21:47
Mount S3 as Docker Volume (docker-compose)
# Tip: You can just define all environment variables used here in a
# .env file in the same directory so as not to expose secrets
# docker-compose will load it automatically
services:
s3fs:
privileged: true
image: efrecon/s3fs:1.86
restart: always
environment:
- AWS_S3_BUCKET=${AWS_S3_BUCKET}
@eshaan7
eshaan7 / drf-simplejwt_custom_admin_view.py
Last active November 24, 2022 11:25
Custom admin view for simplejwt that allows bulk deletion, blacklisting and token creation. Issue on GitHub: https://github.com/SimpleJWT/django-rest-framework-simplejwt/issues/258
from django.contrib import admin
from rest_framework_simplejwt.token_blacklist.admin import OutstandingTokenAdmin
from rest_framework_simplejwt.token_blacklist.models import OutstandingToken
from rest_framework_simplejwt.tokens import SlidingToken, RefreshToken
class CustomOutstandingTokenAdmin(OutstandingTokenAdmin):
"""
Custom admin view for OutstandingToken model\n
allows bulk deletion, blacklisting and sliding token creation
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active July 8, 2026 16:39
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname