This commit is contained in:
The Ghost of FOSS' Past 2024-12-12 08:47:04 +00:00
parent fd55528aa2
commit 4c2bc70d65

7
bk4.sh
View file

@ -17,8 +17,10 @@ page_number=1
# Loop to search through pages
while true; do
echo searching... page $page_number out of a shit ton
echo $page_number > last_progress.txt
# Fetch the page content
page_content=$(curl -s "https://privatekeyfinder.io/private-keys/bitcoin/$page_number")
page_content=$(curl "https://privatekeyfinder.io/private-keys/bitcoin/$page_number")
# Check if the target address is in the page content
if echo "$page_content" | grep -q "$target_address"; then
@ -30,4 +32,5 @@ while true; do
# Increment page number for next iteration
((page_number++))
done
sleep $((RANDOM % 5))
done