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 <stdio.h> | |
| int sum(int, int, int, int); | |
| int main(int argc, char **argv) | |
| { | |
| int result = 0; | |
| result = sum(1,2,3,4); | |
| printf("The sum is: %d\n", result); |
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
| <html> | |
| <title>IE SafeMode</title> | |
| <script language="vbscript"> | |
| Set obj = CreateObject("Shell.Application") | |
| obj.ShellExecute("calc.exe"); | |
| </script> | |
| </html> |
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 | |
| from z3 import * | |
| # Solution for Friedrich's Christmas Hangover Challenge for X-MAS CTF 2018 | |
| s = Solver() | |
| i1 = Int('i1') | |
| i2 = Int('i2') |
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
| from pwn import * | |
| from z3 import * | |
| import re | |
| import time | |
| def get_solution(diff): | |
| print diff | |
| s = Solver() | |
| a = Int('a') |
OlderNewer