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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"> | |
| <script src="http://cmx.io/v/0.1/cmx.js" charset="utf-8"></script> | |
| <style>.cmx-user-scene4 .cmx-text-border .cmx-path {stroke: orange}</style> | |
| <body> | |
| <div style="max-width:1500px; -webkit-transform:rotate(0deg)"> | |
| <scene id="scene2"> | |
| <drawing t="translate(0,31)"> |
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
| # Demangle swift function names | |
| # A script can be easily created in the Script Manager window | |
| # Make sure https://github.com/luser/rustfilt is installed on your system | |
| #@author Daniel Lim | |
| #@category Demangler.Rust | |
| #@keybinding | |
| #@menupath | |
| #@toolbar |
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
| document.write("<script>alert(1)</script>"); |
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
| ok can |
Use Ctrl+F with relevant tag to find
pickle blacklist php IIS ret2dlresolve seccomp CSS Injection vsyscall LFSR uaf Angular SSTI anti-debugging aes-ctr weak keys
FORTIFY stack smashing message leak
vsyscall HITBGSEC 2017 - 1000 levels
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
| # Macros ======================================== | |
| CC=g++ | |
| CFLAGS=-Wall -Wextra -Werror -std=c++11 -pedantic | |
| OBJECTS=insert.objects | |
| EXE=insert.exe.name | |
| ERASE=rm | |
| MAKE=make | |
| # Targets ======================================== |
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 <memory> | |
| template <typename T> | |
| class ValueGetter { | |
| public: | |
| explicit ValueGetter(const T& value) : m_value{value} { | |
| } | |
| const T& get() const { | |
| return m_value; |
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/sh | |
| if [ ! -f $1 ]; then | |
| echo "$1 not found!" | |
| exit | |
| fi | |
| tmux new-session -d 'vim exploit.py' | |
| tmux split-window -h | |
| tmux split-window -v 'vim notes' | |
| tmux new-window gdb $1 | |
| tmux new-window r2 -A $1 |
NewerOlder