
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
nginx_omniauth_adapter
Advanced tools
auth_request
Use omniauth for your nginx's authentication via ngx_http_auth_request_module.
NginxOmniauthAdapter provides small Rack app (built with Sinatra) for auth_request
.
$ bundle install
$ cd example/
$ foreman start
http://ngx-auth-test.lo.nkmiusercontent.com:18080/
(make sure to have nginx on your PATH)
auth_request
and add some endpoints on nginxexample/nginx-site.conf
for nginx configuration.# Gemfile
gem 'nginx_omniauth_adapter'
Then write config.ru
then deploy it. (see ./config.ru for example)
docker build .
.
quay.io/sorah/rbenv:2.2
, write your own Dockerfile. This is just a simple Rack app.environment variable is available only on included config.ru (or Docker image).
:providers
: omniauth provider names.:provider_http_header
$NGX_OMNIAUTH_PROVIDER_HTTP_HEADER
(string): Name of HTTP header to specify OmniAuth provider to be used (see below). Defaults to 'x-ngx-omniauth-provider`.:secret
$NGX_OMNIAUTH_SESSION_SECRET
: Rack session secret. Should be set when not on dev mode:host
$NGX_OMNIAUTH_HOST
: URL of adapter. This is used for redirection. Should include protocol (e.g. http://example.com
.)
Host
header.:allowed_app_callback_url
$NGX_OMNIAUTH_ALLOWED_APP_CALLBACK_URL
(regexp): If specified, URL only matches to this are allowed for app callback url.:allowed_back_to_url
$NGX_OMNIAUTH_ALLOWED_BACK_TO_URL
(regexp): If specified, URL only matches to this are allowed for back_to url.:app_refresh_interval
NGX_OMNIAUTH_APP_REFRESH_INTERVAL
(integer): Interval to require refresh session cookie on app domain (in second, default 1 day).:adapter_refresh_interval
NGX_OMNIAUTH_ADAPTER_REFRESH_INTERVAL
(integer): Interval to require re-logging in on adapter domain (in second, default 3 days).When multiple providers are passed to :providers
, nginx_omniauth_adapter defaults to the first one in list.
Other providers in list will only be activated for requests with x-ngx-omniauth-provider
header (key is configurable via :provider_http_header
).
You can set configuration via environment variables.
The following variables are only available on included config.ru:
$NGX_OMNIAUTH_SESSION_COOKIE_NAME
: session cookie name (default ngx_omniauth
)$NGX_OMNIAUTH_SESSION_COOKIE_TIMEOUT
: session cookie expiry (default 3 days)$NGX_OMNIAUTH_DEV=1
or $RACK_ENV=development
$NGX_OMNIAUTH_GITHUB_KEY
, $NGX_OMNIAUTH_GITHUB_SECRET
: application key + secret.$NGX_OMNIAUTH_GITHUB_HOST
: (optional) Set if you'd like to use GitHub Enterprise instance (e.g. https://YOUR-GITHUB-ENTERPRISE
)$NGX_OMNIAUTH_GITHUB_TEAMS
: (optional) Restrict to specified teams (e.g. awesomeorganization/owners
)$NGX_OMNIAUTH_GOOGLE_KEY
, $NGX_OMNIAUTH_GOOGLE_SECRET
: oauth2 key + secret.$NGX_OMNIAUTH_GOOGLE_HD
: (optional) Restrict to specified hosted domain (Google Apps Domain).If you're going to write config.ru
from scratch, make sure:
Then run:
run NginxOmniauthAdapter.app(
providers: %i(developer),
secret: secret_base64, # optional
# ... (set more configuration, see above variable list)
)
auth_request
has enabled)/_auth/challenge
. It will be proxied to adapter app (GET /test
)/test
returns 401 when request (browser) doesn't have valid cookieerror_page
, so do internal redirection (/_auth/initiate
)/_auth/initiate
. It will be proxied to adapter app GET /initiate
.x-ngx-omniauth-initiate-back-to
URL to back after logged inx-ngx-omniauth-initiate-callback
URL that proxies to adapter app /callback
. This must be same domain to backend app for cookie.GET /initiate
redirects to /auth/:provider
./_auth/callback
, where specified at x-ngx-omniauth-initiate-callback
.session
on redirect. It contains encrypted session./_auth/callback
. It will be proxied to adapter app /callback
.x-ngx-omniauth-initiate-back-to
./test
./test
returns 200, because request has valid session cookie.After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/sorah/nginx_omniauth_adapter.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that nginx_omniauth_adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.