<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Blog</title>
    <link>/news-and-events/blog/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>Telesign</dc:creator>
    <dc:rights>Copyright 2012</dc:rights>
    <dc:date>2012-03-06T22:28:47+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>Account Takeover: What You Need to Know</title>
      <link>http://www.telesign.com/news-and-events/blog/account-takeover-what-you-need-to-know</link>
      <guid>http://www.telesign.com/news-and-events/blog/account-takeover-what-you-need-to-know</guid>
      <description><![CDATA[<p>
	A few weeks ago, I spoke at the Merchant Risk Council in London with Sudhir Jha from Google about Account Takeover (ATO). For several years ATO has been a hot topic for email platforms and social networks, and is now gaining mindshare fast from leading merchants. Ironically, in many ways, merchants are somewhat responsible for the rise in ATO. Merchants became so good at identifying and blocking fraud at the transaction level that fraudsters were forced to <img alt="" src="/images/content/ATO Blog Photo .jpg" style="width: 200px; height: 133px; float: right; margin: 10px;" />identify new methods.<br />
	<br />
	To detect account takeovers, you must build models that look for anomalous behavior on a user-by-user basis. This can include using a new device or IP, or a change in the session behavior. For example, Customer A&nbsp; typically is a deliberate purchaser and will sort through multiple products pages and read several reviews before making a purchase. If Customer A&rsquo;s account makes an immediate purchase without the normal deliberate behavior, it could be a sign of ATO. The biggest difference in detecting ATO compared to standard CNP fraud is the need to build these models on a user-by-user basis. Across users, machine learning and rules should not be minimized and are still crucial for detecting CNP fraud, but ultimately anomalies on a user-by-user basis are the most effective ways to identify a pattern that could be representative of a fraudster taking over an account.<br />
	<br />
	Another challenge merchants face is what action to take when a potential ATO is detected other than outright rejecting the transaction. Detection systems can be vulnerable to false positives, which can have a big impact on the user experience. For example, let&rsquo;s say that my purchasing behavior is normally deliberate, there may be occasions where I make an immediate purchase. Perhaps I have already done enough research on other sites or maybe I do not have the requisite time to be as deliberate as normal, or perhaps a friend sent me a link to a product they recommended. In cases like this, it is better to have a challenge framework in place rather than&nbsp; outright reject the transaction. Some of these challenges can be:</p>
<ul>
	<li>
		<a href="http://www.telesign.com/products-demos/telesign-2fa/protect-account-access" target="_blank">Two-Factor Authentication</a>- send a one-time passcode to the user&rsquo;s phone and require re-entry back into the merchant site</li>
	<li>
		Require re-entry of a credit card number</li>
	<li>
		Require the user to answer a knowledge-based challenge (although the answer to these can be easily guessed or socially engineered.)</li>
</ul>
<p>
	Building a model to detect anomalies on a user-by-user basis and having a comprehensive challenge framework to use when an anomaly is detected is an effective strategy to combatting ATO, while minimizing the impact on user experience.</p>
]]></description> 
      <dc:date>2013-05-06T17:38:41+00:00</dc:date>
    </item>

    <item>
      <title>Learning from LivingSocial</title>
      <link>http://www.telesign.com/news-and-events/blog/learning-from-livingsocial</link>
      <guid>http://www.telesign.com/news-and-events/blog/learning-from-livingsocial</guid>
      <description><![CDATA[<p>
	With the huge LivingSocial hack that we read about the other day it&rsquo;s clear that there are common themes that we&rsquo;ve seen many times lately. In this case the news is a little better than previous but let&rsquo;s review what we know:</p>
<ol>
	<li>
		50 million accounts have been compromised with email address and salted passwords</li>
	<li>
		Living Social as a precautionary measure is asking all users to reset their passwords<img alt="" src="/images/content/LivingSocial Hack Photo .jpg" style="width: 176px; height: 116px; margin: 10px; float: right;" /></li>
	<li>
		No news on how the hack was perpetrated</li>
</ol>
<p>
	So there is a little bit of good news here. "What might that be?" you&rsquo;re probably asking. Well the security folks at LivingSocial did salt their passwords which makes any attack against the hashed passwords much harder. When you salt a hashed password, that means when you try and log in to the site, what&rsquo;s happening on the back end is the salt, a few bytes of random data, is combined with your password. Then it is hashed and stored in the database, &ldquo;HASHING ALGORITHM&rdquo; is run on (SALT + Password) which creates a &ldquo;HASH."</p>
<p>
	Why is this good? Well let&rsquo;s say the passwords were hashed and then not salted. When this happens someone can get a dictionary or a list of commonly used passwords then you figure out what hashing algorithm that the site was using (typically SHA2 or if the site is very old MD5) and then you just calculate hashes against the big hash list and compare your hashed dictionary to the stolen accounts. If the site has hashed passwords however you need to create this big dictionary hash list separately for every single user. That takes a really long time! Hashing protects all 50 million passwords from getting cracked. What is does not protect against is a single account being cracked.<br />
	&nbsp;<br />
	Ok so now should you change your password? Yeah probably. So what can websites do?</p>
<ol>
	<li>
		Use two-factor authentication (2FA)<br />
		If LivingSocial has used 2FA then it wouldn&rsquo;t matter if user passwords were stolen, the accounts wouldn&rsquo;t have been able to be compromised unless the attacker had the password (something the user knows) and had the 2FA device (a mobile phone in the case of TeleSign, which is something the user has). To get into an account you want there to be two components, one you know and one you have.</li>
	<li>
		Salting is good, double salting is better. If they had double salted their passwords and stored the second salt somewhere other than the database it would be impossible to crack them.</li>
	<li>
		Don&rsquo;t use MD5 or SHA2 as a hashing algorithm use bcrypt. Basically SHA2 is super-fast, relatively speaking bcrypt is slow and makes hash breaking impossible on a large scale.</li>
</ol>
<p>
	Read about it here:<a href="https://krebsonsecurity.com/2012/06/how-companies-can-beef-up-password-security/" target="_blank"> https://krebsonsecurity.com/2012/06/how-companies-can-beef-up-password-security/</a><br />
	&nbsp;<br />
	I hope LivingSocial follows up their announcement with a detailed post mortem. The way the community gets better about security is by understanding what mistakes were made, embarrassing as they may be. There are some things they could do better to protect their users, but they&rsquo;ve taken the first important step in telling people something happened, let&rsquo;s hope they follow up with changes so that this can&rsquo;t happen again.<br />
	&nbsp;</p>
]]></description> 
      <dc:date>2013-04-30T16:21:44+00:00</dc:date>
    </item>

    <item>
      <title>AP Hack Begs for Stronger Security</title>
      <link>http://www.telesign.com/news-and-events/blog/ap-hack-begs-for-stronger-security</link>
      <guid>http://www.telesign.com/news-and-events/blog/ap-hack-begs-for-stronger-security</guid>
      <description><![CDATA[<p>
	The other day the Associated Press (AP) twitter feed was hacked through a spear-phishing attack against AP employees. It was apparently instigated by the Syrian Electronic Army (SEA) &mdash; a Syrian government aligned hacking group. The SEA has <img alt="" src="/images/content/AP Tweet.png" style="width: 300px; height: 221px; margin: 10px; float: right;" />either taken credit for or has been blamed for attacks recently against news organizations like CBS, NPR, and the BBC, as well as international organizations like FIFA.<br />
	<br />
	Clearly, We&rsquo;re now in an era where cyber terrorism or cyber warfare is becoming more common. In some cases these acts may be perpetrated by sovereign states, as was the case with Stuxnet and its attack on Iran&rsquo;s nuclear program and very specifically targeting the centrifuges that they were using to enrich uranium to weapons-grade level. In other cases there may be pseudo government aligned entities like the SEA lashing out against organizations that aren&rsquo;t aligning with their political agenda. Two other common perpetrators in these attacks can be groups like Anonymous who push a variety of political, legal, and anarchical agendas or the unknown black hat agent who may be just doing something because they can.<br />
	<br />
	During the news frenzy of the Boston attacks last week the news, link aggregation, social media, and internet naval gazing site reddit was attacked. As part of their post mortem they stated, regarding who perpetrated the attack, under the call out of &ldquo;conjecture:&rdquo;<br />
	&nbsp;<br />
	<em>"I&#39;d say the most likely explanation is that someone decided to take us down for shits and giggles. There was a lot of focus on reddit at the time, so we were an especially juicy target for anyone looking to show off. DDoS attacks we&#39;ve received in the past have proven to be motivated as such, although those attacks were of a much smaller scale. Of course, without any clear evidence from the attack itself we can&#39;t say anything for certain."</em><br />
	&nbsp;<br />
	Regardless companies must take a more aggressive stance on security.<br />
	&nbsp;<br />
	One of the key areas of focus in making security better is by helping to better secure accounts. Federation technologies like SAML have been around for a while but have only become common in enterprise scenarios as they require tight integration between two entities and are complex to implement and manage. Other technologies like OpenID have shown promise, but flaws in the protocol and wavering interest in key organizations and with individuals that were pushing this initiative have made it so that the technology isn&rsquo;t widely enough adopted to be useful.<br />
	<br />
	The latest approach seems to be around the FIDO alliance. FIDO is an alliance of several organizations and companies that are trying to align to &ldquo;support the international standardization of OSTP by a recognized standards body.&rdquo; Although this seems like a great goal, I guess, OSTP isn&rsquo;t a published standard today and the only implementation of this &ldquo;standard&rdquo; is by a private company. The goals of the FDIO alliance are lofty but they are at a nascent stage, and given that they are currently bypassing standards bodies, it&rsquo;s difficult to understand how much of FIDO is marketing vs reality.<br />
	&nbsp;<br />
	I&rsquo;m a big believer in using what we have today, in our hands right now, and using that to make the world a better place. Mobile based (either voice, SMS or app based) two factor authentication (2F) is here today and organizations such as Google, Apple, and Microsoft have all implemented this in some way, shape or form in their products. Google and Microsoft have made broad statements about rolling this technology across their platforms to their users. Although 2FA isn&rsquo;t going to stop Anonymous, it will make the gigantic releases of username and passwords to sites like Pastebin.com irrelevant since a password won&rsquo;t be sufficient to log into a site.<br />
	&nbsp;<br />
	I like the approach that Gabe Newell the founder of Valve Software, publisher of the Half-Life series of games among other hugely popular games, took.&nbsp; Gable when he implemented 2FA in their Steam online store published his username and password in public saying that with 2FA it didn&rsquo;t matter if it was stolen his account would still be secure.<br />
	&nbsp;<br />
	Here it is:<br />
	&nbsp;<br />
	Username: gaben@valvesoftware.com<br />
	password: moolyftw<br />
	&nbsp;<br />
	Good luck in cracking into there.<br />
	&nbsp;</p>
]]></description> 
      <dc:date>2013-04-25T23:24:56+00:00</dc:date>
    </item>

    <item>
      <title>Justin Bieber’s Twitter Followers are Fake!</title>
      <link>http://www.telesign.com/news-and-events/blog/justin-biebers-twitter-followers-are-fake</link>
      <guid>http://www.telesign.com/news-and-events/blog/justin-biebers-twitter-followers-are-fake</guid>
      <description><![CDATA[<p>
	On m<a href="http://www.pressparty.com/pg/newsdesk/londonnewsdesk/view/72555/" target="_blank"><img alt="" src="/images/content/Bieber.png" style="width: 135px; height: 164px; float: right;" /></a>y way to work this morning I was listening to popular morning show Kevin and Bean. They were discussing Socialbakers&rsquo; recent report that more than half of <a href="http://www.pressparty.com/pg/newsdesk/londonnewsdesk/view/72555/" target="_blank">Justin Bieber&rsquo;s followers are fake</a>. Shocking!&nbsp; Bean went on to say that, &ldquo;I guess <a href="https://twitter.com/" target="_blank">Twitter</a> is free and you only need an email to sign up and since that is free too, you can sign up for as many twitter handles as you want.&rdquo;<br />
	<br />
	Exactly, fraudsters, spammers, and entrepreneurs looking to make a buck selling followers, can sign up for as many accounts as they want. These accounts can be used in all types of ways, nefarious and benign, including:</p>
<ul>
	<li>
		Falsely inflating the number of celebrity or company followers to create the appearance of popularity, influence, and a larger share of voice</li>
	<li>
		Propagate spammy tweets for &ldquo;recreational&rdquo; medicines or other annoying offers</li>
	<li>
		Bolster SEO efforts by creating 100s of&nbsp; tweets with links to a website or eCommerce page</li>
	<li>
		Hijacking Twitter&#39;s trending topics to get people to click links</li>
	<li>
		Embedding malicious Bit.ly links to install malware</li>
</ul>
<p>
	<br />
	Should you care that Justin Bieber has fake followers?<br />
	<br />
	Maybe. If you are an advertiser, the answer is an aggressive yes! Kim Kardashian is known to have commanded $10,000 per tweet back in 2010 at the height of her celebrity. That 10K is based not only on her presumed influence, but also on the number of potential customers who will see that tweet. Additionally, if you advertise through twitter instead of asking a celebrity to tweet that they love your FroYo, your demographic and reach are not accurate if twitter isn&rsquo;t doing anything to regulate their account sign-ups.<br />
	<br />
	If you&rsquo;re just an average user, you&rsquo;re affected too.<br />
	I&rsquo;m sure Viagra is great, Cialis is probably dandy too, but I&#39;m never going to buy it so please stop serving up the offer.<br />
	<br />
	Since Twitter&rsquo;s main source of revenue is from advertising, I&rsquo;m going to assume that they were not too pleased to hear about Justin Bieber&rsquo;s followers. But, they have larger problems to solve. I&rsquo;m a marketer, I should love twitter and I used to. I managed a personal account, a business account, I helped sign-up the exec team and encouraged them to tweet. I stopped all that a few months ago when my account was hacked multiple times. I just got sick of friends and colleagues forwarding me my tweets about having their &ldquo;pictures from last night.&rdquo;<br />
	<br />
	There is a really simple and elegant solution for all of this. Your phone number. A phone number is the only unique identifier that we have as humans. You can figure out my user name and password, you can steal my SSN, you could even open email accounts in my name and pretend to be me, but you&rsquo;ll be challenged to steal my phone and my phone number.<br />
	<br />
	<strong>Twitter &ndash; ask me for my phone number!</strong> I&rsquo;d happy give it to you to protect my account and to show you that I am a legitimate person.&nbsp; Ask for my phone number during the registration process to ensure I am who I say I am.&nbsp; And then have me re-verify with that phone number if I&rsquo;m posting something suspicious.<br />
	<br />
	While you&rsquo;re collecting my number take a look at the <a href="http://www.telesign.com/products-demos/phoneid/">type of phone</a> and the <a href="http://www.telesign.com/products-demos/phoneid-live/">subscriber status</a>.&nbsp; If it is a VoIP number or a disconnect phone number, chances are that it is a fake account. Do what many companies are already doing. Protect your users&#39; accounts and improve their experience by associating their phone number with their account.</p>
]]></description> 
      <dc:date>2013-04-12T17:08:57+00:00</dc:date>
    </item>

    <item>
      <title>7 Things You Need to Know about International SMS</title>
      <link>http://www.telesign.com/news-and-events/blog/7-things-you-need-to-know-about-international-sms</link>
      <guid>http://www.telesign.com/news-and-events/blog/7-things-you-need-to-know-about-international-sms</guid>
      <description><![CDATA[<ol>
	<li>
		<strong><img alt="" src="/images/content/sms.jpg" style="width: 140px; height: 120px; float: right;" />In the beginning there was only ASCII.</strong> ASCII is the basic language that all other character sets are based on.&nbsp; ASCII characters are the uppercase and lower case letters A to Z, plus some basic punctuation. ASCII is a universal set of characters, every device everywhere understands what ASCII is.&nbsp; At the dawn of SMS 20 years ago, ASCII characters were the only ones you could reliably send in an SMS message.</li>
	<li>
		<strong>Not everyone speaks English. </strong>As much as we might wish everyone spoke one language and we didn&#39;t need any other characters to express their language, it just isn&#39;t so.&nbsp; The world is a very interesting place, with an incredible variety of characters, accents, symbols, and punctuation. We can&#39;t expect the world to only accept SMS messages in plain ASCII.</li>
	<li>
		<strong>In the old days, different language meant different encoding</strong>. In the past, if you wanted to send a message to a user in Greece, you had to use a Greek character set. If you wanted to send a message to a customer in Russia, you had to use an entirely different character set with Cyrillic characters. And the user had to have the same character set installed. If this sounds complicated, rest assured, it was much worse than it sounds!</li>
	<li>
		<strong>The GSM encoding was created to solve this problem</strong><strong>.</strong> For Western Europe, at least. The GSM encoding allowed for the entire ASCII character set, plus a lot of common accented characters to be sent in an SMS. This encoding standard also allowed using fewer bits per character, which means you can send 160 characters in an SMS instead of only 140.</li>
	<li>
		<strong>Enter Unicode.</strong> Unicode was intended to be the one code to rule them all. It is a new system of representing every character in use today. It also includes characters from many ancient languages, and it still has plenty of room for other stuff (Emoji, anyone?). Unicode has room for 1.1 million characters, and currently has about 110,000 that have been assigned.</li>
	<li>
		<strong>There are different Unicode encodings.</strong> Unicode is a great improvement, but we still need to turn those Unicode characters into something that computers can understand.&nbsp; There are several different Unicode encodings. Each of them has strengths and weaknesses. UTF-8 is universal and has many strengths, but is not always well supported in the mobile world. UTF-16 is another modern encoding and is a good choice for Asian languages in particular, but reduces your SMS message length to 70 characters. UCS-2 is an older version of UTF-16, but a lot of devices still require it.</li>
	<li>
		<strong>Every Provider is different.</strong> It would be great if all of the SMS carriers and aggregators out there supported the same encodings in the same way, uniformly around the world. They don&#39;t. (But you already knew that, didn&#39;t you?) Most carriers in Europe support the GSM character set, while those in the US generally do not. Japanese carriers sometimes support the Shift-JIS encoding. Some carriers can handle UTF-8, some insist on UCS-2.</li>
</ol>
<p>
	<strong>Ok, I get it, international SMS is complicated, now what?</strong><br />
	<br />
	If your business needs international reach with SMS, make sure to ask these questions of any potential vendor:</p>
<ul>
	<li>
		What countries do you support sending SMS messages to? If you need global reach, make sure your provider supports the countries you&#39;re interested in.&nbsp; A lot of aggregators specialize in specific countries or regions. Only a few have worldwide reach.</li>
	<li>
		What languages and encodings does your provider support? US based providers might only support sending messages in plain ASCII. European providers&nbsp; probably support GSM. Better providers will let you send your message to them in UTF-8 and do any necessary conversions for you.</li>
	<li>
		Does your provider automatically normalize messages when it is necessary? If you&#39;re trying to send a message and the recipient can&#39;t receive it in the language you sent it in, does your provider try to send it as plain ASCII for you automatically?</li>
</ul>
<p>
	Understanding all the intricacies of International SMS messaging can be daunting, especially if your provider doesn&#39;t give you much help. However, if global reach is a necessity for your business, taking the time to find a provider that understands these details can take much of the sting out of it.</p>
]]></description> 
      <dc:date>2013-03-29T20:01:32+00:00</dc:date>
    </item>

    <item>
      <title>Top 6 Reasons You Should Consider Voice Authentication</title>
      <link>http://www.telesign.com/news-and-events/blog/top-6-reasons-you-should-consider-voice-authentication</link>
      <guid>http://www.telesign.com/news-and-events/blog/top-6-reasons-you-should-consider-voice-authentication</guid>
      <description><![CDATA[<p>
	<img alt="" height="113" src="/images/content/The%20Voice.png" style="float: right; margin: 10px;" width="281" />Offering voice-based authentication as a complement to SMS-based authentication isn&rsquo;t just about offering your users a choice, it&rsquo;s fast becoming a business requirement for larger corporations and best practice for any web property looking to serve the diverse needs of their global users.<br />
	<br />
	Here are six real-world benefits of <a href="http://www.telesign.com/products-demos/telesign-2fa" target="_blank">voice-based authentication</a>. Some are financial, some karmic, but collectively they make a compelling argument for adding voice authentication to complement your SMS-based authentication model.</p>
<ol>
	<li>
		<strong>Give your users choice.</strong>&nbsp; As a best practice, the leading global web properties give their users the choice of receiving an authentication code via SMS or voice call.&nbsp; While SMS-based authentication is much more prevalent, we should not forget that some people may actually prefer voice-based authentication.&nbsp; In fact, 53% of adult cell phone owners questioned in a survey conducted by the Pew Internet and American Life Project on Americans and Text Messaging said they preferred receiving a voice call to a text message.a&nbsp; Plus, the voice option equips your end users with an easy alternative if they experience any SMS delivery issues.</li>
	<li>
		<strong>Reach more users</strong>.&nbsp; While landline usage is declining, 48% of US homes still have and use a landline (according to a study by the Centers of Disease Control who looked at phone usage in H1 2012). Moreover, some users do not have SMS plans and are charged per message and many older users are simply not comfortable using text messaging. &nbsp;</li>
	<li>
		<strong>Reach more markets.</strong> In certain countries, even in large markets like Japan, SMS is inherently challenging.&nbsp; Therefore, offering a voice option is sometimes the only way to reach these markets.&nbsp; For companies looking to reach a truly global user base, voice messaging is a practical alternative and complement to SMS-based authentication.</li>
	<li>
		<strong>Meet ADA Mandates. </strong>Consider the Americans with Disabilities Act (ADA) whose charter is to ensure that everyone regardless of disability has an equal opportunity to enjoy consumer and business services.&nbsp; So, if your organization is ONLY offering SMS-based authentication, how are you helping serve the needs of the blind. Approximately 2.5 million people in the United States are &ldquo;legally blind&rdquo; and, many of them have some residual vision. Only about 5% of blind people use Braille for reading; many people who are legally blind are able to read large print.&nbsp; Plus, there are millions more who have &ldquo;low vision&rdquo; with some significant impairment that substantially limits their ability to see well under different circumstances.&nbsp; Given the increasing popularity of two-factor authentication, SMS-based authentication is a genuine challenge for the blind who cannot easily read the one-time passcodes delivered to their mobile phones.</li>
	<li>
		<strong>Lower your helpdesk costs.</strong> If your business relies exclusively on SMS, some end users will end up requesting SMS messages to their non-SMS-enabled phones or they will call a help desk to request an authentication code.&nbsp; Based on our experience with the world&rsquo;s largest web properties, this translates into more calls to your call/support center and negatively impact customer satisfaction. As a result, companies pay extra costs on two fronts: they pay for the extra SMS messages and for the support costs associated when customers call a help desk to request their one-time passcodes.</li>
	<li>
		<strong>Add some personalization.</strong> Customers can customize the voice message by using their own voice talent or the voice of a familiar character (e.g., an online gaming company using the voice of a popular character to deliver the one-time passcode). As more companies explore creative ways to add stickiness to their online service, personalized messaging is a novel and cost-effective approach. &nbsp;</li>
</ol>
<p>
	<strong>OK, I&rsquo;m sold on voice-based authentication, now what? </strong>&nbsp;<br />
	<br />
	Once you decide that you want to complement SMS-based authentication with a voice option, make sure to ask these questions of any potential vendor:</p>
<ul>
	<li>
		<strong>Do you offer voice-based authentication?</strong> This may be a little obvious, but many authentication providers and SMS aggregators only offer SMS.&nbsp; Offering the voice option means that the vendor should have invested in the infrastructure, the network and carrier relationships to delivery a quality service.<br />
		&nbsp;</li>
	<li>
		<strong>Can you deliver the voice messages to the countries where your users are located?</strong> Ideally, the solution provider has a global footprint, but it also means localizing the voice messages into the languages and dialects of your users.<br />
		&nbsp;</li>
	<li>
		<strong>Can you detect the phone types of your users?&nbsp;</strong> With PhoneID, TeleSign can detect the phone type so companies can send SMS messages to SMS-enabled phones and voice calls to landline phones.<br />
		&nbsp;</li>
	<li>
		<strong>Does the provider have connections to Tier 1 global providers?</strong> How do you know if you&rsquo;re dealing with Tier 1 global providers?&nbsp; You can often hear in the quality of the voice call.&nbsp; With Tier 2 providers, you will often experience latency (i.e., delays on the call), jitter (refers to the variability of the latency), and packet loss.&nbsp; Just as it&#39;s important to hear what someone says in the order they say it, it&#39;s also important to hear all of what they&#39;re saying. If you miss one out of every 5words or 5 words all at once, chances are you&#39;re not going to understand much of the conversation. This is packet loss.&nbsp; This happens when voice packets are dropped by network routers, switches become congested (lost packets), or packets are discarded by the jitter buffer.</li>
</ul>
<ul>
	<li>
		<strong>Does your provider offer failover routes for voice?</strong> Like SMS, you want to use a provider who employs failovers at an operator and country level so if one carrier/operator is experiencing difficulties, you can immediately failover to another operator to ensures optimal delivery rates.<br />
		&nbsp;</li>
	<li>
		<strong>Does your provider auto-correct phone numbers?</strong> Often when users are prompted to enter their phone number for authentication they forget to account for regional peculiarities.&nbsp; For example, you need to drop the leading zero in the UK, but you need to add a &ldquo;9&rdquo; to the area code when placing a voice call to Argentina.&nbsp; Believe it or not, this auto-correcting can improve deliverability by as much as 20% in some markets.</li>
</ul>
<p>
	Adding voice-based authentication as an option to SMS delivery just makes plain business, practical and ethical sense. After all, it&#39;s a matter of winning over your customers by equipping them with rock-solid security and excellent user experience. The good news is that you no longer have to sacrifice one for the other.<br />
	&nbsp;</p>
<h5>
	Source: pewinternet.org/Reports/2011/Cell-Phone-Texting-2011.aspx</h5>
]]></description> 
      <dc:date>2013-03-06T02:39:11+00:00</dc:date>
    </item>

    <item>
      <title>Mobile World Congress 2013</title>
      <link>http://www.telesign.com/news-and-events/blog/mobile-world-congress-20132</link>
      <guid>http://www.telesign.com/news-and-events/blog/mobile-world-congress-20132</guid>
      <description><![CDATA[<div>
	<p>
		<img alt="" src="/images/content/mwc2013(1).jpg" style="width: 225px; height: 95px; float: right; margin: 4px 10px;" />The upcoming Mobile World Congress in Barcelona, Spain, is the mobile industry&#39;s biggest showcase of new devices.</p>
	<p>
		A lot of the focus will likely surround the development of new quad-core smartphones with 1080p HD screens. &nbsp;There will also be plenty of buzz around the Windows Phone 8 (phones &amp; tablets) as well as new Android phones from Nokia, HTC, and Samsung &nbsp;(even if they&rsquo;re not debuting the Galaxy S4). &nbsp;We can expect the swirling debates to continue as to whether BlackBerry and Microsoft can still compete as underdogs in a world now dominated by Android and iOS. &nbsp;</p>
	<p>
		Blah, blah, blah&hellip;</p>
</div>
<p>
	I&rsquo;m way more intrigued by the ecosystem behind the handsets and how it will change the every day lives of today&rsquo;s businesses and their customers. Things like how global messaging is evolving, the rise of B2C and application-to-person (A2P) text messaging, online security/privacy, and information protection in the cloud are just more interesting.&nbsp;</p>
<p>
	There is so much going on just in the world of A2P SMS. The A2P market is expected to be worth $70.1 billion and overtake person-to-person (P2P) SMS by 2016 (Juniper Research, 2011). This is not surprising given the rise of mission-critical, service-enabling messages used to cement customer relationships. Example include:</p>
<ul>
	<li>
		<div>
			<strong>Confirm deliveries:</strong> With SMS, companies can track packages and maintain inventory levels every time as stock arrives. Transactional-based triggers allow alerts to be set up based on when inventory levels get too low, when assets are disposed, and the like. Plus, messages can give exact delivery times and dates, so your customers know you when their package is going to be delivered.</div>
	</li>
	<li>
		<div>
			<strong>Send product alerts:</strong> Text messages enable businesses to provide excellent customer service and deliver new product notifications cheaply and easily.</div>
	</li>
	<li>
		<div>
			<strong>Appointment Reminders:</strong> Doctors, dentists, financial planners and a wide range of business professionals can leverage SMS for automating appointment reminders.</div>
	</li>
	<li>
		<div>
			<strong>Status Alerts:</strong> Many cloud-based technology firms are looking to use text messaging for system alerts (e.g., when an individual or server are reaching capacity thresholds). &nbsp;This also includes airlines notifying customers when there are flight changes or delays so they can make alternative arrangements if need be.&nbsp;</div>
	</li>
</ul>
<p>
	With the <a href="http://www.telesign.com/news-and-events/news/telesign-acquires-routo-telecommunications-to-enhance-security-and-authenti/" target="_blank">acquisition </a>of Routo Telecommunications (rebranded as <a href="https://www.routomessaging.com/?__utma=52982573.1699537806.1360782002.1360782002.1361378243.2&amp;__utmb=52982573.1.10.1361378243&amp;__utmc=52982573&amp;__utmx=-&amp;__utmz=52982573.1360782002.1.1.utmcsr=%28direct%29%7Cutmccn=%28direct%29%7Cutmcmd=%28none%29&amp;__utmv=-&amp;__utmk=2445620" target="_blank">TeleSign Mobile</a>), we&rsquo;re a mobile operator in our own right with network access and direct connections to global operators. &nbsp;This not only enhances TeleSign&rsquo;s suite of security and authentication solutions, but enable us to provide these types of emerging mission-critical SMS services to the largest global web properties.&nbsp;</p>
<p>
	NOTE: If you happen to be going to MWC, I encourage you to stop by the TeleSign Mobile <a href="http://www.mapyourshow.com/shows/index.cfm?SHOW_ID=MWC13&amp;alt_entry=true&amp;curr_pri=facility&amp;curr_sec=OO" target="_blank">stand</a>&nbsp;(Hall 8.1, Stand81J38) to learn more about this exciting new partnership. &nbsp;</p>
<p>
	So, if you get tired of the bells and whistles of the new phones, make sure to peel back the onion and explore all the new areas of growth that make up this evolving ecosystem.</p>
]]></description> 
      <dc:date>2013-02-21T20:29:57+00:00</dc:date>
    </item>

    <item>
      <title>TeleSign Mobile Joins TeleSign &#45; Another Unconventional Move</title>
      <link>http://www.telesign.com/news-and-events/blog/telesign-mobile-joins-telesign-thoughts-from-the-telesign-mobile-side</link>
      <guid>http://www.telesign.com/news-and-events/blog/telesign-mobile-joins-telesign-thoughts-from-the-telesign-mobile-side</guid>
      <description><![CDATA[<p style="color: rgb(34, 34, 34); font-family: Arial, Verdana, sans-serif; font-size: 11.818181991577148px;">
	Over its 10 year history, RoutoMessaging has become known as something of an unconventional player in a crowded industry. We have stood out for two reasons, above all: our focus on superior quality while most others chase the lowest possible price, and our dedication to achieving truly global coverage by forging meaningful partnerships with operators around the world. Relentless pursuit of these aims has helped us become an indispensable partner to hundreds of customers who depend on us, around the clock, to deliver critical information to their users, no matter where in the world they happen to be. We are very proud to have become a truly integrated part of their business processes.</p>
<p style="color: rgb(34, 34, 34); font-family: Arial, Verdana, sans-serif; font-size: 11.818181991577148px;">
	Today we are excited to announce another unconventional move. We have joined forces with TeleSign, the leading provider of phone-based fraud prevention and intelligent authentication, and are re-launching under a new brand name, TeleSign Mobile.</p>
<p style="color: rgb(34, 34, 34); font-family: Arial, Verdana, sans-serif; font-size: 11.818181991577148px;">
	TeleSign has spent years enabling some of the world&#39;s largest online companies use innovative means to combat fraud and verify identity, and the user&#39;s mobile device has become a tremendously powerful component in delivering these services. By acquiring RoutoMessaging, TeleSign gains greater control over how messages are delivered to users, which leads to a higher quality service, as well as access to network-level data to ensure that transactions are occurring in a trusted environment.</p>
<p style="color: rgb(34, 34, 34); font-family: Arial, Verdana, sans-serif; font-size: 11.818181991577148px;">
	By re-launching as TeleSign Mobile, a dedicated messaging and data services division, we can use our renowned mobile messaging network to mobilise even more services and business processes for TeleSign&#39;s customers, as well as the many enterprises we serve today.</p>
<p style="color: rgb(34, 34, 34); font-family: Arial, Verdana, sans-serif; font-size: 11.818181991577148px;">
	TeleSign Mobile will continue to stand for global reach, mission-critical reliability, and trust - all values our colleagues at TeleSign share. And we will continue to do things a little differently from the rest of the industry. So watch this space, as the most exciting news is yet to be written.</p>
<p style="color: rgb(34, 34, 34); font-family: Arial, Verdana, sans-serif; font-size: 11.818181991577148px;">
	Our official press release can be read <a href="http://www.telesign.com/news-and-events/news/telesign-acquires-routo-telecommunications-to-enhance-security-and-authenti/" target="_blank">here</a>, and we have prepared <a href="http://www.telesign.com/landing/view/telesign-mobile-faqs/" target="_blank">answers </a>to some of the questions we imagine you may have. We hope you are as excited as us about what the future holds for TeleSign Mobile, and as always we would love to hear from you if you&#39;d like to get in touch.</p>
]]></description> 
      <dc:date>2013-02-15T17:00:29+00:00</dc:date>
    </item>

    <item>
      <title>Six Crucial Questions for Mission&#45;Critical Messaging</title>
      <link>http://www.telesign.com/news-and-events/blog/six-crucial-questions-for-mission-critical-messaging</link>
      <guid>http://www.telesign.com/news-and-events/blog/six-crucial-questions-for-mission-critical-messaging</guid>
      <description><![CDATA[<div>
	<p>
		<img alt="" src="/images/content/missioncritical(1).JPG" style="width: 175px; height: 92px; float: right; margin: 10px;" /></p>
	<p>
		7.8 trillion text messages were sent in 2011 and that number was expected to reach about 9.6 trillion in 2012 (Source: Portio Research).&nbsp;</p>
</div>
<div>
	<p>
		However, for the most part, texting has been a person-to-person (P2P) phenomenon with a smaller portion of the traffic attributed to business-to-consumer (B2C) SMS,&nbsp;which has grown over 50% in the last two years.</p>
	<p>
		The business-to-consumer SMS (sometimes referred to application-to-person or A2P) has been taking off significantly and is now growing faster than P2P. &nbsp;This growth is being fueled by businesses, which are leveraging SMS to automate business processes for communicating and engaging with their customers, suppliers, and employees.</p>
</div>
<div>
	<p>
		<strong>B2C Messaging Types</strong><br />
		There is significant demand for taking business-to-consumer SMS messaging to the next level by simplifying ecosystem pricing as well as making access to the SMS infrastructure more user-friendly. &nbsp;B2C messages take a variety of forms including:</p>
	<ul>
		<li>
			<div>
				<strong>SPAM:&nbsp;</strong>Illegal spam text messages in the U.S. increased 45% in 2011 to an incredible 4.5 billion messages. &nbsp;This type of traffic can cause huge spikes for mobile operators and aggregators, and often impacts the delivery of truly mission-critical messages that end up getting queued behind these messages, causing significant message delays and consumer inconvenience.</div>
		</li>
		<li>
			<div>
				<strong>Mass Marketing:</strong> Mass marketing messages differ from SPAM in that they are opt-in, but they are generally not considered mission-critical from a delivery perspective (though they may be for the legitimate marketers behind them).</div>
		</li>
		<li>
			<div>
				<strong>Business Process Automation:</strong> This includes a broad spectrum of mission-critical messaging for enhancing business communications like shipment notifications, calendar invitations, appointment reminders, and status alerts such as flight confirmations and delays.</div>
		</li>
		<li>
			<div>
				<strong>Security Messaging:</strong> Authentication and verification messaging used to verify and protect online identities and mitigate fraud. Security messaging requires the highest level of deliverability because of what&rsquo;s at stake &ndash; things such as transaction verifications, registrations and password resets are increasingly relying on an SMS delivered to the consumer&rsquo;s phone. &nbsp;So, when it absolutely, positively has to get there... use a provider that has the network connections, relationships, and processes to optimize delivery rates.</div>
		</li>
	</ul>
	<p>
		<strong>Mission-Critical Messaging Requires a Unique Skillset</strong><br />
		As the demand for B2C SMS has exploded, so too has the vendor landscape. &nbsp;There are a variety of operators, aggregators, mobile communication, and phone-based authentication solution providers that have emerged to fill this gap.</p>
	<p>
		If your business depends on sending truly mission-critical, security-related messages to verify online identities, transactions, or shipment delivery, you need to ask these questions of any prospective vendor:</p>
	<ol>
		<li>
			<div>
				<strong>Do you &ldquo;cleanse&rdquo; the phone numbers?</strong><br />
				When users enter phone numbers into online forms, they are not always properly formatted for delivery. Phone number cleansing automatically corrects improperly formatted phone numbers to adhere to complicated and dynamic international dialing rules that can vary by carrier and geography. &nbsp;Cleansing can improve SMS deliverability by as much as 20% in some geographies.</div>
		</li>
		<li>
			<div>
				<strong>Can the provider &ldquo;localize&rdquo; the SMS message?&nbsp;</strong><br />
				As more and more companies become global, they need to reach an international user base. &nbsp;This means you may need to localize the text of the SMS into languages and dialects that your users will understand. If you don&rsquo;t have this expertise in-house, make sure to ask your provider if they can customize the SMS into the languages and dialects of your user/customer base with custom SMS templates.</div>
		</li>
		<li>
			<div>
				<strong>Do you want to manage the complexity of short and long codes?</strong><br />
				There&rsquo;s a fair amount of complexity when sending an SMS across borders and across mobile operators. &nbsp;In order to span the globe, businesses need to use a combination of SMS long codes, shared short codes, or dedicated short codes for their mission-critical messaging. &nbsp;The right solution will depend on the use case, the geography, the mobile operator, the volume of messages, and a variety of other variables. &nbsp;Some SMS providers require you to manage this complexity in-house or you can rely on a service provider that manages this as part of a quality practice.</div>
		</li>
		<li>
			<div>
				<strong>How many failover options does the provider offer?&nbsp;</strong><br />
				With most mobile operators and SMS aggregators,, every message gets essentially one shot at delivery to the destination operator. This does not ensure the highest delivery percentage. Instead, look for a provider message that employs a &ldquo;waterfall&rdquo; where individual SMS messages are re-tried through one or more providers in response to failures, delays, or other network conditions.</div>
		</li>
		<li>
			<div>
				<strong>Does the provider have direct network connections?</strong><br />
				A Mbile Network Operator can provide the ability to connect directly to the more than 800 operators around the world. This special status offers the potential of higher deliverability, increased transparency/visibility, and better stability in cost and service availability.</div>
		</li>
		<li>
			<div>
				<strong>What kind of support is offered out of the box?&nbsp;</strong><br />
				Customer support in the Telco industry is infamously poor. &nbsp;And this poor support often trickles down to the mobile operators and aggregators who operate on razor-thin margins. Consequently, many SMS aggregators and simple API providers operate on a low-cost, self-service model. This may be fine when dealing with mass marketing communications, but is seldom sufficient for mission-critical messaging. &nbsp;Make sure to ask these questions:</div>
		</li>
	</ol>
</div>
<ul>
	<li style="margin-left: 1.25in;">
		<div>
			Is the cost of support included in the service? If not, what is the cost of support?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer phone and email based support?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer emergency (24x7) phone support?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer integration support <ins cite="mailto:Brenna%20Lenoir" datetime="2013-02-21T10:51">and</ins><del cite="mailto:Brenna%20Lenoir" datetime="2013-02-21T10:51">or</del> offer best practices guidance?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Can they provide guidance on the optimal user experience or user interface?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer proactive alerting?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer access to a client portal and provide troubleshooting tools?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer canned and ad hoc (i.e. customized) reporting?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Do they offer SLAs and Service Level Objectives (uptime, technical support response times)?</div>
	</li>
	<li style="margin-left: 1.25in;">
		<div>
			Can the provider provide best practices on fraud prevention and risk mitigation?</div>
	</li>
</ul>
<p>
	These six questions will quickly separate the mission-critical contenders from the pretenders, and&nbsp;will help ensure the highest possible delivery percentages, the lowest levels of fraud, and the very best customer experience.</p>
]]></description> 
      <dc:date>2013-02-14T22:21:09+00:00</dc:date>
    </item>

    <item>
      <title>TeleSign Gears Up for RSA 2013</title>
      <link>http://www.telesign.com/news-and-events/blog/telesign-gears-up-for-rsa-2013</link>
      <guid>http://www.telesign.com/news-and-events/blog/telesign-gears-up-for-rsa-2013</guid>
      <description><![CDATA[<p>
	If you&rsquo;ve been to RSA before you know it can be quite the show, booth babes, giveaways and sometimes even magicians. This will be my second year going and I can&rsquo;t wait to set up our newly designed booth with a fully equipped charging station. It doesn&rsquo;t matter what kind of phone you have, we&rsquo;ve got the charger for you!<br />
	<br />
	Stop by our booth, #533 chat with the team, charge your phone and demo the TeleSign Authenticator. If you haven&rsquo;t already scheduled time to chat, feel free to email <a href="mailto:chuey@telesign.com?subject=Let's%20Meet%20at%20RSA%202013">me</a>&nbsp;for an appointment. Looking forward to seeing you there!&nbsp;</p>
]]></description> 
      <dc:date>2013-02-14T22:02:51+00:00</dc:date>
    </item>

    
    </channel>
</rss>