8 articles
Launching the StartUP Lite New Business Package!
article31 AUG, 2023

Launching the StartUP Lite New Business Package!

Attractive price for a secure start: Launching the StartUP Lite New Business Package! Have you dreamt of owning your own VoIP business? Well, your dream just got closer to reality! Introducing the StartUP Lite package from GoAntiFraud, designed to make your VoIP business venture smoother and more affordable than ever before. 💸 Are you ready to embark on your journey towards VoIP success? This package includes: Up to 16 channels for enhanced communication capacity. 24/7 online support for uninterrupted assistance. Tailored business setup, ensuring your unique needs are met. 2x GoIP 8 Gateway for seamless connectivity. License valid for 2 months, providing the right tools for growth. Personal support from experts in the field. Call recording feature for valuable insights. We've made it easier than ever to kickstart your VoIP business journey with our comprehensive StartUP Lite package. For a brighter future in the world of VoIP business, contact us for a pre-sales consultation and to get started!

Case Study: Tarification in GoAntiFraud
case04 APR, 2016

Case Study: Tarification in GoAntiFraud

Options and principles for automatic calculation of SIM-card balance without frequent USSD-requests in GoAntiFraud system. From this video you will learn how to set up the function of charging the balance of SIM-cards. Why is it useful for the terminator? Termination requires monitoring the balance of SIM-cards constantly. It takes sending a lot of USSD requests, which is not typical for the behavior of a real user and causes suspicion among operators. But there is a solution – the setup of the balance billing to update the balance in real time, while having SIM-cards behave like a "human". Since the cost of calls to different directions and rates differ, the system can automatically keep track of changes in the balance. To do this, you need to specify tariff restrictions in the settings to update in real time. To do this, go to the Tariffs -> Options section, select the desired rate, and then click "Add Options Limit" button. In the window that opens, you must specify the following values: Minute price cost. Cost per minute of talk in the direction indicated. Duration limit. Limitation of call duration for a particular direction. Calls limit. Restrictions on the number of calls in this direction. Hangup calls on exceeding the limit. Calls are hung up when the limit is exceeded. Carrier. Specify the direction for the current limits and tariffs. NTI (s). The amount of time (in seconds), which is not charged until the subscriber does not pick up the phone. Connection fee. Interval after NTI. Charging interval for a call (if charging in seconds - it is equal to 1 if in minutes - 60).

Case study:Processing balance checks USSD-responses with floating point
case04 MAR, 2016

Case study:Processing balance checks USSD-responses with floating point

The History A client needs to check his SIM cards' balances. He can recieve 2 different types of messages when sending the USSD request: “Your balance is 40 USD and 50 cents”. ” Your balance is minus 40 USD and 50 cents” Solution We need to create USSD-template for balance check and assign it to the active tariff. Using the power of regular expression, we can split the response with different types of answer into 2 types of the response processing: In the first case, we receive: “Your balance is 40 USD and 50 cents” message. Example of USSD-processing algorythm: Your balance is (?P<sim__balance_USD>-?\d+(\.\d*)?) USD and (?P<sim__balance_cents>-?\d+(\.\d*)?) cents In the second case, we receive “Your balance is minus 40 USD and 50 cents” message. Example of USSD-processing algorythm: Your balance is minus (?P<s[pim__balance_USD>-?\d+(\.\d*)?) USD and (?P<sim__balance_censt>-?\d+(\.\d*)?) cents The logic of input the values with floating point into the system We split balance value to the 2 different variables: sim__balance__USD – for whole numbers sim_balance_cents – for digits after the decimal point After parse, we transform this two values into the one float value using next expression. The first case: float({sim__balance_USD}+"."+{sim__balance_cents}) The second case: float("-"+{sim__balance_USD}+"."{sim__balance_censt}) Let's see visual example. First case: Second case: You don't know how to use this case? – Fill in an application form for a free webinar and we will instruct you! Or you can start your presentation right now in our chat.

Case study: automatic bonus recharge
case26 FEB, 2016

Case study: automatic bonus recharge

