Posts

Showing posts from January 20, 2019

Egito nos Jogos Olímpicos de Verão de 2016

Image
Egito nos Jogos Olímpicos de Verão de 2016 Comitê Olímpico Nacional Código do COI EGY Nome Egyptian Olympic Committee site oficial (em inglês) Jogos Olímpicos de Verão de 2016 Sede Rio de Janeiro, Brasil Competidores 122 em 24 esportes Medalhas Pos. 75º 0 0 3 3 Participações nos Jogos Olímpicos Verão 1912 • 1920 • 1924 • 1928 • 1932 • 1936 • 1948 • 1952 • 1960–1968 • 1972 • 1976 • 1980 • 1984 • 1988 • 1992 • 1996 • 2000 • 2004 • 2008 • 2012 • 2016 Inverno 1984 Outras participações relacionadas UAR República Árabe Unida (1960–1968)

Is my mongodb data safe given that by mistake I left the default port 127017 open on firewall?

Image
0 A few months ago I started production mongodb server on ubuntu 18.04 secured with SSL (https access) with following UFW rules setup ufw allow 127017 ufw allow 127017/tcp No user authentication configured for mongodb. Also no change was made to mongod.conf. This is the line in mongo.conf: # network interfaces net: port: 27017 bindIp: 127.0.0.1 that I am betting on saved me from data hack. This line says only connections from localhost are allowed to mongodb server. Assume that hacker is not able to login to my remote server and the only thing he came to know that I have mongodb running and port 127017 is open, is it safe to assume that my mongo data was safe? I have now changed UFW rules to allow access to 127017 only tfrom my desktop IP address and updated mongod.conf to allow access from my