Skip to content

Instantly share code, notes, and snippets.

View Unbreak4ble's full-sized avatar
🎯
Focusing

Rafael Unbreak4ble

🎯
Focusing
  • Brazil
View GitHub Profile
@Unbreak4ble
Unbreak4ble / README.md
Created July 20, 2024 21:02 — forked from mageddo/README.md
TDP and turbo parameter modification with MSR on non-overclockable Intel CPU (such as Intel i7-8550U)

TDP and turbo parameter modification with MSR on non-overclockable CPU

Disclaimer

  • MSR modification may void your CPU's (or system board's) warranty. Proceed with care. I'm not responsible for any destruction caused by this article.
  • MSR address (greatly) differs from CPU to CPU. Check your own CPU's MSR address using Intel's documentation.
  • Only tested on Intel i7-8550U (Kaby Lake R).
  • This article is translation of this article. If you can understand Korean, I recommend reading that article, not this.

Start

@Unbreak4ble
Unbreak4ble / free-davinci-resolve-studio.md
Last active June 24, 2024 23:06
free davinci resolve 18.6.5 studio

step 1

if you don't have this version installed, download here and install it.

step 2

execute the command line bellow on terminal.

sudo perl -pi -e 's/\x00\x85\xc0\x74\x7b\xe8/\x00\x85\xc0\xEB\x7b\xe8/g' /opt/resolve/bin/resolve

it will replace some bytes on executable file.

@Unbreak4ble
Unbreak4ble / ca.md
Created August 9, 2023 03:58 — forked from soarez/ca.md
How to setup your own CA with OpenSSL

How to setup your own CA with OpenSSL

For educational reasons I've decided to create my own CA. Here is what I learned.

First things first

Lets get some context first.

@Unbreak4ble
Unbreak4ble / memory_layout.md
Created May 9, 2023 22:13 — forked from CMCDragonkai/memory_layout.md
Linux: Understanding the Memory Layout of Linux Executables

Understanding the Memory Layout of Linux Executables

Required tools for playing around with memory:

  • hexdump
  • objdump
  • readelf
  • xxd
  • gcore