Skip to content

Instantly share code, notes, and snippets.

View itsmeadarsh2008's full-sized avatar
📀
GOLD RECORD Playing.

Adarsh Gourab Mahalik itsmeadarsh2008

📀
GOLD RECORD Playing.
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"type": "object",
"properties": {
"_ask": { "type": "string" },
"value": {},
"_description": { "type": "string" }
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import requests
from colorama import Fore, Style
import threading
# Function to send a single request to the specified URL
def send_request(url):
try:
response = requests.get(url)
if response.status_code == 200:
print(f"{Fore.GREEN}[SUCCESS]{Style.RESET_ALL} Request to {url} successful")
@itsmeadarsh2008
itsmeadarsh2008 / btc_brute_force.py
Last active May 24, 2023 06:07
A heavy brute-forcing script to find forgotten wallets of BTC. (B39 Phrase)
import itertools
import requests
import threading
import listbip39
# Define the list of words to use in the seed phrase
words = listbip39.array
# Define the number of words in the seed phrase
num_words = 12
./xmrig -o monerohash.com:9999 -u 44FRDCj7pMUYAsFcWWckXM3dhHF9qhdCLgCTsB9gvWkxQSWJy3XQjJCcGDpezbcfSBaeqzxfcZT2BMamFTZADZ6ELyNw7me -k --tls
@itsmeadarsh2008
itsmeadarsh2008 / win32.ps1
Created October 9, 2022 13:22
A text-to-speech conversion using Powershell. Use ./win32.ps1 <text> <rate>
param(
[Parameter()]
[String]$text,
[Int]$rate
)
Add-Type -AssemblyName System.speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SpeakSsml(($text))
$speak.Rate = $rate
¶¶¶
¶¶¶¶
¶¶¶¶
¶¶¶¶¶¶
¶¶¶¶¶¶ ¶¶¶ ¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.