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
| 1449130208829 |
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
| ret2usr | |
| https://tc.gtisc.gatech.edu/bss/2014/r/ret2dir-slides.pdf | |
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
| http://securityintelligence.com/memgc-use-after-free-exploit-mitigation-in-edge-and-ie-on-windows-10/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+SecurityIntelligence+%28Security+Intelligence%29 | |
| http://blogs.technet.com/b/srd/archive/2016/01/12/triaging-the-exploitability-of-ie-edge-crashes.aspx | |
| http://expdev-kiuhnm.rhcloud.com/2015/05/19/mona-2/ | |
| https://www.corelan.be/index.php/2014/08/16/analyzing-heap-objects-with-mona-py/ | |
| https://www.corelan.be/index.php/2013/01/18/heap-layout-visualization-with-mona-py-and-windbg/ | |
| https://www.corelan.be/index.php/2011/07/14/mona-py-the-manual/ |
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
| https://drive.google.com/file/d/0B9Cw8k5__G16c05aeG81QjVRRlk/view?pref=2&pli=1 |
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
| # hotkey_utils.py - bNull | |
| # | |
| # Some useful shortcuts for binding to hotkeys. Current output/hotkeys: | |
| # | |
| # [+] Bound make_dwords to Ctrl-Alt-D | |
| # [+] Bound make_cstrings to Ctrl-Alt-A | |
| # [+] Bound make_offset to Ctrl-Alt-O | |
| import idaapi | |
| import idc |
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
| az667904.vo.msecnd.net |
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
| @ECHO OFF | |
| SETLOCAL | |
| ECHO ASLR Enable / Diable Batch Script - Please run as admin | |
| set /p Choice=Want to Enable or Disable ASLR? (e or d):%=% | |
| if "%Choice%"=="e" goto :ENABLE | |
| if "%Choice%"=="d" goto :DISABLE | |
| :ENABLE |
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
| import jeb.api.IScript; | |
| import jeb.api.JebInstance; | |
| import jeb.api.ast.*; | |
| import jeb.api.ast.Class; | |
| import jeb.api.dex.*; | |
| import jeb.api.ui.JavaView; | |
| import jeb.api.ui.View; | |
| import java.util.Arrays; | |
| import java.util.HashMap; |
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
| http://phrack.org/issues/64/6.html | |
| https://loccs.sjtu.edu.cn/~romangol/download/papers/gossip_ccs2015.pdf | |
| http://resources.infosecinstitute.com/exploiting-linux-kernel-heap-corruptions-slub-allocator/ | |
| http://www.slideshare.net/nullthreat/fund-linux-priv-esc-wprotections | |
| http://www.slideshare.net/sciosecurity/linux-kernel-exploitation | |
| http://events.linuxfoundation.org/sites/events/files/slides/slaballocators.pdf | |
| https://github.com/xairy/kaslr-bypass-via-prefetch | |
| http://www.jikos.cz/jikos/Kmalloc_Internals.html | |
| https://github.com/Fuzion24/AndroidKernelExploitationPlayground | |
| http://dcjtech.info/topic/linux-kernel-slab-allocators/ |
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
| public bool VerifyLicense(string licenseKey, string email) | |
| { | |
| if (string.IsNullOrEmpty(licenseKey) || string.IsNullOrEmpty(email)) | |
| { | |
| return false; | |
| } | |
| try | |
| { | |
| this.License = this.Decrypt(licenseKey); | |
| this.LicenseProcessed = true; |