Skip to content

Instantly share code, notes, and snippets.

View DrRamm's full-sized avatar
:octocat:
Опенсорс головного мозга

Eugene Kotsareu DrRamm

:octocat:
Опенсорс головного мозга
  • Russia
View GitHub Profile
@DrRamm
DrRamm / kallsyms.py
Created January 23, 2020 17:42 — forked from nlitsme/kallsyms.py
idapython script decoding the linux kernel symbol table
# Linux kernel kallsyms unpacker
# Version 0.2
# Copyright (c) 2010-2013 Igor Skochinsky
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the authors be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
@DrRamm
DrRamm / latest-widevine.sh
Last active January 21, 2020 07:46 — forked from basrieter/latest-widevine.sh
Fetches the latest Linux Widevine binary so that it can be used by Yandex.Browser.
#!/usr/bin/env bash
available () {
command -v $1 >/dev/null 2>&1
}
# Make sure we have wget or curl
if available curl; then
SILENT_DL="curl -s"
LOUD_DL="curl -O"