Weberver_ice.py狩猎比特币地址,从1、3和BC1和ETH开始。新的BloomFilter,用于更快的数据库加载和搜索。包括自动数据库更新。
Weberver_4.9.1.Py狩猎比特币。只是从1开始地址
包括自动随机和自动顺序。不需要篡改猴子。惊人的程序。
search field added. To use:(paste and remove focus by clicking)
WIF search by WIF
1878574747 search by page number
@764523535 search page by privatekey decimal
$ffff or $FFFFF search page by privatekey hex
[123] change increment
(2345-8856464646) change random range
(72057594037927937-144115188075855873) random range puzzle 64
? ?特别感谢Alex Curl的所有辛勤工作? ? ?
还要特别感谢https://github.com/evgenyunholy/unholymegabrut有关更多想法和bloomfilter文件查看他的github以获取数据库。 https://mega.nz/folder/e15hgdzr#ypdx7ulcbr6rvlefm8_cia


开始?python-webserver?:
Python WebServer.py
开始在您的Web浏览器中搜索:
Localhost:3333/1(从第一页开始)
localhost:3333/1 [256](更改下一个增量)
Localhost:3333/1(100-500)(更改随机范围)
拼图64开始= 72057594037927937页面
拼图64停止= 144115188075855873页面
随机拼图64 = http:// localhost:3333/1(14411518807585873-288230376151711745)(更改随机范围)
wif搜索= http:// localhost:3333/l3vvppphkahdq7s3dqovzyxxlffx96o4nnfgaggpgpgpgzyjxvw2fx4xvvvvvvvv
或http:// localhost:3333/5HPHAGT65TZZG1PH3CSU64HCGH19CVFZQ1PFA44R8FXZRQAAEFE
DEC搜索= http:// localhost:3333/7382487328797973477289749872
或dec搜索和亮点找到http:// localhost:3333/@73824873287973477289749872
十六进制搜索和突出显示= http:// localhost:3333/$ fffffffffff
或http:// localhost:3333/$ fffff

1100001011011110000110000011100000000000011111110111001001110001101001010010111101100000011110000000110100000101010011010111001110001011110101110101110101011111000101100111101011111011000001111011010001111110010110110101010000011001111000011111111100001111
(256 bits)
c2de1838007f7271a52f60780d054d738bd75d5f167afb07b47e5b5419e1ff0f
88141099825256245673553921999835541760225970015052508404838443368591216738063
Public ECDSA Key
x: 4774b0a2ac0b325e5ab7d4687b2a63c7540d2655dccab35f72c201da1149f68e
y: 9be0b93c52e19c16b95edd82fd009b8ce5a3840b23a9f720838c29486765a493
x: 32320385601912921618066559609108982423772771673443867077080816380047029565070
y: 70505543722316022944178389399213156382852026814587996716514675175858874197139
x: 034774b0a2ac0b325e5ab7d4687b2a63c7540d2655dccab35f72c201da1149f68e
Additive Inverse Point
3d21e7c7ff808d8e5ad09f87f2fab28b2ed77f8798cda5340b540338b6544232
x: 4774b0a2ac0b325e5ab7d4687b2a63c7540d2655dccab35f72c201da1149f68e
y: 641f46c3ad1e63e946a1227d02ff64731a5c7bf4dc5608df7c73d6b6989a579c
B:No U: 1M3Wfm1qnyuZgKM5b4QBVUtro6KeVqgoLi C: 19xbDGGGuqCyBcGTEbvZu16DinJqdjMHZ7
Two More Points same Y different X
x: 867e7fcddaca8b7f9f85a77c0cf81d02d5bd8066f07b318fe0d1f1e9ca29a01e
y: 9be0b93c52e19c16b95edd82fd009b8ce5a3840b23a9f720838c29486765a493
B:No U: 1KxCXLZsDoTxhUhAFzxAb4dq1vooj1Zi1d C: 1Avd9PfFq248v2M7MMSbXxNhfJhTY32ssN
x: 320ccf8f792a422205c2841b77dd7f35d635594332ba1b10ac6c0c3b248c6583
y: 9be0b93c52e19c16b95edd82fd009b8ce5a3840b23a9f720838c29486765a493
B:No U: 1M2oE13jszzS6twUSBxotktgy8jWbbrSVm C: 13q8qmXFYSeJqLqemFYyK3z7zwUtb78Uom
RIPEMD-160 Hash
U: 664f5c265188f85ba8b0e80b6c946a586d8b0663 C: 444c2585216c5e469ac860ad7dde21e8cbc58a55
对于较旧的websever.py版本。这包括启动3 BC1和ETH的地址。

