[Asterisk-code-review] README-SERIOUSLY.bestpractices.txt: Convert to markdown (asterisk[master])

Corey Farrell asteriskteam at digium.com
Thu Nov 30 21:50:49 CST 2017


Corey Farrell has uploaded this change for review. ( https://gerrit.asterisk.org/7399


Change subject: README-SERIOUSLY.bestpractices.txt: Convert to markdown
......................................................................

README-SERIOUSLY.bestpractices.txt: Convert to markdown

Follow-up to conversion of README.md.

Change-Id: I17ee7cf25bc027ece844efa2c1dfe613aff1e35b
---
R README-SERIOUSLY.bestpractices.md
1 file changed, 69 insertions(+), 57 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/99/7399/1

diff --git a/README-SERIOUSLY.bestpractices.txt b/README-SERIOUSLY.bestpractices.md
similarity index 89%
rename from README-SERIOUSLY.bestpractices.txt
rename to README-SERIOUSLY.bestpractices.md
index 7a65602..7e18c4a 100644
--- a/README-SERIOUSLY.bestpractices.txt
+++ b/README-SERIOUSLY.bestpractices.md
@@ -1,51 +1,34 @@
-==================
-| Best Practices |
-==================
+# Best Practices
 
 The purpose of this document is to define best practices when working with
 Asterisk in order to minimize possible security breaches and to provide tried
 examples in field deployments. This is a living document and is subject to
 change over time as best practices are defined.
 
---------
-Sections
---------
-
-* Filtering Data:
+* [Filtering Data]:
         How to protect yourself from redial attacks
-
-* Proper Device Naming:
+* [Proper Device Naming]:
         Why to not use numbered extensions for devices
-
-* Secure Passwords:
+* [Secure Passwords]:
         Secure passwords limit your risk to brute force attacks
-
-* Reducing Pattern Match Typos:
+* [Reducing Pattern Match Typos]:
         Using the 'same' prefix, or using Goto()
-
-* Manager Class Authorizations:
+* [Manager Class Authorizations]:
         Recognizing potential issues with certain classes of authorization
-
-* Avoid Privilege Escalations:
+* [Avoid Privilege Escalations]:
         Disable the ability to execute functions that may escalate privileges
 
-----------------
-Additional Links
-----------------
+
+## Additional Links
 
 Additional links that contain useful information about best practices or
 security are listed below.
 
-* Seven Steps to Better SIP Security:
-        http://blogs.digium.com/2009/03/28/sip-security/
-
-* Asterisk VoIP Security (webinar):
-        https://www.asterisk.org/security/webinar/
+* [Seven Steps to Better SIP Security][blog-sip-security]
+* [Asterisk VoIP Security (webinar)][voip-security-webinar]
 
 
-==============
-Filtering Data
-==============
+## Filtering Data
 
 In the Asterisk dialplan, several channel variables contain data potentially
 supplied by outside sources. This could lead to a potential security concern
@@ -61,20 +44,21 @@
 with a number 0-9, and then accepts any additional information supplied by the
 request.
 
-[NOTE: We use SIP in this example, but is not limited to SIP only; protocols
-       such as Jabber/XMPP or IAX2 are also susceptible to the same sort of
-       injection problem.]
+**NOTE**:
+> We use SIP in this example, but is not limited to SIP only; protocols such as
+> Jabber/XMPP or IAX2 are also susceptible to the same sort of injection problem.
 
-
+```INI
 [incoming]
 exten => _X.,1,Verbose(2,Incoming call to extension ${EXTEN})
 exten => _X.,n,Dial(SIP/${EXTEN})
 exten => _X.,n,Hangup()
+```
 
 This dialplan may be utilized to accept calls to extensions, which then dial a
 numbered device name configured in one of the channel configuration files (such
-as sip.conf, iax.conf, etc...) (see the section Proper Device Naming for more
-information on why this approach is flawed).
+as sip.conf, iax.conf, etc...) (see [Proper Device Naming] for more information
+on why this approach is flawed).
 
 The example we've given above looks harmless enough until you take into
 consideration that several channel technologies accept characters that could
@@ -87,7 +71,9 @@
 ${EXTEN} channel variable, which is then utilized by the Dial() application in
 our example, thereby giving you the dialplan line of:
 
+```INI
 exten => _X.,n,Dial(SIP/500&SIP/itsp/14165551212)
+```
 
 Our example above has now provided someone with a method to place calls out of
 your ITSP in a place where you didn't expect to allow it. There are a couple of
@@ -101,8 +87,8 @@
 system command execution.  The FILTER() dialplan function is available to remove
 dangerous characters from untrusted strings to block the command injection.
 
-Strict Pattern Matching
------------------------
+
+### Strict Pattern Matching
 
 The simple way to mitigate this problem is with a strict pattern match that does
 not utilize the period (.) or bang (!) characters to match on one-or-more
