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
import { randomUUID } from "crypto"; | |
import { promisify } from "util"; | |
import zlib from "zlib"; | |
import fetch from "node-fetch"; | |
const gunzip = promisify(zlib.gunzip); | |
const inflate = promisify(zlib.inflate); | |
const brotli = promisify(zlib.brotliDecompress); |
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
const crypto = require("crypto"); | |
const axios = require("axios"); | |
class savetube { | |
constructor() { | |
this.ky = "C5D58EF67A7584E4A29F6C35BBC4EB12"; | |
this.hr = { | |
"content-type": "application/json", | |
origin: "https://yt.savetube.me", | |
"user-agent": |
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
import qs from 'querystring'; | |
const BASE_URL = 'https://steptodown.com'; | |
async function getToken() { | |
try { | |
const res = await fetch(`${BASE_URL}/pinterest-video-downloader/`, { |
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
const yt = { | |
get baseUrl() { | |
return { origin: 'https://ssvid.net' }; | |
}, | |
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
const axios = require("axios"); | |
const cheerio = require("cheerio"); | |
async function tthashtags(query) { | |
try { | |
if (!query) throw new Error("Query is required"); | |
const { data } = await axios.get( | |
`https://tiktokhashtags.com/hashtag/${query |
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
package main | |
import "fmt" | |
func main() { | |
fmt.Println("Hewo Worlt") | |
} |
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
import axios from 'axios' | |
import FormData from 'form-data' | |
import fs from 'fs' | |
const colorifyai = { | |
baseHeaders: { | |
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36', | |
'Accept': 'application/json, text/plain, */*', | |
'Accept-Encoding': 'gzip, deflate, br, zstd', | |
'sec-ch-ua-platform': '"Android"', |
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
const axios = require('axios'); | |
async function getppwa(no) { | |
try { | |
if (isNaN(no)) throw new Error('Invalid phone number'); | |
const { data } = await axios.get('https://wa-api.b-cdn.net/wa-dp/', { | |
headers: { | |
'accept': '*/*', | |
'accept-encoding': 'gzip, deflate, br', |