Jump to content

Infinitex0

Active Members
  • Posts

    248
  • Joined

  • Last visited

About Infinitex0

  • Birthday 01/01/1907

Profile Information

  • Location
    right behind you
  • Interests
    look at the four dots in the pic in my profile for about 15 seconds.<br />Then look at a bright white blank wall(preferably), and see an interesting image. <br /><br />(Squeent(skwent) for better focus)

Infinitex0's Achievements

Polymath

Polymath (5/7)

0

Reputation

  1. Well, just because it says explorer.exe doesn't necessarily mean it is the explorer.exe I've seen viruses that have the process name explorer.exe I suppose you could try any of the above software links.
  2. more something like: function code if kill then $kills = $kills +1 else $deaths = deaths + 1 endfunc didn't really look at the code so I'm just guessing. EDIT:XD I was just reading that sites rules and no names that have anything to do with "Right-wing extremists" never seen that before.
  3. CRAP I MESSED UP GUYS SORRY! I messed up and 2.0 scanned every other port due to a math problem I didn't notice. This is 2.5 it has some tiny changes and the big change of scanning every port. Sorry once again I didn't notice this earlier. #include <guiconstants.au3> $PortScanner = GUICreate("Infinitex0's Port Scanner", 300, 175) GUICtrlCreateGroup("Port Scan", 5, 5, 275, 160) $IPLabel = GUICtrlCreateLabel("IP", 20, 17) $PortIPAddress = GUICtrlCreateInput("127.0.0.1", 20, 33, 125) GUICtrlCreateLabel("Start on Port", 20, 55) $PortStartNumber = GUICtrlCreateInput("1", 20, 68, 125) GUICtrlCreateLabel("End on Port", 20, 91) $PortEndNumber = GUICtrlCreateInput("30", 20, 108, 125) $StartScan = GUICtrlCreateButton("Start", 20, 135, 125) GUICtrlSetFont($StartScan,15) $OnPort = GUICtrlCreateLabel("Scanning Port:None", 150, 142) GUICtrlCreateGroup("Open Ports", 160, 17,105, 125) $OpenPortList=GUICtrlCreateList("", 168, 30, 90, 109) GUICtrlCreateGroup ("",-99,-99,1,1) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_ClOSE ExitLoop Case $msg = $StartScan _StartScan() EndSelect WEnd Func _StartScan() $PortIP=GUICtrlRead($PortIPAddress) $PortEndNumberB=guictrlread($PortEndNumber) $PortStartNumberB=guictrlread($PortStartNumber) TCPStartup() $timerstart = TimerInit() For $LetsGo = $PortStartNumberB To $PortEndNumberB $socket = TCPConnect($PortIP,$PortStartNumberB) ControlSetText("", "", $OnPort, "Scanning Port:" & $PortStartNumberB & "") If $socket = -1 Then $PortStartNumberB = $PortStartNumberB + 1 Else GUICtrlSetData($OpenPortList,$PortStartNumberB) $PortStartNumberB = $PortStartNumberB + 1 EndIf Next TCPShutdown() $timerend = TimerDiff($timerstart) TrayTip("Port Scanner", "Done Process took " & Round($timerend,-1)/1000 & " seconds", 7, 1) EndFunc
  4. hmmm, I have some very weak passwords. Nice script
  5. o.O what he said, I just compile once I'm completely COMPLETELY done (well with that version anyway).
  6. yea, but by right clicking>run script you can run 2
  7. Uhhhhhhhhhhhh aren't gonna get caught botting if you keep dc'ing every 5 minutes?
  8. well, it can be written in hex or decimal......so either one, I just didn't remember if it was hex specific and went on a long talk without really paying attention to the problem because I sometimes type what I think.......<.< but no, the color should be good as long as its value it either hex or decimal.
  9. HotKeySet("{F9}", "stopdamnit") $color = "" $left = 0 $top = 0 $right = 0 $bottom = 0 While 1 $Search = PixelSearch($left, $top, $right, $bottom, $color) If @error = 1 Then Send({RIGHT}) Else MouseClick("left", $Search[0], $Search[1], 2) EndIf WEnd Func stopdamnit() Exit EndFunc Now please leave.
  10. Like this? $minutes=@MIN $seconds=@SEC MsgBox(0, "Current time", $minutes & ":" & $seconds)
  11. I think it might be how you wrote you color to search, I think it needs to be written in hex (reads helpfile) hex or decimal so uhhh it might just not be searching for the pixel until its gone sense you said its only there for 4-5 seconds. and if thats from the start of the script you have a sleep for 10 seconds. I didn't really read much except the pixelsearch because its not in tags
  12. yea, sorry I just didn't type it in scite so it didn't remind me, I was just going of memory.
  13. while 1 mousemove(random(0,@deskwidth), random(0,@deskheight) wend
  14. Have you tried searching the helpfile for "capslock"?
  15. Yea, thats why it was so funny. Kind of like how people started freaking out when Adult swim put up those ATHF LED posters and people thought it was a terrorist thing.
×
×
  • Create New...