@@ -110,7 +96,9 @@
 to only accept three digit extensions, we could change our pattern match to
 be:
 
+```INI
 exten => _XXX,n,Dial(SIP/${EXTEN})
+```
 
 In this way, we have minimized our impact because we're not allowing anything
 other than the numbers zero through nine. But in some cases we really do need to
@@ -118,8 +106,8 @@
 or when we want to handle something like a SIP URI. In this case, we'll need to
 utilize the FILTER() dialplan function.
 
-Using FILTER()
---------------
+
+### Using FILTER()
 
 The FILTER() dialplan function is used to filter strings by only allowing
 characters that you have specified. This is a perfect candidate for controlling
@@ -132,10 +120,12 @@
 starting with a number of zero through nine, we can use FILTER() to limit what
 we will accept to just numbers. Our example would then change to something like:
 
+```INI
 [incoming]
 exten => _X.,1,Verbose(2,Incoming call to extension ${EXTEN})
 exten => _X.,n,Dial(SIP/${FILTER(0-9,${EXTEN})})
 exten => _X.,n,Hangup()
+```
 
 Note how we've wrapped the ${EXTEN} channel variable with the FILTER() function
 which will then only pass back characters that fit into the numerical range that
@@ -146,17 +136,20 @@
 which has a side effect of being usable in other locations of your dialplan if
 necessary, and to handle error checking in a separate location.
 
+```INI
 [incoming]
 exten => _X.,1,Verbose(2,Incoming call to extension ${EXTEN})
 exten => _X.,n,Set(SAFE_EXTEN=${FILTER(0-9,${EXTEN})})
 exten => _X.,n,Dial(SIP/${SAFE_EXTEN})
 exten => _X.,n,Hangup()
+```
 
 Now we can use the ${SAFE_EXTEN} channel variable anywhere throughout the rest
 of our dialplan, knowing we've already filtered it. We could also perform an
 error check to verify that what we've received in ${EXTEN} also matches the data
 passed back by FILTER(), and to fail the call if things do not match.
 
+```INI
 [incoming]
 exten => _X.,1,Verbose(2,Incoming call to extension ${EXTEN})
 exten => _X.,n,Set(SAFE_EXTEN=${FILTER(0-9,${EXTEN})})
@@ -168,14 +161,17 @@
 exten => error,n,Verbose(2,EXTEN: "${EXTEN}" -- SAFE_EXTEN: "${SAFE_EXTEN}")
 exten => error,n,Playback(silence/1&invalid)
 exten => error,n,Hangup()
+```
 
 Another example would be using FILTER() to control the characters we accept when
 we're expecting to get a SIP URI for dialing.
 
+```INI
 [incoming]
 exten => _[0-9a-zA-Z].,1,Verbose(2,Incoming call to extension ${EXTEN})
 exten => _[0-9a-zA-Z].,n,Dial(SIP/${FILTER(. at 0-9a-zA-Z,${EXTEN})
 exten => _[0-9a-zA-Z].,n,Hangup()
+```
 
 Of course the FILTER() function doesn't check the formatting of the incoming
 request. There is also the REGEX() dialplan function which can be used to
@@ -188,9 +184,7 @@
 Asterisk console.
 
 
-====================
-Proper Device Naming
-====================
+## Proper Device Naming
 
 In Asterisk, the concept of an extension number being tied to a specific device
 does not exist. Asterisk is aware of devices it can call or receive calls from,
@@ -208,10 +202,12 @@
 matches the devices name. For example, take a look at this poorly created device
 in sip.conf:
 
+```INI
 [1000]
 type=friend
 context=international_dialing
 secret=1000
+```
 
 As implied by the context, we've permitted a device named 1000 with a password
 of 1000 to place calls internationally. If your PBX system is accessible via
@@ -224,10 +220,12 @@
 address of the device, along with a strong password (see the section Secure
 Passwords). The following example would be more secure:
 
