Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dynamicscrm-proxy-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynamicscrm-proxy-server

A simple proxy server that llows a client to bypass NTLM Authentication with an On-Premise instance of Dynamics CRM

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

dynamicscrm-proxy-server

A simple proxy server that allows a client to bypass NTLM authentication with an On-Premise instance of Dynamics CRM

Quick Start

dynamics-crm-proxy -u yourusername -p yourpassword -d YOURDOMAIN -a https://your.domain.com/YOURORG/api/data/v8.0/

Run dynamics-crm-proxy --help for more info/examples, or keep reading below.

Configuration

Before using the proxy, you must configure it with the CRM's api url and the credentials you want it to use. You may also optionally configure a port the proxy should listen on (defaults to 3000).

There are two ways you can configure the proxy server. You may:

  • Set environmental variables CRMPROXY_USERNAME, CRMPROXY_PASSWORD, CRMPROXY_API_URL, CRMPROXY_DOMAIN and, optionally, CRMPROXY_PORT

  • Pass in command-line arguments. Here's the Yargs output:

    Usage: index.js [options]
    
    Options:
    --help          Show help                                            [boolean]
    --version       Show version number                                  [boolean]
    --username, -u  CRM Username                                        [required]
    --password, -p  CRM Password                                        [required]
    --domain, -d    The Active Directory Domain to authenticate with    [required]
    --apiUrl, -a    CRM API URL                                         [required]
    --verbose, -v   Verbose Log Level                                    [boolean]
    --port          Port the proxy server should liston on
    
    Examples:
      index.js -u user1 -p mypass1337 -o -d yourdomain
      https://your.domain.edu/CRMSALES/api/data/v8.0 -v
      index.js --username user1 -password mypass1337 --domain yourdomain -apiurl
      https://your.domain.org/CRMINTERNAL/api/data/v8.1/ --port 1337
    
    

Docker support

You can also run the proxy server as a docker file. E.g:

docker run \
-e CRMPROXY_USERNAME=yourusernam \
-e CRMPROXY_PASSWORD=yourpassword \
-e CRMPROXY_DOMAIN=yourdomain \
-e CRMPROXY_API_URL=https://rctrdevcrm.regent.edu/CRMRECRUITTEST/api/data/v8.0/ \
-p 3000:3000 \
d4hines/dynamicscrm-proxy-server

Keywords

FAQs

Package last updated on 01 Aug 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc