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
:12 | |
体重が2kgた型は次のにか、仕事のナイフあ調べる | |
:searc-help | |
ls -al :recent | |
:recent filter.cild | |
:recent filter=""nosumit_ | |
:recent | |
n | |
:exit |
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
Access granted to readfile.php!<br><br><?php<br /> | |
$filename = $_GET["filename"];<br /> | |
$accesscode = $_GET["accesscode"];<br /> | |
if (md5($filename) == $accesscode){<br /> | |
echo "Access granted to $filename!<br><br>";<br /> | |
srand($value);<br /> | |
if (in_array($filename, array('readfile.php', 'index.php', 'pass.txt', 'id.txt'))==TRUE){<br /> | |
$data = file_get_contents($filename);<br /> | |
if ($data !== FALSE) {<br /> | |
echo nl2br($data);<br /> |
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
// run this at http://vuln1.quals.ructf.org/saper/www/ | |
// https://github.com/timjb/minesweeper-solver/blob/gh-pages/solver.js | |
var MineSweeper = (function () { | |
function repeat (el, times) { | |
var arr = []; | |
for (var i = 0; i < times; i++) { | |
arr[i] = el; | |
} | |
return arr; |
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
0000000: 424d 3a0a 2f2f 0000 0000 3604 0000 2800 BM:.//....6...(. | |
0000010: 0000 0100 0000 0100 0000 0100 0800 0000 ................ | |
0000020: 0000 0000 0000 0000 0000 0000 0000 0000 ................ | |
0000030: 0000 0000 0000 0000 0000 0000 8000 0080 ................ | |
0000040: 0000 0080 8000 8000 0000 8000 8000 8080 ................ | |
0000050: 0000 c0c0 c000 8080 8000 0000 ff00 00ff ................ | |
0000060: 0000 00ff ff00 ff00 0000 ff00 ff00 ffff ................ | |
0000070: 0000 ffff ff00 0000 0000 0000 0000 0000 ................ | |
0000080: 0000 0000 0000 0000 0000 0000 0000 0000 ................ | |
0000090: 0000 0000 0000 0000 0000 0000 0000 0000 ................ |
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
var reg = /^\w/y; | |
reg.exec('xyz'); // => x | |
reg.exec('xyz'); // => y | |
reg.exec('xyz'); // => z | |
reg.exec('xyz'); // => null | |
reg.exec('xyz'); // => x | |
reg.lastIndex = 2; | |
reg.exec('xyz'); // => z |
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
409c409 | |
< TD.buildID = "23c4e3847adeb9802cbbb07473a565e4c3e2bd1a", TD.buildIDShort = "23c4e38", TD.version = "3.7.2", TD.config = { | |
--- | |
> TD.buildID = "19002e5b5af908182db93fdec359a49551b6c6b0", TD.buildIDShort = "19002e5", TD.version = "3.7.1", TD.config = { | |
417,418d416 | |
< app_name: "TweetDeck by Twitter", | |
< app_icon: "web/assets/logos/128.png", | |
4320c4318 | |
< return exposed.latestFeatherId = 19, exposed.loadFeathers = function (isRetry) { | |
--- |
This file has been truncated, but you can view the full file.
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
function ScribeTransport(e) { | |
this.SESSION_BUFFER_KEY = "ScribeTransport", this.SCRIBE_API_ENDPOINT = "/i/jot", this.options = {}, e && (this.updateOptions(e), this.registerEventHandlers(e)) | |
} | |
function ClientEvent(e) { | |
this.scribeContext = {}, this.scribeData = {}, this.scribe = function (t, i) { | |
var n = e || window.scribeTransport; | |
if (!n) throw new Error("You must create a global scribeTransport variable or pass one into this constructor."); | |
if (!t || "object" != typeof t || i && "object" != typeof i) throw new Error("Invalid terms or data hash argument when calling ClientEvent.scribe()."); | |
if (this.scribeContext) { |
This file has been truncated, but you can view the full file.
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
function ScribeTransport(e) { | |
this.SESSION_BUFFER_KEY = "ScribeTransport", this.SCRIBE_API_ENDPOINT = "/i/jot", this.options = {}, e && (this.updateOptions(e), this.registerEventHandlers(e)) | |
} | |
function ClientEvent(e) { | |
this.scribeContext = {}, this.scribeData = {}, this.scribe = function (t, i) { | |
var n = e || window.scribeTransport; | |
if (!n) throw new Error("You must create a global scribeTransport variable or pass one into this constructor."); | |
if (!t || "object" != typeof t || i && "object" != typeof i) throw new Error("Invalid terms or data hash argument when calling ClientEvent.scribe()."); | |
if (this.scribeContext) { |
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
var a = {prime: 1}; | |
var b = {nonprime: 2, prime: 3}; | |
var c = {nonprime: 4, prime: 5, hoge: 6}; | |
var d = Object.assign(a, b, c); | |
console.log(a); | |
console.log(b); | |
console.log(c); | |
console.log(d); |
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 cats = { | |
'@@iterator': function () { | |
let names = Object.keys(this), i = 0 | |
return { | |
next: () => i < names.length ? { value: names[i++] } : { done: true } | |
} | |
}, | |
a: 1, | |
b: 2, | |
c: 3, |