[Merged]Closed Threads due to Forum Rules Violation

06/16/2007 11:39 master_nila#14086
lol man very nice
06/16/2007 12:45 urKO#14087
Quote:
Originally posted by voodoons@Jun 12 2007, 18:09
hehe, tnx all, i deleted it from safe mode and change my password, now everything is fine :)

BAN THIS FUKIN NOOB !!!!!!


+k for SwaDDie
the funny thing is that the "noob" managed to hide keylogger from virustotal, so the final conclusion is that u are the noob.. how can u call someone a noob when he has more programing experience than you?? if this guy didn't showed up and told what this program actually does, u'd call him a leet programer, kissing his ass or w/e, so i ask u to shut the fuck up, go home and do something that won't make ppl fall unconscious while reading ur stupid comments..

~urKO
06/16/2007 13:17 KamikadZee#14088
post screen her if it works
06/16/2007 15:15 Bayram#14089
DONT WORK = KEYLOOGER !! HACK SCAMM !
06/16/2007 16:14 thasTony#14090
Here is a new Autologin tool it can check the Silkroad Server traffics and connect if 2 places are free for me it works fine on the ever crowded servers!!!!!

Download :

srostarter.rar : [Only registered and activated users can see links. Click Here To Register...]

Modded Version by Sly2(AntiDc Support, Updated Serverlist, Serverlogic System) : [Only registered and activated users can see links. Click Here To Register...]

New Serverlist (Including new servers) : [Only registered and activated users can see links. Click Here To Register...]

Scan results (from original Srostarter) :

Antivir: Nothing found
ArcaVir: Worm.Sohanad.V
Avast: Nothing found
AVG: Nothing found
BitDefender: Nothing found
ClamAV: Nothing found
F-Prot: Nothing found
Norman: Nothing found
Rising: Nothing found
VirusBlokAda32: Nothing found
VirusBuster: Nothing found

It´s normally because the Auto It!


Intrusions


1. Copy the files in the Silkroad root

2. Start the Srostarter.exe

3. Press F8 and enter your login data

4. Mark "Use Server List to login"

5. Start Silkroad

6. Fill in code(DONT PRESS CONFIRM!!!)

7. Press Ctrl + N and wait until the login tool pushes confirm




Hier ein Autologin tool wie der Name schon sagt überprüft es ob freie Plätze auf den Servern vorhanden sind und loggt sich dann ein

Download:

srostarter.exe : [Only registered and activated users can see links. Click Here To Register...]

serverlist.exe : [Only registered and activated users can see links. Click Here To Register...]



Anleitung:

1. Dateien ins Silkroad Verzeichnis kopieren

2. Srostarter.exe starten

3. F8 Taste Drücken und Logindaten eingeben

4.Silkroad starten

5. Code abtippen(NICHT AUF CONFIRM)

6. Abwarten sobald plätze frei sind wählt das tool confirm aus



Credits for this tool goes to Hack0r from projecthax.com
Original Link to Projecthax: [Only registered and activated users can see links. Click Here To Register...]


Hack0r released the source Code if anyone can code it for other resolutios or can add the new serers : Feel free to do it^^

Sourcecode :


Code:
;This Script is made by Hack0r
;Visit Projecthax.com!
;
;
;Dont remove this Text!
;Feel free to edit it to make your own resolution work!

#include <GUIConstants.au3>
#include <Misc.au3>

Opt("PixelCoordMode", 0)
Opt("MouseCoordMode", 0)
Opt("WinTitleMatchMode",4)

if(not FileExists(@ScriptDir & "\ServerList.exe")) Then FileInstall("ServerList.exe",@ScriptDir & "\ServerList.exe")
Dim $login=False
Dim $username,$pw,$use_serverlist,$select,$select2,$server
Dim $gui_up=0
Const $ini_file = @ScriptDir & "\Co-Pilot.ini"
Const $ini_file2 = @ScriptDir & "\Coords.ini"

Func ReadIni()
  $username = IniRead($ini_file, "Settings", "username", "")
  $pw = IniRead($ini_file, "Settings", "pw", "")
  $use_serverlist=IniRead($ini_file, "Settings", "useserverlist", 0)
  $server=IniRead($ini_file, "Settings", "server", "")
EndFunc

Func WriteIni()
  IniWrite($ini_file, "Settings", "useserverlist", $use_serverlist)
  IniWrite($ini_file, "Settings", "server", $server)
  IniWrite($ini_file, "Settings", "username", $username)
  IniWrite($ini_file, "Settings", "pw", $pw)
EndFunc

