Bitcoin Forum
May 28, 2024, 12:07:21 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 »
1  Alternate cryptocurrencies / Altcoin Discussion / Re: 💰💰💰 Is it possible to steal Ether from a wallet? 💰💰💰 Yes! on: June 11, 2021, 06:29:30 PM
--snip--
If you have a computer farm, you don't have to wait millions of years, my friend.

Ok, i'll bite... How many keys/second are you generating...
The thing you're doing is called bruteforcing, many, many, many have written tools for this and wasted a lot of time with no hits...


Ethereum is estimated to have 100M funded addresses (https://newsletter.thedefiant.io/p/ethereum-addresses-cross-100m-thats)

So you'll have to plug in your speed into following formula
(2^160 / 100.000.000) / speed (in checks/second) = average number of seconds to find a funded address

IF your tool would ever reach vanitygen's speed (which i doubt, since it's a GPU tool written in C++, not using any external api's), it would boil down to this:
((2^160 / 100.000.000)/20.000.000)/(60*60*24*365) = 23.171.956.451.847.141.650.870.193 years on average to find 1 private key (no matter which one).

EDITED: I actually just realised that in the example i removed from this post, i was scanning the keyspace, and not the address space, which is only 2^160.

No problem, friend, no problem, I just showed the way. Many people smarter than me can improve this script or use more powerful scripts to steal funds. I just gave an example. and I don't want to prove anything to anyone.
2  Alternate cryptocurrencies / Altcoin Discussion / Re: Is it possible to steal Ether from a wallet? Yes! on: June 11, 2021, 11:07:57 AM
And now you only have to wait a gazillion years for a hit. BTW: in that time blockchain.com surely will have blocked your ip for flooding!
If you have a computer farm, you don't have to wait millions of years, my friend.



I am only carrying a warning that it is possible to hack the wallet and steal funds. And I do this in order to preserve your savings. Believe me, I'm not the only person on the planet who did this and tested it. But perhaps I am the only one who told you this and showed it.

So you shouldn't blame me for trying to keep you safe.

[moderator's note: consecutive posts merged]
3  Local / Альтернативные криптовалюты / 💰💰 Возможно ли украсть Эфир с кошелька? Да on: June 11, 2021, 10:49:17 AM
Чтобы не делать дублей, всё изложил в англ ветке.
Читаем, вникаем и делаем выводы.


https://bitcointalk.org/index.php?topic=5343206.0
4  Alternate cryptocurrencies / Altcoin Discussion / 💰💰💰 Is it possible to steal Ether from a wallet? 💰💰💰 Yes! on: June 11, 2021, 10:41:28 AM
Good afternoon, dear members of the forum and colleagues. It just so happened that I, with a cognitive purpose, using some repositories in GITHUB as well as some BASIC knowledge in python, using copy-paste from different sources, created a common script.

It works as follows: It generates a private key, using this information, it generates a wallet address, and with the help of a certain service checks whether the wallet has a balance, if there is, an html file is created, with a private key, wallet address and balance!

The project was conceived with the aim of finding out if it is possible with this method to lose your crypto savings.?!

THE USE OF THIS CODE IS PERMITTED ONLY FOR EDUCATIONAL PURPOSES! STEALING ANOTHER CRYPTOACTIVES IS A CRIME! DO NOT FORGET ABOUT IT!

Source code of the script. There are several bugs in the code. So that people cannot use its functionality to harm themselves.



Code:
import secrets
import sha3
import eth_keys
from eth_keys import keys
import requests # To install from pip
import re
import colorama
from colorama importFore,Back,Style

import ctypes
colorama.init()
kernel32 = ctypes.windll.kernel32
kernel32.SetConsoleMode(kernel32.GetStdHandle(-11),7)

x =0

while x<10:
    private_key = str(hex(secrets.randbits(256))[2:])
    private_key_bytes = bytes.fromhex(private_key)
    public_key_hex = keys.PrivateKey(private_key_bytes).public_key
    public_key_bytes = bytes.fromhex(str(public_key_hex)[2:])
    keccak256_of_public_key_bytes = sha3.keccak_256(public_key_bytes).hexdigest()
    public_address = keys.PublicKey(public_key_bytes).to_address()
    checksum = keys.Public.Key(public_key_bytes).to_checksum_address()

    print(Fore.WHITE +'\n Private_key:',private_key,
          Fore.BLUE +'\n Ethereum address:',public_address)
  
    x = x+1
    url ='https://www.blockchain.com/ru/eth/address/'+ str(public_address)
    print(Fore.YELLOW ,url)
    requests.post(url, headers={'UA':'Chrome'}, data={"foo":'bar'})
    res = requests.get(url)
  
    a = str(res.text)
    match = re.findall(r'Oкoнчaтeльный бaлaнc</span></div></div><div class="sc-8sty72-0 bFeqhe"><span class="sc-1ryi78w-0 cILyoi sc-16b9dsl-1 ZwupP u3ufsr-0 eQTRKC" opacity="1">0.00000000 ETH</span>', a)
    zz= len('Oкoнчaтeльный бaлaнc</span></div></div><div class="sc-8sty72-0 bFeqhe"><span class="sc-1ryi78w-0 cILyoi sc-16b9dsl-1 ZwupP u3ufsr-0 eQTRKC" opacity="1">')
    aaaa = str(match)
    bbbb = slice(154,168)
    xxxx = aaaa[bbbb]
    print(Fore.RED, xxxx)
  
    if len(match)==0:
        f1 = open("text1.html",'a')
        f1.write('\n <br>'+ str(private_key))
        f1.write('\n <br>'+ str(public_address)+'<br> <p style="color:red">0.00000000</p> <br>')
        f1.write('\n <br><p style="color:green">+++</p><br>')
        f1.close()
5  Economy / Scam Accusations / Re: ITETRY Invest in your Future 🔥--Plagiarism whitepaper on: June 11, 2021, 06:29:17 AM
I have nothing to do with this project, the topic is customized, I am not responsible
6  Alternate cryptocurrencies / Service Announcements (Altcoins) / 💰💰💰 NFT 💰💰💰 Kitsune (SUNE) on: June 11, 2021, 06:06:50 AM
Kitsune (SUNE)


     




Kitsune (SUNE) magic token which, if tamed, will help you.

In Japanese folklore, Kitsune , literally the Japanese word for fox) are intelligent foxes that possess paranormal abilities that increase as they get older and wiser. According to folklore, all foxes have the ability to shapeshift into human form. While some folktales speak of kitsune employing this ability to trick others – as foxes in folklore often do – other stories portray them as faithful guardians, friends, and lovers.

Foxes and humans lived close together in ancient Japan; this companionship gave rise to legends about the creatures. Kitsune have become closely associated with Inari, a Shinto kami or spirit, and serve as its messengers. This role has reinforced the fox's supernatural significance. The more tails a kitsune has – they may have as many as nine – the older, wiser, and more powerful it is. Because of their potential power and influence, some people make sacrifices to them as to a deity.












Buy on Pancake

Contract

Chart
7  Other / Off-topic / Re: Skin Maker [CS GO] ✪ ★ ☆ i can teach you ☆ ★ ✪ on: June 09, 2021, 06:39:18 PM
M4A1-S | Lady Jedi





USP-S | Night rendezvous





Ak-47 | Devoted Fan




8  Alternate cryptocurrencies / Tokens (Altcoins) / 🔥🔥🔥 ITETRY 🔥🔥🔥 Invest in your Future 🔥🔥🔥 on: June 09, 2021, 05:48:11 PM



Invest in your Future


ITETRY - is a project based on collective investment management with the aim of making a profit from the crypto market. The uniqueness of the project is that each participant can directly participate in the life of the project and regulate profits in several ways. For ease of use, the project is built on two blockchains, later we will implement a completely new solution.


The idea to create “ITETRY” project appeared from the wish to help people willing to invest in cryptocurrency but reduce their risks. Both professionals and newcomers on exchanges say that it is difficult because you are often hindered by emotion, excitement, illusion, and simply misinterpretation. Moreover, you must control practically 24/7 the flow of information (for example, to enter or exit a transaction in time) and the overall situation, as well as the political and economic environment, trends and other market processes.

The solution presented by “ITETRY” is using the general group democratic consciousness which most likely has a common sense than an individual one.  The special voting system will serve for decision on investment funds. Investors – the participants of the community - vote separately for this or that offering and finally the majority will decide. Each person will have an opportunity to see his personal rating depending on success or failure of his own individual decisions. Besides, the earlier he/she joins, the more tokens they get.

We believe that the principle of democratic decision-making will bring profit to our participants.




ITETRY token BEP-20 & ERC-20 Contract





 
9  Other / Archival / Re: 💰💰💰 NFT 💰💰💰 Kitsune (SUNE) on: June 08, 2021, 08:06:32 AM
Я же в самом низу топика это сказал, читайте пж

Да какая разница, что там перевел гугол и где вы там об этом сказали. У вас своя голова есть на плечах или за вас тоже гугол думает? Или вы настолько далёки от крипты, что не можете сами отличить обменник от биржи и полагаетесь только на то, что гугол перевел?

Мне чихать на хейт, в мою сторону, а вам бы придираться к тем кто на**ывает людей, вот там и пишите им свои злостные комменты. Раз бошка так перекачена умными мыслями
10  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: NFT Fan base on: June 08, 2021, 05:47:19 AM





Hey guys, in this thread share your NTF work.
Let's solve work issues and incomprehensible situations on various platforms, share experience and advice.


Share your ideas about nft, create your own. For example, I can share with you how to create your own nft blockchain on bch

https://news.bitcoin.com/a-step-by-step-guide-to-creating-and-selling-non-fungible-tokens-built-with-bitcoin-cash/

You can upvote me)))

