Pages:
Author

Topic: 🌟 [SIL] 611 (SixEleven) ◥◣ FREE ANONYMOUS DOMAIN NAME SYSTEM ◥◣ 🌟 - page 7. (Read 79802 times)

legendary
Activity: 1030
Merit: 1000
Why isn't there a link to your website and your twitter on @CoinMarketCap ?? This needs to be updated asap. Had to dig to find you guys??

Thanks for your hint.
CoinMarketCap has updated the information on their website, so everything should be fine, now.

any roadmap? Is this a full time job yet? Who are the devs?

Crypto is serious business now..
sr. member
Activity: 442
Merit: 251
Why isn't there a link to your website and your twitter on @CoinMarketCap ?? This needs to be updated asap. Had to dig to find you guys??

Thanks for your hint.
CoinMarketCap has updated the information on their website, so everything should be fine, now.
legendary
Activity: 1030
Merit: 1000
hmm maybe get some full time devs on this project. It could have a good use if the domain name system was developed further.. Have you considered talking to any blockchain VCs? They could help with technical whitepaper, development and market making
member
Activity: 73
Merit: 12
Why isn't there a link to your website and your twitter on @CoinMarketCap ?? This needs to be updated asap. Had to dig to find you guys??
sr. member
Activity: 442
Merit: 251
Hey guys,

611 is about to reach 200,000 blocks, soon. Is there a need for a bootstrap.dat download file?
full member
Activity: 1589
Merit: 214
@crypto_trader#43xzEXrP
How about this serious security issue using brainwalletX?

brainwalletX is missing a reliable random number generator.

I have several times changed the source of brainwalletx for supporting a different coins,
but now I was not too lazy and took the time to write a universal brainwallet for all coins.
You can download test it here "CКAЧATЬ": http://rgho.st/8hlwbSy98
Also, I did thread about it: https://bitcointalksearch.org/topic/brainwalletx-randomized-xor-compressed-keys-live-updating-2359426

Just for you I did add random_seed and XOR
and also I did unlock the button "Secure random" (just found it in the source code).  Grin


Thank you!
brain.611.to updated

Maybe need to add or change anything else? Just PM me.

Without checking you code in detail:
Can you please explain how the random source works in combination with the existing code?
Where has the randomness been added?
How does it affect the restore functions to get back the private key from the keyword chain?

Hi again, Patrick!
I will try to give you answer for your questions in detail:
Can you please explain how the random source works in combination with the existing code?
There is button "secure random" for generate random bytes.
This launch activate function secureRandom and I see there is separate file with name secure-random.js
I see in this script source code there using two entropy sources:
1. Browser random (window.crypto or window.msCrypto)
var crypto = window.crypto || window.msCrypto;
this is Web Cryptography API:
https://msdn.microsoft.com/en-us/library/dn265046(v=vs.85).aspx

2. And sometimes, if this is supporting - there is using nodeRandom function;
var crypto = require('crypto')

This modules is easy for include, but it can give pseudo-random values because this is the external modules.
So I did add XOR and additional value for XOR. You can find this value in the source code of the script brainwallet.js

Where has the randomness been added?
1. Secret Exponent (button). This generate value from which depended hexadecimal value of private key.
2. Root Key (for Armory and Electrum deterministic chains of wallet generators).
3. XOR tab - just for fun.

How does it affect the restore functions to get back the private key from the keyword chain?
1. Armory and Electrum is deterministic chains generators.
This can give chains of paper wallets [private_key and address].
Seed for this generators have encoded root key and chain code.
For example Armory... First two strings from seed is hex of root key (easy16 encoded). You can check it in converter tab.
Another two strings is encoded chain code hex.
Four strings seed - is backward compatible with the official brainwalletx,
and this can be checked here https://brainwalletx.github.io/#chains
But chaincode in official brainwalletx varies uniquely from root key and only root key is seed (two lines).
And for both values can be applied XOR.

2. If anyone generating secret exponent - he can get different values of private key in WIF (wallet import format).
This is a paperwallet for import and saving, holding and have full access to address.

3. If anyone want to remember only simply password (brainwallet)
and if it can be hacked by dictionary attack - then
this user can using his own random_seed parameter
and do XOR to get secret exponent and private_key and address
which is depended from this simple password, but with cryptographic strength.

