Bitcoin Forum
May 07, 2024, 02:56:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 29 30 31 32 [33] 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 ... 171 »
  Print  
Author Topic: [ANN][EXCHANGE] Poloniex - Crypto Exchange with BTC/NXT  (Read 272219 times)
singula
Sr. Member
****
Offline Offline

Activity: 462
Merit: 251



View Profile
March 29, 2014, 01:08:35 AM
 #641


Probably brute force protection, since not every account has 2FA enabled. I can understand it, but I agree it is really annoying.

But it shows even for 2FA enabled accounts. Change that stupidity to require recaptcha OR 2FA at step 2.

But before logging in there is no way to know whether the account you are about to login with has 2FA enabled right?  Roll Eyes

Quite good compromise between usability and anti-bruteforce protection is to allow few (like 1 or 2) bad attempts per account or per IP address without captcha.
That way most people won't see the captcha all year long, as they usually enter the correct password and still it will make any bruteforcing difficult (even with large botnets and lots of IP's, bruteforcers will run out of these "free" attempts rather quickly)...

Big brother is not watching you anymore. Big brother is telling you how to live.
TalkImg was created especially for hosting images on bitcointalk.org: try it next time you want to post an image
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
yonghongtang
Sr. Member
****
Offline Offline

Activity: 483
Merit: 250


View Profile
March 29, 2014, 01:15:19 AM
 #642

can you add QQCoin to your exchange pls ?

here is the link for detail .https://bitcointalk.org/index.php?topic=389238.0
Nerazzura
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
March 29, 2014, 06:26:00 AM
 #643

please add anti-DDos to your site
fvck off to who ddos this site
MsCollec
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
March 29, 2014, 06:39:43 AM
 #644

can you add QQCoin to your exchange pls ?

here is the link for detail .https://bitcointalk.org/index.php?topic=389238.0

+1
arekm
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
March 29, 2014, 07:30:08 AM
 #645


Probably brute force protection, since not every account has 2FA enabled. I can understand it, but I agree it is really annoying.

But it shows even for 2FA enabled accounts. Change that stupidity to require recaptcha OR 2FA at step 2.

But before logging in there is no way to know whether the account you are about to login with has 2FA enabled right?  Roll Eyes

That's why captcha is supposed to be done at step 2. Captcha OR 2FA.
catoshi
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 29, 2014, 01:47:29 PM
 #646

MORE CAT PLZ!


CATS RULE - DOGS DRULE!
wtman
Legendary
*
Offline Offline

Activity: 1030
Merit: 1000


View Profile
March 29, 2014, 06:02:10 PM
 #647

Your withdraw email confirmations are not working.
agran
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1000


View Profile
March 29, 2014, 06:22:24 PM
 #648

Please add [GRS] GroestlCoin
https://bitcointalk.org/index.php?topic=525926.0
24H Volume 4-8 BTC

QORA | 2ND GEN | NEW SOURCE CODE | QTz6fSV2VNc2wjwwsw57kwQzgQhmGw5idQ
mimini0147
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
March 29, 2014, 10:41:30 PM
 #649

Hello,

i'm trying to use trading API with C#, but i got always "Invalid Key/Secret pair" error, the code is:

Code:
        private String getTradingRequestResponse(Dictionary<string, string> postData) {

            String url = "https://poloniex.com/tradingApi";
            SimpleHttp http = new SimpleHttp(url);

            postData.Add("nonce", this.nonce.ToString());
            String reqStr = SimpleHttp.BuildPostData(postData);
            String sign = BitConverter.ToString(this.hashMaker.ComputeHash(Encoding.ASCII.GetBytes(reqStr))).Replace("-","").ToLower();

            for (int i = 0; i < postData.Count; ++i) {
               KeyValuePair<string, string> onePost =  postData.ElementAt(i);
               http.AddPostParameter(onePost.Key, onePost.Value);
            }

            http.AddHeader("KEY", KEY);
            http.AddHeader("SIGN", sign);

            String pageResponse = http.ReadPage();
            return pageResponse;
        }

and " SimpleHttp.BuildPostData" function :
Code:

        public static String BuildPostData( Dictionary<String, String> postData){

            StringBuilder postDataString = new StringBuilder();

            foreach (KeyValuePair<String, String> elem in postData)
            {
                postDataString.Append(elem.Key + "=" + elem.Value + "&");
            }
            postDataString.Remove(postDataString.Length - 1, 1);
            return postDataString.ToString();
        
        }

please help me, i'm trying this for whole day and cant resolve ... the Key and Secret value are good, i checked many times

ChipMixer.com.|.Mixing reinvented for your privacy.|.ChipMixerwzxtzbw.onion
freddyfarnsworth
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
March 29, 2014, 11:04:51 PM
 #650

SimpleHttp http = new SimpleHttp(url);

Not simple, https://