https://app.airnfts.com/creators/Sekventor
Currently, there are more than 2,000 types of digital assets in the world. The creation of new technologies has driven the large-scale development of the blockchain industry chain.
Bitcoin and other cryptocurrencies are not the only sectors in the finance and technology industry that have gained popularity during the Covid-19 pandemic in the past year. Recently, the name Non-fungible token (NFT) has also been invaded by many people.
NFT is a type of blockchain which refers to tokens issued by developers on the Ethereum platform according to the ERC721 standard/protocol. The difference between NFT and Bitcoin and Ether is that each NFT has its own value, and each Bitcoin or Ether has the same value. Currently, NFT has penetrated into various fields, such as collectibility, intellectual property, certificate certification, financial instruments, taxation, games, and others.
Oh, yes, yes, of course, I did not mention the basis. Although many should know about this, in fact this forum, this topic has not been spared anyway.
11  Other / Archival / Re: 💰💰💰 NFT 💰💰💰 Kitsune (SUNE) on: June 08, 2021, 05:28:20 AM
PPS - Перевод сделан "Как есть и Google translation был мне в помощь"[/color][/b][/size][/center]

Интеграция токена с обменниками? И логотипы бинанса, юнисвапа, панкейксвапа. Ну круто, когда это у нас бинанс и юнисвап стали обменниками? Понятно, что в оригинале exchange переводится как биржа, а не обменник.
Так перевел гугул
В оригинале это выглядит так: Future integration with exchanges and wallets
Я же в самом низу топика это сказал, читайте пж
12  Alternate cryptocurrencies / Marketplace (Altcoins) / NFT Fan base on: June 06, 2021, 05:38:31 AM





Hey guys, in this thread share your NTF work.
Let's solve work issues and incomprehensible situations on various platforms, share experience and advice.


Share your ideas about nft, create your own. For example, I can share with you how to create your own nft blockchain on bch

https://news.bitcoin.com/a-step-by-step-guide-to-creating-and-selling-non-fungible-tokens-built-with-bitcoin-cash/

You can upvote me)))

https://app.airnfts.com/creators/Sekventor
13  Local / Разное / Re: ⭐️►Взаимная подписка - Twitter, Facebook, Golos, Steemet и другие...◄⭐️ on: April 06, 2021, 08:35:14 AM
Окажите содействие, братцы/сестрицы...
Всё взаимно, иначе и быть не может


https://twitter.com/Cosmix2021
14  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY/ANN] Velacoin - 💰 Adventure time Game portal 💰 + Staking = $ 1 000 000 on: March 31, 2021, 07:40:03 PM
Campaign its end
15  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY/ANN] Velacoin - 💰 Adventure time Game portal 💰 + Staking = $ 1 000 000 on: March 30, 2021, 07:31:38 PM
Hello. Sorry for the long wait.

We have done a great job and at the moment present the following news:

  • We switched to the Binance blockchain.
  • Listing on Binance dex will take place in the near future and we will also be listed on pancakeswap.
  • A fully functional project will be launched within a few months.

The distribution of tokens for the Bounty campaign and the airdrop (as well as solving problems with the referral program) will be carried out over several days, perhaps a week.

Please pay attention to the conditions of the referral system, if you still have questions, or you think that you did everything right, but you have not received tokens for the referral program, contact Vela's telegram chat, with the hashtag #ref (hereinafter your description of the problem ).


Expect the next news. Thanks.
16  Other / Off-topic / Skin Maker [CS GO] ✪ ★ ☆ i can teach you ☆ ★ ✪ on: March 02, 2021, 06:34:53 PM
Hi guys. 3 years ago I connected my life with skins for cs go.
My skills in 3D editors are very small, so I paint with Photoshop through UV overlays.
I learned a lot in this topic and can teach you if you are interested in it and you like it.
It is not difficult and does not require high skills.
I am Russian myself, if you do not speak Russian then it will be a little difficult for us, but still it is possible.
Now, look at my work, thanks)))






























you can also go to my workshop to see the rest of the work


17  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY/ANN] Velacoin - 💰 Adventure time Game portal 💰 + Staking = $ 1 000 000 on: February 22, 2021, 09:17:45 AM
The official token sale is complete. The distribution of tokens for the bounty campaign will begin on February 15th.

Is it currently ongoing? I see no tokens deposited in my Vela dashboard. Or is it gonna be distributed directly to my Ethereum wallet that I've provided?
For now, we decided to postpone this issue. Ethereum fees are very high.
18  Economy / Services / Re: 🔥🔥🔥🎮 Making signatures for Bitcointalk 🎮🔥🔥🔥 30 $ 🔥🔥 on: February 20, 2021, 09:55:59 PM


                               ████████      
               ████            ███████████    
          ███████            ████   █████    
       █████████                    █████    
      ██████████                    ████    
    ███████████                    ████      
   ████████████                  ████        
   ████████████         █       █████  ████  
  ████████████         ██      ███████████  
  ████████████         ████                  
 ████████████        ██████                  
  ███████████        ███████                
  ██████████                                
   █████████                                
   ████████                                  
    ███████                                  
     ██████         ███████████            
       █████         █████████                
        ███         ███████                  
                   █████                      
PROJECT'S ACCELERATOR
&
INVESTMENT PLATFORM


                               ████████      
               ████            ███████████    
          ███████            ████   █████    
       █████████                    █████    
      ██████████                    ████    
    ███████████                    ████      
   ████████████                  ████        
   ████████████         █       █████  ████  
  ████████████         ██      ███████████  
  ████████████         ████                  
 ████████████        ██████                  
  ███████████        ███████                
  ██████████                                
   █████████                                
   ████████                                  
    ███████                                  
     ██████         ███████████            
       █████         █████████                
        ███         ███████                  
                   █████                      




  zenfuze  
     REVOLUTIONARY TRADING PLATFORM     
The ultimate solution for cryptocurrency trading  ]
[    with built-in connectivity.  to major exchanges    ]
████████████████████
████████████████████
████▀█████▀  ▀▀▀████
████   ▀▀      █████
████▄         ██████
█████▄       ███████
██▄      ▄▄█████████
████████████████████
████████████████████

.
████████████████████
████████████████████
████  ██████████████
████▀▀████▀▀▀▀▀▀████
████  ███  ▄▄▄  ████
████  ███  ███  ████
████  ███  ███  ████
████████████████████
████████████████████

.
Zenfuse is developed to
      REVOLUTIONIZE     
your trading experience

  trading  
19  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY/ANN] Velacoin - 💰 Adventure time Game portal 💰 + Staking = $ 1 000 000 on: February 12, 2021, 07:07:06 PM
The official token sale is complete. The distribution of tokens for the bounty campaign will begin on February 15th.
20  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY/ANN] Velacoin - Adventure time █ █ █ █🔥Game portal + Staking🔥█ █ █ █ on: December 11, 2020, 02:23:54 PM
Hello! When speads will be open?
I don't understand you, rephrase your question.
Bounty spreadshit closed. When it will be open?
I'm guilty, sorry, my mistake, now open
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!