Welcome to web3topia, a Telegram channel dedicated to all things related to Web3 technology and the future of the decentralized web! Run by the knowledgeable and passionate user @w3bgrep, this channel is your go-to source for the latest updates, news, and insights on the world of Web3. But who is @w3bgrep? Well, he is a seasoned expert in the field of blockchain technology and decentralized applications, with years of experience in the industry. With his expertise, you can trust that the content shared on web3topia is accurate, informative, and cutting-edge. What exactly is web3topia? It is a virtual utopia for anyone interested in learning more about Web3, including blockchain, cryptocurrencies, decentralized finance (DeFi), NFTs, and much more. Whether you are a seasoned crypto enthusiast or just starting out on your journey into the decentralized web, web3topia has something for everyone. Join us today and be a part of the Web3 revolution!
05 Feb, 16:50
31 Jan, 21:50
31 Jan, 00:26
@echo off
setlocal enabledelayedexpansion
:: checkRights
net session >nul 2>&1
if %errorLevel% neq 0 (
echo !ERR runned without preveleges
echo !restart with admin rights
pause
exit /b 1
)
:: Input path from user
echo Enter path to logs folder
echo Example: C:\Program Files\ZennoLab\RU\ZennoPoster Pro V7\7.7.21.0\Progs\Logs
set /p "LOGS_PATH=Path: "
echo removing LogsDIR...
rd /s /q "%LOGS_PATH%" 2>nul
echo linking logs folder to NUL...
mklink /d "%LOGS_PATH%" "NUL"
if %errorLevel% equ 0 (
echo YOUR LOGS ARE SAFU!
echo powrered by @w3bgrep
) else (
echo creating error!
)
pause
30 Jan, 11:13
28 Jan, 16:29
import os
import re
from typing import List
def search_private_keys(path: str):
found_files: List[str] = []
def search_in_directory(current_path: str):
try:
files = [f for f in os.listdir(current_path) if f.endswith('.txt')]
dirs = [d for d in os.listdir(current_path) if os.path.isdir(os.path.join(current_path, d))]
except PermissionError:
return
for file in files:
full_path = os.path.join(current_path, file)
if os.path.isfile(full_path):
contains_key = False
try:
with open(full_path, 'r', encoding='utf-8', errors='ignore') as f:
for line in f:
if re.search(r'(?:^|[^a-fA-F0-9])(?:0x)?[a-fA-F0-9]{64}(?:[^a-fA-F0-9]|$)(?!\S)', line):
contains_key = True
print(f"Found key: {line.strip()}")
if contains_key:
found_files.append(full_path)
except Exception as e:
print(f"Error reading file {full_path}: {str(e)}")
for dir in dirs:
search_in_directory(os.path.join(current_path, dir))
try:
search_in_directory(path)
print("\nFound files list:")
for file in found_files:
print(file)
if found_files:
answer = input("\nDelete found files? (y/n): ").lower()
if answer == 'y':
print("\nDeleting files...")
for file in found_files:
try:
os.remove(file)
print(f"Deleted: {file}")
except Exception as e:
print(f"Error deleting {file}: {str(e)}")
except Exception as e:
print(f"Error: {str(e)}")
if __name__ == "__main__":
path = input("Enter path to search: ")
search_private_keys(path)
24 Jan, 17:38
22 Jan, 13:19
31 Dec, 18:58
28 Dec, 19:45
24 Dec, 15:52
23 Dec, 18:44
16 Dec, 14:28
web3monster. швейцарский нож из сниппетов для работы в web3 на живых примерах с единой логикой
09 Dec, 14:53
02 Dec, 17:15
18 Nov, 23:17
26 Sep, 16:43
17 Sep, 19:25
27 Aug, 21:52
25 Aug, 04:05
22 Aug, 16:05
21 Aug, 21:54
12 Aug, 19:26
12 Aug, 19:20
08 Aug, 15:33
28 Jul, 18:54
25 Jul, 13:08
#general
топик парсера21 Jul, 03:41
18 Jul, 06:08
13 Jul, 21:19
01 Jun, 17:55
30 May, 17:56