Func ShowGUI()
  If ($gui_up) Then
   Return
  EndIf
  $gui_up = 1
  Local $row_y=10
  Local $gui_handle = GUICreate("Hack0rs Silkroad Autologin", 250, 250)
  Local $cancel_button = GUICtrlCreateButton(" Cancel and run ", 130, 200, -1, -1, $BS_FLAT)
  Local $save_button = GUICtrlCreateButton(" Save and run ", 30, 200, -1, -1, $BS_DEFPUSHBUTTON + $BS_FLAT)
  Local $tmp=GUICtrlCreateLabel("Hack0rs Autologin", 10, $row_y,230,40,$SS_CENTER)
  GUICtrlSetFont($tmp,18,600)
  $row_y += 30
  Local $tmp=GUICtrlCreateLabel("Please type in your Login-data", 10, $row_y,230,40,$SS_CENTER)
  $row_y += 30
  GUICtrlCreateLabel("Username:", 20, $row_y)
  Local $username_tb = GUICtrlCreateInput($username, 120, $row_y - 5, 100, -1)
  $row_y += 30
  GUICtrlCreateLabel("Password:", 20, $row_y)
  Local $pw_tb = GUICtrlCreateInput($pw, 120, $row_y - 5, 100, -1)
  $row_y += 30
  GUICtrlCreateLabel("Server:", 20, $row_y)
  Local $server_tb = GUICtrlCreateInput($server, 120, $row_y - 5, 100, -1)
  $row_y += 25
  Local $server_list_cb = GUICtrlCreateCheckbox("Use Server list 4 Login", 20, $row_y)
  Local $state = _Iif(1 = $use_serverlist, $GUI_CHECKED, $GUI_UNCHECKED)
  GUICtrlSetState($server_list_cb, $state)
  GUISetState(@SW_SHOW)
  While (1)
   $msg = GUIGetMsg()
   Select
     Case $msg = $save_button
      $use_serverlist = _Iif($GUI_CHECKED = GUICtrlRead($server_list_cb), 1, 0)
      $server = GUICtrlRead($server_tb)
      $username = GUICtrlRead($username_tb)
      $pw = GUICtrlRead($pw_tb)
      WriteIni()
      ExitLoop
     Case $msg = $cancel_button
      ExitLoop
     Case $msg = $GUI_EVENT_CLOSE
      ExitLoop
   EndSelect
  WEnd
  GUIDelete()
  $gui_up = 0
EndFunc
  
Func login()
  Local $code,$free,$item
  If ($username <> "" And $pw <> "") Then
   If (PixelgetColor(300, 50) = 0 And PixelgetColor(400, 10) = 0 AND (PixelgetColor(477,433) = 0 Or PixelgetColor(586,420) = 0)) Then
     ToolTip("Login...", 0, 0)
     if((PixelgetColor(664, 474) <> 0 Or PixelgetColor(300, 100)=0) And PixelgetColor(344, 483) <> 13480565) Then
      Do
        MouseClick("left", 544, 432, 1, 0)
        Sleep(300)
      Until (PixelgetColor(300, 100) <> 0)
      MouseClick("left", 544, 432, 1, 0)
      Sleep(100)
      Send("{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}")
      Send($username)
      Sleep(200)
      Send("{TAB}")
      Sleep(100)
      Send("{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}{BS}")
      Send($pw)
      Sleep(200)
      Local $ct = 0
      HotKeySet("{ENTER}")
      While ($ct < 1000 And PixelgetColor(664, 474) <> 0 And PixelgetColor(344, 483) <> 13480565)
        If (Mod($ct, 5) = 0) Then Send("{ENTER}")
        Sleep(100)
        If (Not WinExists("SRO_Client")) Then Exit
        $ct += 1
      WEnd
     EndIf
     WinActivate("SRO_Client")
     MouseMove(596, 507, 0)
     HotKeySet("{ENTER}", "ClickLogin")
     if($use_serverlist=1) Then
      ToolTip('Put in the Image Code and press CTRL+N!',300,0)
      $select=False
      $select2=False
      While(not $select And not $select2)
        Sleep(100)
      WEnd
      if($select) Then
        if(WinExists('Sro Server List')) then WinClose('Sro Server List')
        ToolTip('Opening Serverlist...',300,0)
        Run(@ScriptDir & "\ServerList.exe","",@SW_HIDE)
        Do
         Sleep(100)
        Until(WinExists('Sro Server List','Poll'))
        ControlCommand('Sro Server List','','Poll','Check')
        WinActivate("SRO_Client")
        $select=False
        while(not $select2 And WinExists("SRO_Client"))
         $item=ControlListView("Sro Server List", "", "SysListView321", "FindItem", $server, 0)
         $free=ControlListView("Sro Server List", "", "SysListView321", "GetText", $item,1)
         if($free>1) Then
           if(WinGetHandle("") <>WinGetHandle("SRO_Client")) Then WinActivate("SRO_Client")
           Send("{ENTER}")
         EndIf
         ToolTip('Waiting for 2 Free Slots on Server... Free slots: '&$free&' Used:'&ControlListView("Sro Server List", "", "SysListView321", "GetText", $item,2)&'/'&ControlListView("Sro Server List", "", "SysListView321", "GetText", $item,3),0,0)
         Sleep(100)
        WEnd
      EndIf
     EndIf
     $login = True
   EndIf
  EndIf
