<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Sas Internal account password including special characters in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/800329#M23892</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/124001"&gt;@japsas100&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;No reason why one should not. But better keep the level of complexity manageable.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Mar 2022 12:41:33 GMT</pubDate>
    <dc:creator>Sajid01</dc:creator>
    <dc:date>2022-03-05T12:41:33Z</dc:date>
    <item>
      <title>Sas Internal account password including special characters</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799482#M23862</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Can we use below special characters in sas internal account password (sastrust,sasdm,sasevs)?&lt;BR /&gt;&lt;BR /&gt;Like &amp;amp;@$:;_%^&lt;BR /&gt;&lt;BR /&gt;I have used these special characters in password but getting the unauthorized user password error when I run proc http.&lt;BR /&gt;&lt;BR /&gt;We are using the 9.4 M1 and also tried the degug with sas configuration file but no luck.&lt;BR /&gt;&lt;BR /&gt;I have also opened the SAS Track.&lt;BR /&gt;&lt;BR /&gt;Please advise?</description>
      <pubDate>Wed, 02 Mar 2022 03:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799482#M23862</guid>
      <dc:creator>japsas100</dc:creator>
      <dc:date>2022-03-02T03:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Internal account password including special characters</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799519#M23864</link>
      <description>&lt;P&gt;Excuse me, but have you been able to isolate whether it is really a problem with the password string, or with your sas account, or with the site you are trying to access with proc http?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is a problem with the special symbols in the password, are you double coating the password when specifying it in proc http? Why don't you use single quotation marks?&lt;BR /&gt;Use single quotation marks when you don't want to expand or reference a macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2022 08:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799519#M23864</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2022-03-02T08:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Internal account password including special characters</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799526#M23865</link>
      <description>&lt;P&gt;My instinct(!) tells me to not use these characters in particular:&lt;/P&gt;
&lt;P&gt;%&amp;amp;?;:/&lt;/P&gt;
&lt;P&gt;as they have special meaning within the HTTP protocol. I would also refrain from using quotes, as that makes handling such strings in any programming environment harder.&lt;/P&gt;
&lt;P&gt;Since these are for internal, technical users of the SAS system, why do you need to use them in PROC HTTP? I never accessed these users with anything but the SAS Management Console.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that a random 8-character password consisting of upper/lowercase letters, digits and underlines will provide so many permutations (63**8) that brute-forcing it with 1000 tries per second would still take close to 8000 years.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2022 08:48:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799526#M23865</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-02T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Internal account password including special characters</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799563#M23869</link>
      <description>You probably need to URL encode the password. For example:&lt;BR /&gt;&lt;BR /&gt;1    %let pass=%nrstr(&amp;amp;@$:;_%^);&lt;BR /&gt;2    %let pass=%sysfunc(urlencode(&amp;amp;pass));&lt;BR /&gt;3    %put &amp;amp;pass;&lt;BR /&gt;%26@$%3A%3B_%25%5E&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Mar 2022 13:37:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/799563#M23869</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2022-03-02T13:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Internal account password including special characters</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/800329#M23892</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/124001"&gt;@japsas100&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;No reason why one should not. But better keep the level of complexity manageable.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Mar 2022 12:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Sas-Internal-account-password-including-special-characters/m-p/800329#M23892</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-03-05T12:41:33Z</dc:date>
    </item>
  </channel>
</rss>

