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
QmcLto5gcLbRJrEu9SvFGfknSshpHxx4aaN9mQbYghYLhM | |
QmYxTdUeU8txxdHUVuSTnTjqDFSPdgX5Vd4bcrvK5NByBT | |
{ | |
'ipfs.io': { status: 200, cache: 'HIT', size: 758774 }, | |
'bifrost-gateway.ipfs.io': { status: 200, cache: 'MISS', size: 758774 }, | |
'strn.pl': { status: 200, cache: 'HIT', size: 524635 } | |
} | |
QmeGMJhecHs4ofeFLiJJcmcE3L3oFU3tAniPg9Wn3rXQAA | |
QmQpgjjcjXvVxbTm4FUPRa8uCsdE8S13uRiEEK3Vd5xadr | |
QmSMfezQBV3Wy8jNJFMZzuo13uJdL4S8VxW1nfV7ZBHoyq |
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
openssl ecparam -name prime256v1 -genkey -noout -out local.key | |
openssl req -new -sha256 -key local.key -out local.csr | |
openssl x509 -req -days 365 -sha256 -in local.csr -signkey local.key -out local.crt |
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
while true; do curl 'https://universidaddelosandescolombiasitiooficit.weebly.com/ajax/apps/formSubmitAjax.php' -H 'Cookie: is_mobile=0; language=en; _sp_ses.bbff=*; _sp_id.bbff=c58acf4a-4efd-461e-8688-35347b6f14c1.1518985095.1.1518985095.1518985095.df4993fe-1961-4bb3-bfcd-dd126dc03aa0; _snow_ses.3e19=*; _snow_id.3e19=bc090992-8ec3-4d38-90be-ba5b828310d8.1518985096.1.1518985096.1518985096.bc217089-a574-4464-9168-464ddd36d956' -H 'Origin: https://universidaddelosandescolombiasitiooficit.weebly.com' -H 'Accept-Encoding: gzip, deflate, br' -H 'Accept-Language: en-US,en;q=0.9,es-419;q=0.8,es;q=0.7,gl;q=0.6' -H 'Upgrade-Insecure-Requests: 1' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36' -H 'Content-Type: multipart/form-data; boundary=----WebKitFormBoundarytBrHV2SBWeP6VtIJ' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' -H 'Cache-Control: max-age=0' -H 'Referer: https://uni |
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
module.exports = debug => | |
fn => | |
(req, res, next) => | |
fn(req, res, next) | |
.catch(e => { | |
e.status = e.status || 400 | |
e.debug = debug | |
next(e) | |
}) |
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 calificacion = 4 // Cambiar por el valor deseado {1,2,3,4} | |
for(let i = 1; i <=33; i++) { if(i === 17) continue; $(`input[value="${i}-${calificacion}"]`).click() } |
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
apt-get update && apt-get upgrade | |
# Latest LTS NodeJS Repo | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
# Latest nginx repo | |
echo "deb http://nginx.org/packages/ubuntu/ xenial nginx" >> /etc/apt/sources.list.d/nginx.list | |
echo "deb-src http://nginx.org/packages/ubuntu/ xenial nginx" >> /etc/apt/sources.list.d/nginx.list | |
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ABF5BD827BD9BF62 |
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
System Info | |
----------- | |
Processor : Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz | |
CPU Cores : 4 | |
Frequency : 3600.013 MHz | |
Memory : 4096 MB | |
Swap : MB | |
Uptime : 1 day, 12:12, | |
OS : Ubuntu 16.04.1 LTS |
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
require('ws') // before | |
require('uws') // after |
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> | |
<body> | |
<script src="https://cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script> | |
<script> | |
var client = new WebTorrent() | |
client.add('https://webseed.btorrent.xyz/juanpabloaj/other-page.torrent', function (torrent) { | |
// Got torrent metadata! | |
console.log('Client is downloading:', torrent.infoHash) | |
torrent.files[0].getBlobURL(function(err, url) { | |
if (err) return console.log(err) |
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> | |
<body> | |
<script src="https://cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script> | |
<script> | |
var client = new WebTorrent() | |
client.add('https://webseed.btorrent.xyz/timedrift-alpine-4k-timelapse.mp4.torrent', function (torrent) { | |
// Got torrent metadata! | |
console.log('Client is downloading:', torrent.infoHash) |
NewerOlder