Skip to content

Instantly share code, notes, and snippets.

View Sovenok-Hacker's full-sized avatar
🎯
Focusing

Artem Sovenok-Hacker

🎯
Focusing
View GitHub Profile
@Sovenok-Hacker
Sovenok-Hacker / widevine-decryption.md
Created January 28, 2026 19:33 — forked from frozenpandaman/widevine-decryption.md
download videos protected with widevine DRM
@Sovenok-Hacker
Sovenok-Hacker / README.md
Created August 13, 2025 09:44
Portal 2 Want You Gone theme for Rio terminal
@Sovenok-Hacker
Sovenok-Hacker / pi.md
Last active November 13, 2024 17:50
Pi calculated to 10 billion decimal digits

Calculated by me with y-cruncher on Intel Core i3-10100

Avaliable sizes:

  • 10B
  • 1B
  • 100M
  • 10M
  • 1M
  • 100K
  • 10K
@Sovenok-Hacker
Sovenok-Hacker / sqrt2.md
Last active November 13, 2024 08:06
Square root 2 calculated to 10 billion decimal digits

Calculated by me with y-cruncher on Intel Core i3-10100

Avaliable sizes:

  • 10B
  • 1B
  • 100M
  • 10M
  • 1M
  • 100K
  • 10K
@Sovenok-Hacker
Sovenok-Hacker / Cargo.toml
Last active November 27, 2024 10:47
Change Windows wallpaper using Rust and WinAPI (with BMP conversation included)
# Cargo.toml packages
windows = { version = "0.56.0", features = ["Win32_UI_WindowsAndMessaging"] }
image = "0.25.1"
@Sovenok-Hacker
Sovenok-Hacker / syslog.py
Last active December 30, 2024 18:25
Syslog to Gotify proxy (used https://gist.github.com/marcelom/4218010) | Beeline router system message server
#!/usr/bin/env python
## Tiny Syslog Server in Python
HOST, PORT = "0.0.0.0", 514
GOTIFY_URL = "http://127.0.0.1:8050" # Your Gotify instance URL
GOTIFY_TOKEN = "<YOURTOKEN>" # Your Gotify app token
import socketserver as ss
import requests
@Sovenok-Hacker
Sovenok-Hacker / hacktheplanet.py
Last active May 4, 2024 12:23
A little utility and library to dump and decrypt Google Chrome cookies and saved creds (for Windows)
# Thanks to https://gist.github.com/GramThanos/ff2c42bb961b68e7cc197d6685e06f10
import os
import json
import base64
import sqlite3
# install pypiwin32
import win32crypt
# install pycryptodomex
from Cryptodome.Cipher import AES