This file contains 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
/** | |
* Cryptography Functions | |
* | |
* Forked from AndiDittrich/AesUtil.js | |
* https://gist.github.com/AndiDittrich/4629e7db04819244e843 | |
*/ | |
import crypto, { CipherGCM, CipherGCMTypes, DecipherGCM } from 'crypto'; | |
import { Password } from './types'; |
This file contains 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('express-async-errors') | |
const http = require('http') | |
const bodyParser = require('body-parser') | |
const errorhandler = require('errorhandler') | |
const app = require('express')() | |
app.use(bodyParser.urlencoded({ extended: false })).use(bodyParser.json()) | |
app.set('trust proxy', true) |
This file contains 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
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"io" | |
"log" | |
"net/http" | |
"os" |
This file contains 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
'use strict'; | |
const crypto = require('crypto'); | |
const ENCRYPTION_KEY = process.env.ENCRYPTION_KEY; // Must be 256 bits (32 characters) | |
const IV_LENGTH = 16; // For AES, this is always 16 | |
function encrypt(text) { | |
let iv = crypto.randomBytes(IV_LENGTH); | |
let cipher = crypto.createCipheriv('aes-256-cbc', Buffer.from(ENCRYPTION_KEY), iv); |
This file contains 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 body = new FormData(); | |
body.append('URLz', prompt('link:')); | |
await fetch('https://fbdown.net/download.php', { | |
method: 'post', | |
body: body | |
}).then(a => a.text()).then(a => new DOMParser().parseFromString(a, 'text/html').getElementById('hdlink').href); |
This file contains 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
{ | |
"timeStamp": 1562476409396, | |
"version": "1.20.0", | |
"userSettings": { | |
"advancedUserEnabled": true, | |
"alwaysDetachLogger": false, | |
"autoUpdate": true, | |
"cloudStorageEnabled": false, | |
"collapseBlocked": true, | |
"colorBlindFriendly": false, |
This file contains 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
Show hidden characters
{ | |
"extends": "react-app", | |
"rules": { | |
"arrow-parens": "off", | |
"comma-dangle": ["error", "never"], | |
"implicit-arrow-linebreak": "off", | |
"import/no-cycle": 0, | |
"import/order": ["error", {"newlines-between": "always"}], | |
"import/prefer-default-export": 0, | |
"indent": "off", |
This file contains 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 sh | |
# Change this | |
KEYSTORE_FILE=dest_keystore | |
KEYSTORE_PASS=changeit | |
import_cert() { | |
local HOST=$1 | |
local PORT=$2 |
This file contains 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
// Get and print all unique links that start with http://ul.to | |
// Inspect a container element (which contains you links) then execute this script on the Console | |
document.write([...new Set(Array.from($0.querySelectorAll('a[href^="http://ul.to"]'), a => a.href))].join('<br>')) |
This file contains 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
http://mp3.chiasenhac.vn/mp3/vietnam/v-rap-hiphop/gucci-store-mickey-valen-remix~madalen-duke~tsvrd7mtqamt8f.html | |
http://mp3.chiasenhac.vn/mp3/us-uk/us-pop/close-to-you~klaas~tsvb3dc3qqwmvw.html | |
http://mp3.chiasenhac.vn/mp3/us-uk/us-dance-remix/where-you-at-extended-mix~klaas~tsvtd76tqfmtkf.html | |
http://chiasenhac.vn/nghe-album/time-flies~pade-murat-salman~tsvrd7v7qamt2t.html | |
http://mp3.chiasenhac.vn/mp3/beat-playback/us-instrumental/resurection-in-space~klaas-niels-van-gogh~tsvqwvm3qe928w.html | |
http://chiasenhac.vn/nghe-album/high-hopes-don-diablo-remix~panic-at-the-disco~tsvrd7v6qamt2k.html | |
http://chiasenhac.vn/nghe-album/lets-get-this-thing-started~john-christian~tsvrd7vmqamt28.html | |
http://mp3.chiasenhac.vn/mp3/us-uk/us-dance-remix/the-way-klaas-vip-mix~klass~ts3zrtsqq1af4e.html | |
http://mp3.chiasenhac.vn/mp3/us-uk/us-dance-remix/touch-your-body~deamn~tsvrd7tbqamtfq.html | |
http://mp3.chiasenhac.vn/mp3/us-uk/us-dance-remix/party-like-were-animals-extended-mix~klaas~ts3zqzq7q1e1et.html |
NewerOlder