// ==UserScript==
// @name Reload Server
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Reload the Server, find the Key
// @author AlphaCentury
// @match http://localhost:3333/*
// @grant none
// ==/UserScript==
/* global BigInt */
(function() {
console.log('Go');
let val = 0n;
while (val < 1n || val > 904625697166532776746648320380374280100293470930272690489102837043110636674n) {
let num = '';
for (let i = 0; i < 75; i++) {
num += Math.floor(Math.random() * 10);
}
val = BigInt(num);
}
setTimeout(function() {
if (document.getElementsByClassName('filled').length !== 0 || document.getElementsByClassName('used').length !== 0) {
alert('Address found!');
return;
};
document.location.href = val.toString();
},50);
})();
// ==UserScript==
// @name Bitcoin Highlighter All Sites
// @namespace https://mizogg.co.uk
// @author mizogg.co.uk
// @version 1.0
// @description Highlights BTC Addresses
// @match https://*
// @grant GM_registerMenuCommand
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==
(function() {
'use strict';
if (window.self !== window.top) { return; }
function setUserPref(varName, defaultVal, menuText, promtText, sep){
GM_registerMenuCommand(menuText, function() {
var val = prompt(promtText, GM_getValue(varName, defaultVal));
if (val === null) { return; }
if (sep && val){
var pat1 = new RegExp('\s*' + sep + '+\s*', 'g');
var pat2 = new RegExp('(?:^' + sep + '+|' + sep + '+$)', 'g');
val = val.replace(pat1, sep).replace(pat2, '');
}
val = val.replace(/s{2,}/g, ' ').trim();
GM_setValue(varName, val);
if(!document.body.querySelector(".THmo")) THmo_doHighlight(document.body);
else location.reload();
});
}
setUserPref(
'keywords',
'word 1,word 2,word 3',
'Set Keywords',
'Set keywords separated by commatttttttrnrnExample:rnword 1,word 2,word 3',
','
);
setUserPref(
'highlightStyle',
'color: #f00; background-color: #ffebcd;',
'Set Highlight Style',
'Set the Highlight Style (use proper CSS)rnrnExample:rncolor: #f00; font-weight: bold; background-color: #ffe4b5;'
);
var THmo_MutOb = (window.MutationObserver) ? window.MutationObserver : window.WebKitMutationObserver;
if (THmo_MutOb){
var THmo_chgMon = new THmo_MutOb(function(mutationSet){
mutationSet.forEach(function(mutation){
for (var i=0; i<mutation.addedNodes.length; i++){
if (mutation.addedNodes[i].nodeType == 1){
THmo_doHighlight(mutation.addedNodes[i]);
}
}
});
});
var opts = {childList: true, subtree: true};
THmo_chgMon.observe(document.body, opts);
}
function THmo_doHighlight(el){
var keywords = GM_getValue('keywords');
if(!keywords) { return; }
var highlightStyle = GM_getValue('highlightStyle');
if (!highlightStyle) highlightStyle = "color:#00f; font-weight:bold; background-color: #0f0;"
var rQuantifiers = /[-/\^$*+?.()|[]{}]/g;
keywords = keywords.replace(rQuantifiers, '\$&').split(',').join('|');
var pat = new RegExp('(' + keywords + ')', 'gi');
var span = document.createElement('span');
var snapElements = document.evaluate(
'.//text()[normalize-space() != "" ' +
'and not(ancestor::style) ' +
'and not(ancestor::script) ' +
'and not(ancestor::textarea) ' +
'and not(ancestor::code) ' +
'and not(ancestor::pre)]',
el, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
if (!snapElements.snapshotItem(0)) { return; }
for (var i = 0, len = snapElements.snapshotLength; i < len; i++) {
var node = snapElements.snapshotItem(i);
if (pat.test(node.nodeValue)) {
if (node.className != "THmo" && node.parentNode.className != "THmo"){
var sp = span.cloneNode(true);
sp.innerHTML = node.nodeValue.replace(pat, '<span style="' + highlightStyle + '" class="THmo">$1</span>');
node.parentNode.replaceChild(sp, node);
alert("NICE ONE BITCOINS FOUND!!!!!")
}
}
}
}
THmo_doHighlight(document.body);
})();
在电报https://t.me/teamhunter_gui上找到更多像我这样的加入