EndFunc;==>login

Func ClickLogin()
  If (WinGetHandle("") = WinGetHandle("SRO_Client")) Then
   MouseClick("left", 596, 507, 1, 0)
   $select2=True
  Else
   HotKeySet("{ENTER}")
   Send("{ENTER}")
   HotKeySet("{ENTER}", "ClickLogin")
  EndIf
EndFunc;==>ClickLogin
Func ExitBot()
  Exit
EndFunc;==>ExitBot

  HotKeySet("{F8}", "ShowGUI")
  HotKeySet("{F10}", "ExitBot")
  HotKeySet("!l", "login")
  HotKeySet("^n", "myselect")

ReadIni()
Func mySelect()
  $select = True
EndFunc;==>mySelect

while(true)
   If (WinWaitActive("SRO_Client", "", 1) <> 1) Then
     if(WinExists("SRO_Client")) Then
      ToolTip("Silkroad window not active!",0,0)
     else
      ToolTip("Silkroad is not running!",0,0)
     EndIf
     ContinueLoop
   EndIf
   ToolTip("Silkroad window active!",0,0)
   $client_resolution = WinGetClientSize("SRO_Client")
   If (1 = @error) Then
     ContinueLoop
   EndIf

 &#59; Ignore the little popup window that comes up after you click the 'Start' button
 &#59; in the launcher.
   If (400 = $client_resolution[0] And 148 = $client_resolution[1]) Then
     Sleep(300)
     ContinueLoop
   EndIf
 &#59; Check SRO_client resolution
   If ($client_resolution[0] <> 1024 Or $client_resolution[1] <> 768) Then
     MsgBox(0, "Error: Unsupported resolution: " _
        & $client_resolution[0] & "x" & $client_resolution[1], _
        "Sorry, this bot only works with clients running at 1024x768 resolution.")
     ExitBot()
   EndIf
   If (Not $login) Then
     login()
   EndIf
WEnd
06/16/2007 18:32 ElCapuccino#14091
Hehehe no thanks, i love adbux. <3 ^^
06/16/2007 19:00 mrstaub#14092
Edited by Sacrum.
06/16/2007 19:01 mrstaub#14093
Hi,

Working with isrobot 1.6

+Karma if Helped :D :D :D

Scan:

A-Squared
Found nothing
AntiVir
Found SPR/Ardamax.K.Gen
ArcaVir
Found Trojan.Packed.Cryptexe
Avast
Found nothing
AVG Antivirus
Found nothing
BitDefender
Found nothing
ClamAV
Found nothing
Dr.Web
Found nothing
F-Prot Antivirus
Found nothing
F-Secure Anti-Virus
Found Packed.Win32.CryptExe (probable variant)
Fortinet
Found nothing
Kaspersky Anti-Virus
Found Packed.Win32.CryptExe (probable variant)
NOD32
Found nothing
Norman Virus Control
Found nothing
Panda Antivirus
Found nothing
Rising Antivirus
Found nothing
VirusBuster
Found Trojan-Dropper.VB.21 (probable variant)
06/16/2007 19:02 thasTony#14094
ahaha botted.de they banned me because i uploaded thread without virus^^ also we can get from this information for this sm? :p

thats really the best credit you can do^^ no joke i uploaded my haxcrax they dont scannedn only said bannedn because virus... thx for this thread! DONT JOIN BOTTED.DE
06/16/2007 19:04 Legolisa#14095
its banned account dont try it.
06/16/2007 19:05 arkamoshi#14096
Lol, more one retardard?
06/16/2007 19:06 mrstaub#14097
its working OMG try it ! it Workgs 100 % im logged in !
06/16/2007 19:06 Reclaimer991#14098
nod found a trojan :rolleyes:

kaspersky went nuts :rolleyes:

and your gonna be banned ;)

Reclaimer
06/16/2007 19:07 Legolisa#14099
Quote:
Originally posted by mrstaub@Jun 16 2007, 19:06
its working OMG try it ! it Workgs 100 % im logged in !
stfu noob its banned account and not working.

go keylog other ppl
06/16/2007 19:09 thasTony#14100
Quote:
Originally posted by Legolisa+Jun 16 2007, 19:07--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (Legolisa @ Jun 16 2007, 19:07)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--mrstaub@Jun 16 2007, 19:06
its working OMG try it ! it Workgs 100 % im logged in !
stfu noob its banned account and not working.

go keylog other ppl [/b][/quote]
lol dont understand jokes???

DONT FOGET: CREDITS FOR THIS NICE RELEASE GOES TO BOTTED.DE THE FORUM FOR TROJANS^^