Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
| def median(values): | |
| n = len(values) | |
| if n % 2 == 1: | |
| return values[n // 2] | |
| return (values[n // 2 - 1] + values[n // 2]) / 2 | |
| def quartiles(values): |
Every project needs a list of articles that I will not read until I fail enough to be motivated to read them.
A month in the laboratory can often save an hour in the library.
Notable links on Intel's Shadow-Stack or CET Mitigations
CTRL+Enter to close a windowALT to display shortcut optionsALT-X to save database| import idautils | |
| ea = 0x000000140013188 | |
| name = ida_name.get_ea_name(ea) | |
| print("found") | |
| # get xrefs to function | |
| xrefs = [x for x in idautils.CodeRefsTo(ea, 0)] | |
| for func in xrefs: |
from cmd or Run
powershell -Command "Start-Process cmd -Verb RunAs"