In this case user need to download brainwallet in ZIP, unzip it,
change random_seed parameter in the file brainwallet.js
to set this his own, and use this brainwallet locally (on the USB flash for example - it is portable).

I don't see the link to this modified brainwalletX in the bottom of the page, because I don't do hosting it.
I didn't push there rghost link, because file will be deleted from this file-sharing service after some period...
There is only links to official brainwalletx repositaries...
So you can upload this zip on your hosting and change this links
by found it in the bottom of the source code in file index.html
Then users can using they own random_seed values and do XOR theirself anywhere.

legendary
Activity: 1030
Merit: 1000
Anything coming up? Do you have a roadmap

The following topics are on the radar:

Blockchain based
  • anonymous DynDNS service
  • anonymous Tor DNS service
  • anonymous VPN service

Anyone online on Twitter please follow 611Coin and vote for your favorite topic within the next 24 hours.

Sounds good. Do you plan to publish a whitepaper on the topics for those that want to learn more? Also a roadmap
sr. member
Activity: 442
Merit: 251
Anything coming up? Do you have a roadmap

The following topics are on the radar:

Blockchain based
  • anonymous DynDNS service
  • anonymous Tor DNS service
  • anonymous VPN service

Anyone online on Twitter please follow 611Coin and vote for your favorite topic within the next 24 hours.
legendary
Activity: 1030
Merit: 1000
Anything coming up? Do you have a roadmap
sr. member
Activity: 442
Merit: 251
Which currency will be accepted during the ICO?

BTC ... others on request.
sr. member
Activity: 442
Merit: 251
@crypto_trader#43xzEXrP
How about this serious security issue using brainwalletX?

brainwalletX is missing a reliable random number generator.

I have several times changed the source of brainwalletx for supporting a different coins,
but now I was not too lazy and took the time to write a universal brainwallet for all coins.
You can download test it here "CКAЧATЬ": http://rgho.st/8hlwbSy98
Also, I did thread about it: https://bitcointalksearch.org/topic/brainwalletx-randomized-xor-compressed-keys-live-updating-2359426

Just for you I did add random_seed and XOR
and also I did unlock the button "Secure random" (just found it in the source code).  Grin


Thank you!
brain.611.to updated

Maybe need to add or change anything else? Just PM me.

Without checking you code in detail:
Can you please explain how the random source works in combination with the existing code?
Where has the randomness been added?
How does it affect the restore functions to get back the private key from the keyword chain?
sr. member
Activity: 442
Merit: 251
________Follow 611 [coin] on Twitter

Lookout: SIL / BTC rewards for active followers.

Thanks for your awesome community support!


Security
611 (SixEleven) uses strong SSL encryption, to keep your data secure.

It's awesome using SIL [coins]
Setup your own domains to support for your projects, to make remote access simple, secure and easy. Use SIL [coins] to store and share information anonymously and securely with anyone on the Internet.
Of course you are welcome to trade and invest 611 (SixEleven) [SIL coin].


311++ Follower on @611coin
~0.005 BTC prize to best posts of this weekend.

Tremendous start for a tiny altcoin.
Thank you!
full member
Activity: 1589
Merit: 214
@crypto_trader#43xzEXrP
How about this serious security issue using brainwalletX?

brainwalletX is missing a reliable random number generator.

I have several times changed the source of brainwalletx for supporting a different coins,
but now I was not too lazy and took the time to write a universal brainwallet for all coins.
You can download test it here "CКAЧATЬ": http://rgho.st/8hlwbSy98
Also, I did thread about it: https://bitcointalksearch.org/topic/brainwalletx-randomized-xor-compressed-keys-live-updating-2359426

Just for you I did add random_seed and XOR
and also I did unlock the button "Secure random" (just found it in the source code).  Grin

Maybe need to add or change anything else? Just PM me.