The history The client is using a brand new SIM-cards. To make calls termination with this card profitable he needs to request the bonuses from GSM-operator. Bonus price is 4000 units. Before cards will request bonuses they should not make any calls. After bonus will expire, the client needs to make same procedure: recharge the cards, request bonuses and then calls until bonus limit will exceed. Solution STEP 1: RECHARGING Needs: GoAntiFraud service can make auto-recharge via USSD requests. The amount of 1 voucher card is 1000, so we need simply request for recharge 4 times (1000 x 4) to have an ability to request bonuses. Implementation: We need to create USSD-request for recharge and assign it to the tariff with no calls allowed until the balance tops 4000 units. After the balance is OK we need to set another USSD-request logic. We can split this logic into two steps USSD responses: First: balance is lower than 4000 units -> no changes / update balance and request again; Second: balance is higher than 4000 units -> switch the tariff to another one and request for bonuses. Simply we just need to add 2 cases and handle it with different actions Example: USSD response on recharge request looks like this: Your balance was recharged by 1000; Current balance is 2800; *** etc. etc. etc. **** Using the capabilities of regular expression we can split the response with different balance values on 2 cases: ([\w\W])*Current balance is (?P<sim__balance>-?[1-9]?[4-9]\d\d\d+(\.\d*)?)([\w\W])* – In first case balance parsing will be unsuccessful if the balance is lower than 4000 units. ([\w\W])*Current balance is (?P<sim__balance>-?(([1-3]\d{3}|[0-9]{1,3}\))(\s*|\.\d*)?)([\w\W])* – In second case balance parsing will fail if the balance is higher than 4000 units. ! If you don’t know how to use regular expression template engine our specialist can help you with it! So cases will look like this: Success case balance is higher than 4000 -> switch the tariff Unsuccessful case balance is still lower than 4000 -> request recharge again. Ok let's save this USSD-requests and assign them to tariff with recharge requests. First we need to create recharge: And assign it to START tariff with no calls: STEP 2: REQUEST FOR BALANCE We need to create another tariff with no calls. The main purpose is to request the bonus. So we need to create empty tariff with one option: For this option, we need to assign bonus request. Example: If response looks like this: Your bonuses are now available! You have 1000 minutes till 2016-02-25 Then USSD editor will look like this: So after the bonus is now available we are switching to third tariff WORK and it will handle our main calls while bonuses are available. STEP 3: ROLLBACK Only one moment we have left: when bonus has expired and we need to switch back to START. We can do this just like other cases. We need to take unsuccessful responses and switch them to tariff START. Example: When bonuses are were gone you will get response from carrier like this No bonuses left. To request a bonus send *222# Price is 4000 ***etc.etc.etc.*** USSD Editor will look like this: So we have an extensible and flex logic to implement any of your needs. Have fun :) You don't know how to use this case? – Fill in an application form for a free webinar and we will instruct you! Or you can start your presentation right now in our chat.

Automatic Topping Up of SIM-cards Using Specified Limits
case17 FEB, 2016

Automatic Topping Up of SIM-cards Using Specified Limits