BTC: 1F1X9dN2PRortYaDkq89YJDbQ72i3F5N3h MEOW: KAbvy9jrrajvN5WLo7RWBsYqYfJKyN9WLf DOGE: DAyKSrTiVeRZaReTu1Cyf5Je6qPdKTuKKE
mimini0147
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
March 29, 2014, 11:06:53 PM
 #651

SimpleHttp http = new SimpleHttp(url);

Not simple, https://

well, SimpleHttp is my class, i called that, but url is https:// as you can see "
            String url = "https://poloniex.com/tradingApi";"

inside this class i use WebRequest for http

ChipMixer.com.|.Mixing reinvented for your privacy.|.ChipMixerwzxtzbw.onion
freddyfarnsworth
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
March 29, 2014, 11:13:07 PM
 #652

HttpsServer
This class is an extension of HttpServer which provides support for HTTPS.

BTC: 1F1X9dN2PRortYaDkq89YJDbQ72i3F5N3h MEOW: KAbvy9jrrajvN5WLo7RWBsYqYfJKyN9WLf DOGE: DAyKSrTiVeRZaReTu1Cyf5Je6qPdKTuKKE
freddyfarnsworth
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
March 29, 2014, 11:18:09 PM
Last edit: March 30, 2014, 12:18:23 AM by freddyfarnsworth
 #653

Back to poloniex Smiley I made new wallet addresses and transferred some coins today, all went well and speedy.

IE10 W7 64bit captcha and all working, now all ya gotta do is cloudflare Smiley

BTC: 1F1X9dN2PRortYaDkq89YJDbQ72i3F5N3h MEOW: KAbvy9jrrajvN5WLo7RWBsYqYfJKyN9WLf DOGE: DAyKSrTiVeRZaReTu1Cyf5Je6qPdKTuKKE
mimini0147
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
March 29, 2014, 11:48:19 PM
 #654

HttpsServer
This class is an extension of HttpServer which provides support for HTTPS.

but i can use WebRequest for public API, so why not work with Trading API...

ChipMixer.com.|.Mixing reinvented for your privacy.|.ChipMixerwzxtzbw.onion
miKnutty
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
March 30, 2014, 04:45:32 PM
 #655

Possible issue with BTC withdrawals, confirmed my btc being withdrawn from my poloniex account to my personal wallet and under past withdrawals it shows the transaction as COMPLETE:ERROR. My BTC was transferred to an unknown account when looking at the block chain. Waiting on poloniex support :/
DubFX
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
March 30, 2014, 04:48:28 PM
 #656

Possible issue with BTC withdrawals, confirmed my btc being withdrawn from my poloniex account to my personal wallet and under past withdrawals it shows the transaction as COMPLETE:ERROR. My BTC was transferred to an unknown account when looking at the block chain. Waiting on poloniex support :/
I'm sure they will fix it for you in few hours Smiley
miKnutty
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
March 30, 2014, 05:36:07 PM
 #657

Possible issue with BTC withdrawals, confirmed my btc being withdrawn from my poloniex account to my personal wallet and under past withdrawals it shows the transaction as COMPLETE:ERROR. My BTC was transferred to an unknown account when looking at the block chain. Waiting on poloniex support :/
I'm sure they will fix it for you in few hours Smiley

I hope so  Undecided
bigc1984
Hero Member
*****
Offline Offline

Activity: 658
Merit: 534


View Profile
March 31, 2014, 03:52:44 PM
 #658

Possible issue with BTC withdrawals, confirmed my btc being withdrawn from my poloniex account to my personal wallet and under past withdrawals it shows the transaction as COMPLETE:ERROR. My BTC was transferred to an unknown account when looking at the block chain. Waiting on poloniex support :/

Also having problem with BTC withdrawals. Email confirmations not coming for withdraws. Been waiting for literally hours and "resent" email 20x. Do not use this exchange! they are following the same bad patterns as cryptorush. Something is fishy here.
Wipeout2097
Sr. Member
****
Offline Offline

Activity: 840
Merit: 255


SportsIcon - Connect With Your Sports Heroes


View Profile
March 31, 2014, 05:57:43 PM
 #659

Please remove the Captcha, it's annoying as hell and I have problems reading it.

If you need it, show only after a failed login attempt.

Thanks.

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

████████████████████████████████████████████████████████████          ████████████████                                 ██████████████████████████████████████████████████████████████████████████████████████
██████████████
██
██
██
██
██
██
██
██
██
██
██
██████████████
███████
██
██
██
██
██
██
██
██
██
██
██
███████
███████
██
██
██
██
██
██
██
██
██
██
██
███████
►►  Powered by
BOUNTY
DETECTIVE
emelac
Full Member
***
Offline Offline

Activity: 184
Merit: 100



View Profile
March 31, 2014, 06:01:00 PM
 #660

Please remove the Captcha, it's annoying as hell and I have problems reading it.

If you need it, show only after a failed login attempt.

Thanks.


I hate captchas and I think most people do. It would be better without them.
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 29 30 31 32 [33] 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 ... 171 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!