P.S.:
Now this brainwallet can be a multi-coin web-wallet, like waves wallet client (https://waveswallet.io/)
if changes the source code can gives the way to sign RAW transactions
and send it to miners and mining pools in decentralized networks for each coin,
but if for connections brainwalletx will be using universal multi-explorers,
with JSON answers like http://yiimp.eu/explorer to load transactions history by address.
In this case any user can make transfers and masspay transactions
without need to downloading any block and blockchains (only private keys and internet connection).
Also all different keys for all supporting coins can be coded by one seed, like this waves lite client.

P.P.S: PatrickMacH, I see you using 0x34 byte as public key prefix,
and this is encoded in Base58Check(611 address) as N symbol and sometimes M.
In block-explorer sometimes I can see addresses beginning from M.
If you wanted to using N prefix from the word Name, then need to use byte 0x35. In this case all addresses beginning from N.
If this make any sence you can re-write your soft for new peoples, add there both prefixes,
and generate new addresses with new stable N prefix.
sr. member
Activity: 434
Merit: 251
I used 611 for my demo domains last year, and haven’t been visiting here for some time. I am happy to see that the coin is still being developed. I hope it reaches to price it deserves. This market is so full with scam coins; people can’t even spot good projects like 611.
Part of it technique from namecoin, looks like a combination, I saw a lot of COINS technology be integrated in the inside, I don't see a similar project before, indeed, it has been developing, I think the coin if strengthen the marketing, it will be born again.
sr. member
Activity: 442
Merit: 251
________Follow 611 [coin] on Twitter

Lookout: SIL / BTC rewards for active followers.

Thanks for your awesome community support!


Security
611 (SixEleven) uses strong SSL encryption, to keep your data secure.

It's awesome using SIL [coins]
Setup your own domains to support for your projects, to make remote access simple, secure and easy. Use SIL [coins] to store and share information anonymously and securely with anyone on the Internet.
Of course you are welcome to trade and invest 611 (SixEleven) [SIL coin].

sr. member
Activity: 442
Merit: 251
Hey Mentalpanda,

I used 611 for my demo domains last year, and haven’t been visiting here for some time. I am happy to see that the coin is still being developed. I hope it reaches to price it deserves. This market is so full with scam coins; people can’t even spot good projects like 611.

thanks for your positive feedback! Smiley

Hint: People tend to notice only bad news about promises and products which look glory on the first glance but fail in market in practice.

So probably 611 [coin] would have reached a higher market price if it would work more unstable Wink
Let's be honest: There is little to discuss as long as 611 [coin] is working as expected.

sr. member
Activity: 442
Merit: 251
Can US/Singapore citizens participate in the ICO?

There are no restrictions as long as you do not violate the laws of your home country and the country where you life.
sr. member
Activity: 442
Merit: 251
Web-Wallet.611.to is based on the piWallet project.
There is incorrect support email. It's not working.
https://wallet.611.to/index.php -> log in -> Support button -> Please contact support via email at [email protected]

Mail Delivery Subsystem
550 5.7.1 <[email protected]>: Recipient address rejected: User [email protected] temporary locked. Please try again later!
Final-Recipient: rfc822; [email protected]
Action: failed
Status: 5.7.1
Remote-MTA: dns; lb-mx.zmail.com. (82.165.227.141, the server for the domain india.com.)
Diagnostic-Code: smtp; 550 5.7.1 <[email protected]>: Recipient address rejected: User [email protected] temporary locked. Please try again later!
Last-Attempt-Date: Mon, 23 Oct 2017 21:21:17 -0700 (PDT)


Can you fix it and specify there correct support email?

Fixed. Thanks for your hint.
sr. member
Activity: 442
Merit: 251
Yes this feature is already available in the qt- and cli-wallet:


Simply add a valid public 611 address of the receiver into the "Transfer to: " field.
Oww! Ok! I didn't saw this field. Didn't even pay attention there. Now I see a tooltip there.
And... I'll test it soon!..

UPD:
Domain transfer test.
1. Did rename file wallet.dat with my names.
2. 611-qt.exe was been restarted
3. Did copy new generated address from new wallet.dat
4. Did turn off rename wallet.dat
5. Name was been transferred to copied address.
6. Wait 1 confirmation.
7. Exiting from qt.
8. Again did rename wallet.dat to using copied address.
9. 611-qt.exe was been started with this wallet.dat
10. Did saw my domain name there.
11. Used console command "dumpprivkey COPIED_ADDRESS" -> got PRIVATE_KEY -> Copied it.
12. Did exit from 611-qt.exe
13. Did turn off renamed wallet.dat again
14. Didn't saw transferred name there.
15. Used console command "importprivkey PRIVATE_KEY"
16. Did saw my name there again.


Transfer the domain name to another holder address is working!

Yeah, that's how it works.
Thanks for your great howto Smiley
newbie
Activity: 56
Merit: 0
Can US/Singapore citizens participate in the ICO?
Pages:
Jump to: