Skip to content

Instantly share code, notes, and snippets.

View Pymmdrza's full-sized avatar
M M D R Z A . C o M

MMDRZA Pymmdrza

M M D R Z A . C o M
View GitHub Profile
@Pymmdrza
Pymmdrza / reader.py
Last active February 26, 2024 17:58
readfile class in pyqt5 with QThread
from PyQt5.QtCore import QThread, pyqtSignal
class FileReader(QThread):
data_read = pyqtSignal(str)
def __init__(self, filename):
super().__init__()
self.filename = filename
def run(self):
@Pymmdrza
Pymmdrza / Blockbook.sh
Last active February 28, 2024 16:54
Blockbook Install in Debian Auto install Bitcoin Explorer
fallocate -l 16G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
echo “/swapfile swap swap sw 0 0” >> /etc/fstab
sysctl vm.swappiness=12&&echo “vm.swappiness = 12” >> /etc/sysctl.conf
# // Install Package's and Set Repo
apt-get install build-essential libssl-dev libboost-all-dev libdb5.3 libdb5.3-dev libdb5.3++-dev ufw libtool automake libevent-dev bsdmainutils git ntp make g++ gcc autoconf cpp ngrep iftop sysstat autotools-dev pkg-config libminiupnpc-dev libzmq3-dev apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
# // Install Auto Docker and Set
curl -s https://download.docker.com/linux/debian/gpg | apt-key add && add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
@Pymmdrza
Pymmdrza / bip39.txt
Created February 18, 2024 10:19
bip39 standard english word's
abandon
ability
able
about
above
absent
absorb
abstract
absurd
abuse
@Pymmdrza
Pymmdrza / Mnemonic_BIP39_Dumper.py
Last active February 18, 2024 13:59
Generated and Check Mnemonic Random Without Repeat from All BIP39 Word for Ethereum, BNB and Dogecoin Address Wallet
# // First Install Python Libraries //
# // pip install requests colorthon cryptofuzz //
# // Import Libraries //
import random, requests, time, os, sys
from cryptofuzz import Ethereum, Dogecoin, Convertor
from colorthon import Colors
# // terminal title changed all os
def titler(text_title: str):
@Pymmdrza
Pymmdrza / Search_Replace_All_Table.sql
Created February 4, 2024 20:21
SQL Search and Replace Word in Database
SET SESSION group_concat_max_len = 1000000;
SELECT CONCAT('UPDATE ', table_name, ' SET ', COLUMN_NAME, " = 'NEW_WORD' WHERE ", COLUMN_NAME, " = 'OLD_WORD';")
FROM information_schema.columns
WHERE TABLE_SCHEMA = 'DATABASE_NAME' AND COLUMN_NAME LIKE '%content%';
@Pymmdrza
Pymmdrza / Whale_Alert_V2.py
Created January 29, 2024 02:10
Whale Alert Crypto Transaction Free Script
# // Imports //
import pandas as pd
from rich import print, box
import requests, os, sys, time, random
from rich.live import Live
from rich.console import Console
from rich.table import Table
# // Variables //
url_string = "https://blockchain.info/unconfirmed-transactions?format=json"
@Pymmdrza
Pymmdrza / upload_script.sh
Created January 18, 2024 01:08
upload direct from terminal linux on ftp host
#!/bin/bash
# first update apt and install ncftp
sudo apt-get update
echo "Install ncftp ..."
sudo apt-get install ncftp
echo "Complete installed ."
ftp_ip="FTP_IP_SERVER"
ftp_host_name="ftp://FTP_HOSTNAME"
@Pymmdrza
Pymmdrza / whale_Alert.py
Created January 15, 2024 15:59
Whale Alert Transaction Detail's Python Script Without API [Free]
# / programmer Website: Mmdrza.Com
# / github.com/Pymmdrza
# / --------------------------------
# / pip install colorthon pandas requests
# / --------------------------------
import pandas as pd
import requests, time, io
from datetime import datetime
from colorthon import Colors
@Pymmdrza
Pymmdrza / dorks.md
Created October 24, 2023 15:55
Google Dork

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@Pymmdrza
Pymmdrza / CryptoFuzz_Compress_Uncompress.py
Created October 20, 2023 15:03
Batch Check Compressed and Uncompressed Bitcoin Address From Seed (Bytes)
# programmer and Owner : Mmdrza.Com / github.com/Pymmdrza
# Cryptofuzz Document : Github.Com/Pymmdrza/cryptoFuzz
# --------------------------------------------------------
# pip install cryptofuzz
# pip install colorthon
# --------------------------------------------------------
import os
from cryptofuzz import Convertor
from colorthon import Colors