How do you mask your admin portal when you are small enough that you dont have an intranet. Someone on hacker news pointed out to me about my admin portal being open but I never understood how to mask it. http://www.truffle.io/admin/ Any suggestions?
Well, first of all, change the URL to something obscure. That'll take care of most of the problems. Afterwards, you could set SSL certificates so only browsers with the private keys could even access it.
Instagram Django site admin
21–30 of 47 posts
Re: Instagram Django site admin
#22Earlier quoted context omitted.
That's a normal HTTPS cert, I'm talking about this: http://www.ibm.com/developerworks/lotus/library/ls-SSL_clien... Really, though, unless you're extremely security-conscious, a hidden URL over HTTPS with a good password is sufficient for your purposes. Also, don't serve any pages over plain HTTP, login pages even less so.
Thanks, I guess I ll explore the option that you described above. Also there is one more thing I am curious about, so heroku does gives a free SSL certificate but that only works for their domain meaning something like truffleapp.herokuapp.com, it doesn't work for the custom domain. Do you know any way where I can save money on buying SSL certificate and rather use heroku's certificate. All the certificates put atlea…
openssl req -new -x509 -nodes \
-out /nuxeo/certs/server.crt \
-keyout /nuxeo/certs/server.key \
-batch
you will get a warning about the certificate being suspect; but at least the traffic will be encryptedRe: Instagram Django site admin
#23Re: Instagram Django site admin
#24I'm not sure what the point in linking to this is. If you regard it as security hole, alert Instagram. If you just want to let people know that Instagram uses Django... well, that information is already on https://www.djangoproject.com .
Re: Instagram Django site admin
#25I changed the top bar color from that blue green to a red on the production deployment of my app- helps avoid forgetting which deployment you are messing with.
Re: Instagram Django site admin
#26I'm not sure what the point in linking to this is. If you regard it as security hole, alert Instagram. If you just want to let people know that Instagram uses Django... well, that information is already on https://www.djangoproject.com .
I guess the point is that maybe you should restrict "people from the internet" from being able to access the login page.
Re: Instagram Django site admin
#27Re: Instagram Django site admin
#28Re: Instagram Django site admin
#29I changed the top bar color from that blue green to a red on the production deployment of my app- helps avoid forgetting which deployment you are messing with.
A post or code snippet that does this would be great, seems like a really simple but useful people others may like
[1] - https://chrome.google.com/webstore/detail/stylish/fjnbnpbmke...
Re: Instagram Django site admin
#30We're also part of Facebook's bug bounty whitehat program (https://www.facebook.com/whitehat/bounty/), if anyone comes across something in the future, we welcome responsible disclosure and pay out bounties through the program as well.