Questions tagged [whitelist]

145 questions
2
votes
0 answers

Allow IP addresses to bypass authentication in Nginx auth_request module

I have a config like below. I would like to allow a list of IPs to bypass authentication. server { listen 80; server_name test2.example.com; add_header Strict-Transport-Security max-age=2592000; location = /oauth2/auth { internal; …
pdna
  • 209
  • 4
  • 10
1
vote
1 answer

How to restrict access to my subversion server (i.e. svnserve) by IP address, so only my IP can checkout, commit, etc.?

I'm using Ubuntu and I have my subversion server running as you can see below: root 31422 1 0 06:45 ? 00:00:00 /usr/bin/svnserve -d -r /var/svn/repos --log-file=/var/log/svnserve.log I want to whitelist my subversion server, in…
1
vote
1 answer

AWS - IP White listing and Path Rerouting

I am new to AWS and currently trying to implement the following. I have an API server which sits in an EC2 instance. I would like to implement some filtering and rerouting mechanism for 2 sets of clients: Public. Clients with specific IP…
1
vote
1 answer

Nginx. White-list top filter and no auth white-list and basic auth simultaneously

Can't find a way to build the next scheme. A whitelist of IPs ever allowed. Ban for most of the net. A sublist of whitelisted IPs allowed to bypass auth. A part of a local net, for example. Basic auth for the rest, allowed but not bypassing it…
Les
  • 13
  • 4
1
vote
1 answer

Resolve specific Domain query using View in BIND9 (Forward)

I am trying to setup a whitelisted domain forwarder in my bind9 but it wasn't successfully accomplish maybe due to the configuration that I applied. A couple months ago, I did setup the same conceptual DNS with multiple views in Bind9 and it works…
Shann
  • 111
  • 1
  • 3
1
vote
0 answers

CISCO 2960-X mac filtering issue (mac Blocked even it is permitted)

I have a weird issue, I created a mac access-list with the list of all permitted mac-addresses. It is working on all except one machine, once the access list is configured on interface, the connection drops. It is one of the ESXi servers. Note: I am…
mkorayem
  • 11
  • 2
1
vote
1 answer

Centralized IP whiltelist for many servers on different providers

I have many servers on different providers. On each server I have permitted ssh access to port 22 only to a whitelist of IPs. If I need to change/add an IP address I must change the configuration in each server... are there any solutions for a…
nulll
  • 505
  • 1
  • 5
  • 8
1
vote
1 answer

NginX Whitelist by IP and hostname. Otherwise HTTP auth

On Apache, we had a setup where we could have http auth for all of our dev branches unless the hostname matched our whitelist or if the visitor's IP matched our whitelist. This is what we had: SetEnvIf Host master.oursite.co GrantAccess SetEnvIf…
Samuurai
  • 185
  • 1
  • 3
  • 8
1
vote
2 answers

Firewalld: How to whitelist just two IP-addresses, not on the same subnet

I'm running firwalld on a VPS / webserver. The public zone is active and default (and I do not want the change that). How do I allow only these two external IP-addresses to access the VPS (i.e. all of the services I have defined in the public…
NYCeyes
  • 111
  • 1
  • 5
1
vote
2 answers

Is it possible to use wildcards when blocking sub-domains on a Zimbra server (postfix)

I have a zimbra 8.7.11 community edition server running on Ubuntu 14.04.5 LTS. Sometimes, individual SMTP servers from very large domains, such as yahoo.com or hotmail.com get listed in DNS RBLs. I was trying to whitelist their servers at the…
1
vote
2 answers

Nginx Rate Limiting With CloudFlare

I want to have a Rate Limiting code with the following options: I'm using CloudFlare, so I want it to look for the real IP address. I want to have a whitelist option I want to make a file with a list of the blocked IP addresses (IPs who reached the…
HTMHell
  • 163
  • 4
  • 10
1
vote
0 answers

Whitelist WeTransfer in Spamassassin

trying to whitelist wetransfer emails in spamassassin but somehow doesn't work, conf lines: whitelist_from_rcvd *@email.wetransfer.com wetransfer.com whitelist_from_rcvd *=mydomain.com@email.wetransfer.com …
Stavry
  • 31
  • 3
1
vote
2 answers

IP based link unreachable only from my VPS IP

I have my own windows VPS with IP address 182.XXX.XX.XXX, i have ip based link http://182.XXX.XXX.XX:8080/EnterpriseUi/pushAction/OTM%3D.html?username=asd&password=asd&from=asd&to=91XXXXXXXXXX&text=hi My problem is, when I am remotely connecting to…
user3782114
  • 111
  • 2
1
vote
2 answers

Modsecurity Ignore/Whitelist IP

I have looked around on the net and have seen many common answers for this , however, none of them are working. I am trying to use this to ignore whenever our scans kick off in the morning. SecRule REMOTE_HOST "@ipmatch 99.123.33.87"…
LUser
  • 217
  • 6
  • 15
1
vote
1 answer

How to deny requests that contains a certain header and not coming from whitelisted IPs in nginx?

I would like to double protect an application that uses a custom header to authorize some critical views. Since those calls should only originate from some well-known IPs, I would like to block requests containing this custom header (say…
ascobol
  • 278
  • 2
  • 13