Some mobile operators have the feature unpleasant for termination: voice balance notification. For example, when making an outgoing call say, "You have less than ... units on your account." The message, of course, misleads originator’s customers. Naturally, to avoid the notification, you should replenish SIM-card balance. However, if you have a bank of 64 cards, it will take you 24 hours to top up each of them. On the other hand, GoAntiFraud provides a tool to process SMS and USSD requests that automatically reduces your SIM-card topping-up in SIM-bank to five simple steps. Specify the pattern to request the balance (e.g. * 123 #). Specify the parameter to be read from the USSD / SMS response. Specify the number to be topped up (e.g. * 123 * # xxxx) Make up a list of top-up codes that the system fills in instead of xxxx. Set up the topping up limit (e.g. as soon as there is USD 5 left). Now, when loading SIM-cards in the GoIP SIM-bank , all you need to do is to tie the cards to the operator’s pattern so that the system can automatically top them up. More information on automatic unloading and loading the SIM-cards in GoAntiFraud here .

How Can You Start Your Call Termination Business?
article31 MAR, 2016

How Can You Start Your Call Termination Business?

For years, one of the niches to make quick money is a call termination solution. However, it is not so easy to find a profitable and reliable proposal to start your call termination business. Therefore, based on the experience of customers successfully working in VoIP GSM termination, GoAntiFraud company created a business solution that allows you to quickly get to work in the field of telecommunications. The unique business package, created with a view to optimizing overheads, can increase profits by minimizing expenses on new SIM-cards. Thanks to the competent configuration of the call termination business solution by GoAntiFraud experts and through your kind involvement, the company can almost guarantee a return on investment and obtain a reasonable profit at the end of the first month. At the same time, you do not have to spend any additional time on capturing a new market. The installation of the equipment ( VoIP-gateways ) is entirely carried out by technical experts of the company. Then, all you need to do is follow the instructions and remotely adjust the channel loading as you perform call termination. It is worth noting that many of the newcomers, counting on easy profit using the call termination solution, bought low-quality traffic from untrusted originators and wasted time on calls using small ACD. Not to be mistaken with the choice of the originator, GoAntiFraud can offer high quality routes and proven traffic. In addition, the service takes into account all parameters of humanity applied by the carrier antifraud and can simulate them on the SIM-cards, thus prolonging the lifespan of SIM-cards and reducing unnecessary costs for the purchase of new ones. At the same time, you do not have to move the equipment from place to place and do a lot of extra manipulation to bypass the carrier antifraud. This is all done automatically by the competent configuration available within GoAntiFraud. As a result, the company can offer business call termination business solutions with an expected profit of about $1,800 a month. Your initial investment will be as follows: the installation costs in the first month - $830, the purchase of the service license - $430, the expected cost of the SIM-card replacement and payment for the Internet - $400. Using this pattern provided by our company, about 2,000 users have been making, with their number constantly growing. The project the company has developed is unique and there is no other of this kind. We do not expect you to know everything about termination and would be happy to provide our knowledge and teach you everything so that you have an easy start in the call termination . Start making money with GoAntiFraud right now!

Protection against Operator’s Calls
article18 JAN, 2016

Protection against Operator’s Calls

The biggest exposure in dealing with AntiFraud systems is operator’s calls. In most cases, to determine phone numbers the operator makes calls from is not possible. Moreover, operators can independently generate traffic and calculate terminators’ SIM-cards in use. In the first case, you can block incoming calls to protect against ordinary operator’s calls. However, you cannot fully protect your channel from the operator’s incoming traffic. The only option in this case is to work with reliable originators and transiters. GoAntiFraud is a mobile VoIP software that implements both protection tactics. The program provides the terminator all the necessary tools to for setting up VoIP gateways to block operators’ phone numbers. The service offers two options: the opportunity to generate a list of white and black phone numbers. To prevent blocking of SIM-cards , use GoAntiFraud. Efficient tools for the simulation of human behavior on the GSM networks will allow you to significantly increase your revenues. For example, you can have a list of phone numbers from which a reliable originator’s traffic will flow. You can automatically record this list in your database and specify the only phone numbers your SIM-cards should work with. Moreover, if you got hold of a list of phone numbers from which the cellular operator make calls, you can connect it as a file to your account on GoAntiFraud and specify it as a "black list", so that your SIM-cards do not serve it for calls over internet . More information on automatic notifications of GoIP GSM-gateway failures here . GoAntiFraud will allow you to minimize the risks of the SIM-lock in the GSM termination. Reduce business costs on the purchase of new SIM-cards by buying the service license and you will get more profit!

Computerization of USSD and SMS requests
article25 DEC, 2015

Computerization of USSD and SMS requests

No less important indicator of humanity from of AntiFraud systems is an outgoing flow of SMS and USSD requests. Perhaps, the only category of people who do not use SMS is elderly people. However, the system can easily identify cards the are used for internet VoIP termination by the large number of incoming calls compared to an outgoing flow. Grandmas do not like texting and receive calls only. Under these conditions, the terminator’s cards that call VoIP are more than problematic to get lost in the list of operators. Fortunately, GoAntiFraud has a function of computerization of SMS and USSD. To prevent blocking of SIM-cards , use GoAntiFraud. Efficient tools for the simulation of human behavior on the GSM networks will allow you to significantly increase your revenues. The service simulates requests by a person who periodically sends USSD requests to check the balance or order bonuses and enters the information into the database for the operation at the same time. Using the obtained data on the balance, depending on the limit you set, GoAntiFraud VoIP server software can automatically top up or unload your SIM-cards. All you need is to create simple patterns of USSD and SMS requests (* 131 * # ...), which the service will use to connect with the operator and top up the balance by means of codes be at a specified time. Thus, GoAntiFraud saves time twice by 1. Simulating the outgoing SMS flow 2. Topping up individual SIM-cards, which will now take place automatically according to your wishes as to the amount and frequency of top-up. More about protection against AntiFraud-systems with generation of incoming calls here . GoAntiFraud will allow you to minimize the risks of the SIM-lock in the GSM termination. Reduce business costs on the purchase of new SIM-cards by buying the service license and you will get more profit!