This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yum-config-manager --add-repo=https://negativo17.org/repos/epel-steam.repo | |
| yum-config-manager --add-repo=https://negativo17.org/repos/epel-multimedia.repo | |
| yum -y install steam |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <sys/time.h> | |
| #include <dlfcn.h> | |
| #include <stdio.h> | |
| static timeval * timezero = 0; | |
| typedef int (*go)(timeval *tv, timezone *tz); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pointer -> https://github.com/zyantific/IDASkins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone [email protected]:alastorid/Solaar.git | |
| cd Solaar | |
| sudo pip install ./ | |
| sudo ./rules.d/install.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| { | |
| echo $(date) | |
| echo ">>>Disk found" | |
| echo ">>>Setting the title..." | |
| title=$(makemkvcon -r info) | |
| title=`echo "$title" | grep "DRV:0\+"` | |
| title=${title:53} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Name: <%= name %> | |
| Version: <%= version %> | |
| Release: 1%{?dist} | |
| Group: <%= group %> | |
| Summary: <%= summary %> | |
| License: <%= license %> | |
| Packager: <%= author %> <<%= email %>> | |
| Requires: <%= requires %> | |
| BuildRequires: <%= build_requires %> | |
| URL: <%= url %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; a.asm | |
| BITS 32 | |
| GLOBAL main | |
| SEGMENT .text | |
| main: | |
| ret |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE32 | |
| extern __getmainargs | |
| extern _exit | |
| extern atoi | |
| extern printf | |
| extern puts | |
| extern CommandLineToArgvW | |
| extern GetCommandLineA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| import re | |
| import idautils | |
| import idc | |
| import idaapi | |
| import ida_nalt | |
| pfMmGetSystemRoutineAddress=LocByName("MmGetSystemRoutineAddress") | |
| def PrevMnem(ea, mnem, count): | |
| mcount=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| push ProcName | |
| push LibFileName | |
| call LoadLibraryA | |
| push eax | |
| call GetProcAddress | |
| jmp eax |