+```INI
 [0004f2040001]
 type=friend
 context=international_dialing
 secret=aE3%B8*$jk^G
+```
 
 Then in your dialplan, you would reference the device via the MAC address of the
 device (or if using the softphone, a MAC address of a network interface on the
@@ -237,9 +235,7 @@
 first ones added to the dictionary for brute force attacks.
 
 
-================
-Secure Passwords
-================
+## Secure Passwords
 
 Secure passwords are necessary in many (if not all) environments, and Asterisk
 is certainly no exception, especially when it comes to expensive long distance
@@ -252,7 +248,9 @@
 connection, be sure to use a secure password. A good example of a secure
 password would be something like:
 
+```
 aE3%B8*$jk^G
+```
 
 Our password also contains 12 characters with a mixture of upper and
 lower case characters, numbers, and symbols. Because these passwords are likely
@@ -263,19 +261,18 @@
 production.
 
 Using a web search you can find several online password generators such as
-https://www.strongpasswordgenerator.com or there are several scripts that can be
+[Strong Password Generator] or there are several scripts that can be
 used to generate a strong password.
 
 
-============================
-Reducing Pattern Match Typos
-============================
+## Reducing Pattern Match Typos
 
 As of Asterisk 1.6.2, a new method for reducing the number of complex pattern
 matches you need to enter, which can reduce typos in your dialplan, has been
 implemented. Traditionally, a dialplan with a complex pattern match would look
 something like:
 
+```INI
 exten => _[3-5]XXX,1,Verbose(Incoming call to ${EXTEN})
 exten => _[3-5]XXX,n,Set(DEVICE=${DB(device/mac_address/${EXTEN})})
 exten => _[3-5]XXX,n,Set(TECHNOLOGY=${DB(device/technology/${EXTEN})})
@@ -288,12 +285,14 @@
 exten => error,1,Verbose(2,Unable to lookup technology or device for extension)
 exten => error,n,Playback(silence/1&num-not-in-db)
 exten => error,n,Hangup()
+```
 
 Of course there exists the possibility for a typo when retyping the pattern
-match _[3-5]XXX which will match on extensions 3000 through 5999. We can
+match _\[3-5\]XXX which will match on extensions 3000 through 5999. We can
 minimize this error by utilizing the same => prefix on all lines beyond the
 first one. Our same dialplan with using same => would look like the following:
 
+```INI
 exten => _[3-5]XXX,1,Verbose(Incoming call to ${EXTEN})
 same => n,Set(DEVICE=${DB(device/mac_address/${EXTEN})})
 same => n,Set(TECHNOLOGY=${DB(device/technology/${EXTEN})})
@@ -306,11 +305,10 @@
 exten => error,1,Verbose(2,Unable to lookup technology or device for extension)
 same => n,Playback(silence/1&num-not-in-db)
 same => n,Hangup()
+```
 
 
-============================
-Manager Class Authorizations
-============================
+## Manager Class Authorizations
 
 Manager accounts have associated class authorizations that define what actions
 and events that account can execute/receive.  In order to run Asterisk commands
@@ -322,6 +320,7 @@
 class authorization for origination commands is "originate".  Take, for example,
 the Originate manager command:
 
+```
 Action: Originate
 Channel: SIP/foo
 Exten: s
@@ -329,6 +328,7 @@
 Priority: 1
 Application: System
 Data: echo hello world!
+```
 
 This manager command will attempt to execute an Asterisk application, System,
 which is normally associated with the "system" class authorication.  While some
@@ -336,10 +336,12 @@
 configurations and/or clever manipulation of the Originate manager action can
 circumvent these checks.  For example, take the following dialplan:
 
+```INI
 exten => s,1,Verbose(Incoming call)
 same => n,MixMonitor(foo.wav,,${EXEC_COMMAND})
 same => n,Dial(SIP/bar)
 same => n,Hangup()
+```
 
 Whatever has been defined in the variable EXEC_COMMAND will be executed after
 MixMonitor has finished recording the call.  The dialplan writer may have
@@ -354,9 +356,8 @@
 not running Asterisk as root, can prevent serious problems from arising when
 allowing external connections to originate calls into Asterisk.
 
-===========================
-Avoid Privilege Escalations
-===========================
+
+## Avoid Privilege Escalations
 
 External control protocols, such as Manager, often have the ability to get and
 set channel variables; which allows the execution of dialplan functions.
@@ -370,7 +371,18 @@
 
 When these functions are executed from an external protocol, that execution
 could result in a privilege escalation. Asterisk can inhibit the execution of
-these functions, if live_dangerously in the [options] section of asterisk.conf
+these functions, if live_dangerously in the \[options\] section of asterisk.conf
 is set to no.
 
 In Asterisk 12 and later, live_dangerously defaults to no.
+
+
+[voip-security-webinar]: https://www.asterisk.org/security/webinar/
+[blog-sip-security]: http://blogs.digium.com/2009/03/28/sip-security/
+[Strong Password Generator]: https://www.strongpasswordgenerator.com
+[Filtering Data]: #filtering-data
+[Proper Device Naming]: #proper-device-naming
+[Secure Passwords]: #secure-passwords
+[Reducing Pattern Match Typos]: #reducing-pattern-match-typos
+[Manager Class Authorizations]: #manager-class-authorizations
+[Avoid Privilege Escalations]: #avoid-privilege-escalations

-- 
To view, visit https://gerrit.asterisk.org/7399
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I17ee7cf25bc027ece844efa2c1dfe613aff1e35b
Gerrit-Change-Number: 7399
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171130/34dc38fa/attachment-0001.html>


More information about the asterisk-code-review mailing list