Control Flow Guard is a security mitigation that verifies the target address of indirect calls. It works by having the compiler insert a check at indirect call sites to verify the validity of the call target, and also the linker write the necessary data and flags into the PE/COFF image to enable the feature on Windows' end.
Disclaimer:
- This methods uses a 3rd party website: https://baidu.kinh.cc/.
- I don't know chinese and after one day of searching for a method I finally found this. I don't know how safe this website is but it does the job.
- Do it on your own responsibility. I have no idea about possible copyright (if there is such a thing in China) and other stuff regarding to this.
This file contains 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 | |
""" | |
Androguard decompilation script. | |
Feed it an APK and an output directory and it will dump the source for you. | |
I used this script to learn some androguard skillz. | |
by k3170makan | |
""" | |
from sys import argv | |
from sys import exit |
「アニメソングの歌詞ならここにおまかせ?」(2017年1月31日に閉鎖) で公開されていた楽曲データの一覧を収集し、CSV 形式に変換したものです。
15,932
This file contains 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
// ==UserScript== | |
// @name Reddit: Highlight New Comments v3 | |
// @description Highlights comments on Reddit that are new since your last visit. | |
// @author Chris H (Zren / Shade), Nathan Sweet | |
// @icon https://reddit.com/favicon.ico | |
// @namespace http://xshade.ca | |
// @version 1 | |
// @include /https?:\/\/((www|pay|[a-z]{2})\.)?reddit\.com\/r\/[a-zA-Z0-9]+\/comments\/.*/ | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains 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
/* | |
* Random-Number Utilities (randutil) | |
* Addresses common issues with C++11 random number generation. | |
* Makes good seeding easier, and makes using RNGs easy while retaining | |
* all the power. | |
* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2015-2022 Melissa E. O'Neill | |
* |
This file contains 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
/* | |
* An implementation of C11 stdatomic.h directly borrowed from FreeBSD | |
* (original copyright follows), with minor modifications for | |
* portability to other systems. Works for recent Clang (that | |
* implement the feature c_atomic) and GCC 4.7+; includes | |
* compatibility for GCC below 4.7 but I wouldn't recommend it. | |
* | |
* Caveats and limitations: | |
* - Only the ``_Atomic parentheses'' notation is implemented, while | |
* the ``_Atomic space'' one is not. |