Jump to content
Advert

7h331337

Active Members
  • Posts

    172
  • Joined

  • Last visited

About 7h331337

  • Birthday 07/02/1990

Profile Information

  • Location
    cyber space

Recent Profile Visitors

567 profile views

7h331337's Achievements

Prodigy

Prodigy (4/7)

0

Reputation

  1. i have searched and there is no example of how to create and execute a function useing execute()
  2. is it possible to use the execute function to create and call the function like so. page() func _page() msgbox(0,0,0) endfunc i have tryed to do this in so many different ways but non of them work $p = "func _page() & msgbox(0,0,0)& endfunc & _page()" Execute($p) thanks
  3. basically the proxy will only half load images and some times dose not fully load all of the content from a page i was wondering if anyone could see anything wrong or could suggest anything
  4. i started to make a passive proxy in autoit but it is not fully functional and i am out of ideas i was wondering if any one could help thanks $timer= 1 $timer1 = 1 TCPStartup() Global $proxyin, $proxyout, $proxyin1 $proxyin1 = TCPListen("127.0.0.1", 89) Do $proxyin = TCPAccept($proxyin1) Sleep(10) Until $proxyin > 0 While 1 Sleep(100) $inrecv = TCPRecv($proxyin, 10000) If $inrecv > "" Then ConsoleWrite($inrecv) Do $proxyout = TCPConnect(_site($inrecv), 80) Sleep(10) Until $proxyout <> -1 ConsoleWrite(0) TCPSend($proxyout, $inrecv) $ourrecv = "" $timer1 = 0 Do Sleep(500) $r = TCPRecv($proxyout, 10000) $ourrecv &= $r $timer1 = $timer1 + 1 Until $r > " " or $timer1 = 10 Do Sleep(100) $r = TCPRecv($proxyout, 10000) $ourrecv &= $r Until $r = "" ConsoleWrite($ourrecv) TCPSend($proxyin, $ourrecv) $inrecv = TCPRecv($proxyin, 10000) TCPCloseSocket($proxyin) Do $proxyin = TCPAccept($proxyin1) Sleep(10) Until $proxyin > 0 EndIf WEnd Func _site($string) Local $site = StringSplit($string, @CRLF) If $site[2] < " " Then $site = StringSplit($site[3], ":", 1) Else $site = StringSplit($site[2], ":", 1) EndIf Return TCPNameToIP(StringStripWS($site[2], 8)) EndFunc ;==>_site
  5. is there a whay to brodcast to all the network and not to a specific ip, as i beleve this is what udp dose but in autoit you have to define a ip for it to send to. the question i ask is it possible to brodcast all over the network
  6. i have been messing around with this for a couple of days and i love it i can run lots of exe's for mem but i have one question why can't i run autoit compiled scripts is it because of the memory allocation thanks
  7. CAN ANY ONE HELP ME WITH HTTP BASIC AUTHENTICATION I HAVE TRYED SO MANY WAYS BUT CANT GET IT TO WORK ANY HELP WILL BE MUCH APPRECIATED can any one help me plz $command = "GET "&$request&" HTTP/1.1"&@CRLF $command &= "Host: test.com"&@CRLF $command &= "User-Agent: cls101"&@CRLF $command &= "Authorization: Basic dGVzdDp0ZXN0"&@CRLF $command &= "Connection: close"&@CRLF ty
  8. hi i wrote this(snippets form joshiieeii script) but it only works every second time can anyone help thanks #include-once Const $ADS_NAME_INITTYPE_GC = 3 Const $ADS_NAME_TYPE_NT4 = 3 Const $ADS_NAME_TYPE_1779 = 1 Dim $unlock Dim $mgrvalue Dim $mgrsplit Dim $manager Dim $mgr Dim $title Dim $pwdexpires Global $username, $oMyError, $UserObJ $objTrans = ObjCreate("NameTranslate") Func userandpassword($username, $password) $oMyError = ObjEvent("AutoIt.Error", "ComError") If @error Then Return False $objTrans.Init($ADS_NAME_INITTYPE_GC, "", $username, @LogonDomain, $password) $objRootDSE = ObjGet("LDAP://RootDSE") $objTrans.Set($ADS_NAME_TYPE_1779, @LogonDomain) $objTrans.Set($ADS_NAME_TYPE_NT4, @LogonDomain & "\" & $username & "\" & $password) $strUserDN = $objTrans.Get($ADS_NAME_TYPE_1779) $UserObJ = ObjGet("LDAP://" & $strUserDN) If @error Then Return False Else Return True EndIf EndIf $oMyError = ObjEvent("AutoIt.Error", "") EndFunc ;==>userandpassword Func username($username) $oMyError = ObjEvent("AutoIt.Error", "ComError") If @error Then Return False Else $objTrans.Init($ADS_NAME_INITTYPE_GC, "") $objTrans.Set($ADS_NAME_TYPE_1779, @LogonDomain) $objTrans.Set($ADS_NAME_TYPE_NT4, @LogonDomain & "\" & $username) $strUserDN = $objTrans.Get($ADS_NAME_TYPE_1779) $UserObJ = ObjGet("LDAP://" & $strUserDN) If @error Then Return False Else Return True EndIf EndIf $oMyError = ObjEvent("AutoIt.Error", "") EndFunc ;==>username Func ComError() If IsObj($oMyError) Then $HexNumber = Hex($oMyError.number, 8) SetError($HexNumber) Else SetError(1) EndIf Return 0 EndFunc ;==>ComError
  9. thanks for the advice it is going a lot quicker but i still cant get it to authenticate the users password any suggestions
  10. i have looked at the ad scripts in the forum but i still cant find one that lets you authenticate a user i need to authenticate the users password . i tryed this Const $ADS_NAME_INITTYPE_GC = 3 $objTrans = ObjCreate("NameTranslate") $Domain = $objTrans.InitEx($ADS_NAME_INITTYPE_GC, "", "administrator", @LogonDomain,"pass") msgbox(0,"",$Domain) but it didn't work can anyone suggest anything that might work thanks
  11. it was running out of power any way what i was trying to saying is if you scan the ports it will set it off now it will only go off if someone types something in to it here is the update: #include <GUIConstants.au3> #include <inet.au3> #include <String.au3> Global $lis[100][100], $list[100], $ip, $sockaddr, $exit = False,$recv,$p $lis[0][1] = 0 $email = 0 $Form1 = GUICreate("The Hacker Trapped BY 7H331337", 652, 314, 225, 63) $input1 = GUICtrlCreateInput("you have been trapped by the hacker trapper 2.6 by 7h331337 and your ip has been logged and your isp has been notified", 72, 16, 289, 21) $Label1 = GUICtrlCreateLabel("message", 8, 16, 46, 17) $Group1 = GUICtrlCreateGroup("Ports listening", 8, 56, 353, 105) $ListView1 = GUICtrlCreateListView("NAME|PORT|STATE", 16, 72, 329, 81) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group2 = GUICtrlCreateGroup("PORTS", 368, 16, 273, 281) $Checkbox1 = GUICtrlCreateCheckbox("FTP", 384, 48, 97, 17) $Checkbox2 = GUICtrlCreateCheckbox("TELNET", 384, 80, 97, 17) $Checkbox3 = GUICtrlCreateCheckbox("SSH", 384, 112, 97, 17) $Checkbox4 = GUICtrlCreateCheckbox("HTTP", 384, 144, 97, 17) $Checkbox5 = GUICtrlCreateCheckbox("SNMP", 384, 176, 97, 17) $Checkbox6 = GUICtrlCreateCheckbox("POP3", 488, 48, 97, 17) $Checkbox7 = GUICtrlCreateCheckbox("SMTP", 488, 80, 97, 17) $Checkbox8 = GUICtrlCreateCheckbox("SOCKSPROXY", 488, 112, 97, 17) $Checkbox9 = GUICtrlCreateCheckbox("FINGER", 488, 144, 97, 17) $Checkbox10 = GUICtrlCreateCheckbox("DNS", 488, 176, 97, 17) $Input2 = GUICtrlCreateInput("", 480, 224, 153, 21) $Label2 = GUICtrlCreateLabel("ADD PORT (139)", 384, 224, 87, 25) $Button4 = GUICtrlCreateButton("add port", 480, 256, 81, 17, 0) GUICtrlCreateGroup("", -99, -99, 1, 1) $Button1 = GUICtrlCreateButton("start", 8, 280, 97, 17, 0) $Button2 = GUICtrlCreateButton("stop", 112, 280, 89, 17, 0) $Button3 = GUICtrlCreateButton("set email (optional)", 216, 280, 89, 17, 0) $Group3 = GUICtrlCreateGroup("log", 8, 176, 353, 97) $ListView2 = GUICtrlCreateListView("Time |ip |name |port", 16, 192, 329, 73) GUICtrlCreateGroup("", -99, -99, 1, 1) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Checkbox1 If GUICtrlRead($Checkbox1) = 1 Then $lis[0][1] = 1 $lis[$lis[0][1]][1] = "ftp" $lis[$lis[0][1]][0] = 21 $list[0] = $list[0] + 1 $list[1] = GUICtrlCreateListViewItem("ftp|21|stopped!!!", $ListView1) Else GUICtrlDelete($list[1]) EndIf Case $Checkbox2 If GUICtrlRead($Checkbox2) = 1 Then $lis[0][1] = 2 $lis[$lis[0][1]][1] = "telnet" $lis[$lis[0][1]][0] = 23 $list[0] = $list[0] + 1 $list[2] = GUICtrlCreateListViewItem("telnet|23|stopped!!!", $ListView1) Else GUICtrlDelete($list[2]) EndIf Case $Checkbox3 If GUICtrlRead($Checkbox3) = 1 Then $lis[0][1] = 3 $lis[$lis[0][1]][1] = "ssh" $lis[$lis[0][1]][0] = 22 $list[0] = $list[0] + 1 $list[3] = GUICtrlCreateListViewItem("ssh|22|stopped!!!", $ListView1) Else GUICtrlDelete($list[3]) EndIf Case $Checkbox4 If GUICtrlRead($Checkbox4) = 1 Then $lis[0][1] = 4 $lis[$lis[0][1]][1] = "http" $lis[$lis[0][1]][0] = 80 $list[0] = $list[0] + 1 $list[4] = GUICtrlCreateListViewItem("http|80|stopped!!!", $ListView1) Else GUICtrlDelete($list[4]) EndIf Case $Checkbox5 If GUICtrlRead($Checkbox5) = 1 Then $lis[0][1] = 5 $lis[$lis[0][1]][1] = "snmp" $lis[$lis[0][1]][0] = 161 $list[0] = $list[0] + 1 $list[5] = GUICtrlCreateListViewItem("snmp|161|stopped!!!", $ListView1) Else GUICtrlDelete($list[5]) EndIf Case $Checkbox6 If GUICtrlRead($Checkbox6) = 1 Then $lis[0][1] = 6 $lis[$lis[0][1]][1] = "pop3" $lis[$lis[0][1]][0] = 110 $list[0] = $list[0] + 1 $list[6] = GUICtrlCreateListViewItem("pop3|110|stopped!!!", $ListView1) Else GUICtrlDelete($list[6]) EndIf Case $Checkbox7 If GUICtrlRead($Checkbox7) = 1 Then $lis[0][1] = 7 $lis[$lis[0][1]][1] = "smtp" $lis[$lis[0][1]][0] = 25 $list[0] = $list[0] + 1 $list[7] = GUICtrlCreateListViewItem("smtp|25|stopped!!!", $ListView1) Else GUICtrlDelete($list[7]) EndIf Case $Checkbox8 If GUICtrlRead($Checkbox8) = 1 Then $lis[0][1] = 8 $lis[$lis[0][1]][1] = "socksproxy" $lis[$lis[0][1]][0] = 1080 $list[0] = $list[0] + 1 $list[8] = GUICtrlCreateListViewItem("socksproxy|1080|stopped!!!", $ListView1) Else GUICtrlDelete($list[8]) EndIf Case $Checkbox9 If GUICtrlRead($Checkbox9) = 1 Then $lis[0][1] = 9 $lis[$lis[0][1]][1] = "finger" $lis[$lis[0][1]][0] = 79 $list[0] = $list[0] + 1 $list[9] = GUICtrlCreateListViewItem("finger|79|stopped!!!", $ListView1) Else GUICtrlDelete($list[9]) EndIf Case $Checkbox10 If GUICtrlRead($Checkbox10) = 1 Then $lis[0][1] = 10 $lis[$lis[0][1]][1] = "dns" $lis[$lis[0][1]][0] = 53 $list[0] = $list[0] + 1 $list[10] = GUICtrlCreateListViewItem("dns|53|stopped!!!", $ListView1) Else GUICtrlDelete($list[10]) EndIf Case $Button4 $lis[0][1] = $lis[0][1] + 1 $lis[$lis[0][1]][1] = "user" & GUICtrlRead($Input2) $lis[$lis[0][1]][0] = GUICtrlRead($Input2) $list[0] = $list[0] + 1 $list[$list[0]] = GUICtrlCreateListViewItem("user" & GUICtrlRead($Input2) & "|" & GUICtrlRead($Input2) & "|stopped!!!", $ListView1) Case $Button1 start() Case $Button3 $username = InputBox("username", "type gmail username (me@gmail;.com)") $password = InputBox("password", "type gmail password") $email = 1 EndSwitch WEnd Func start() TCPStartup() For $i = 1 To $lis[0][1] + 1 $lis[$i][3] = TCPListen(@IPAddress1, $lis[$i][0]) If $lis[$i][3] < 0 Then GUICtrlSetData($list[$i], "||cant start") Else GUICtrlSetData($list[$i], "||ok") EndIf Next Do For $i = 1 To $lis[0][1] $acc = TCPAccept($lis[$i][3]) If $acc >= 0 Then intruder($i, $acc) EndIf Next $msg = GUIGetMsg() If $msg = $Button2 Then $exit = True EndIf Until $exit = True $exit = False For $i = 1 To $lis[0][1] + 1 GUICtrlSetData($list[$i], "||stoped!!!") Next TCPShutdown() EndFunc ;==>start Func intruder($num, $acc) TCPSend($acc, "Username: ") do $recv = $recv & TCPRecv($acc, 100) sleep(5) $p = $p +1 Until $recv > " " or $p >= 1000 If $recv > " " Then TCPSend($acc,@crlf & GUICtrlRead($input1)) $ip = SocketToIP($acc) $name = _TCPIpToName($ip) $data = @HOUR & ":" & @MIN & "|" & $ip & "|" & $name & "|" & $lis[$num][0] & " " & $lis[$num][1] GUICtrlCreateListViewItem($data, $ListView2) FileWriteLine("hacker traper log" & @HOUR, $data) SoundPlay("intruder.wav") SoundSetWaveVolume(100) $str = StringSplit(_TCPIpToName($ip), ".") $to = "abuse@" & $str[0] - 1 & $str[0] If $email = 1 Then _INetSmtpMailCom("smtp.gmail.com", @ComputerName, $username, $to, "hacking attempt from " & _TCPIpToName($ip), _TCPIpToName($ip) & " tried to hack in to my network at " & @HOUR & ":" & @MIN & " please resolve this issue asap " & @CRLF & "full description:" & @CRLF & $data, $username, $password) EndIf EndIf TCPCloseSocket($acc) EndFunc ;==>intruder Func SocketToIP($SHOCKET) Local $sockaddr = DllStructCreate("short;ushort;uint;char[8]") Local $aRet = DllCall("Ws2_32.dll", "int", "getpeername", "int", $SHOCKET, _ "ptr", DllStructGetPtr($sockaddr), "int*", DllStructGetSize($sockaddr)) If Not @error And $aRet[0] = 0 Then $aRet = DllCall("Ws2_32.dll", "str", "inet_ntoa", "int", DllStructGetData($sockaddr, 3)) If Not @error Then $aRet = $aRet[0] Else $aRet = 0 EndIf $sockaddr = 0 Return $aRet EndFunc ;==>SocketToIP Func _INetSmtpMailCom($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject = "", $s_Body = "", $s_Username = "", $s_Password = "") $objEmail = ObjCreate("CDO.Message") $objEmail.From = '"' & $s_FromName & '" <' & $s_FromAddress & '>' $objEmail.To = $s_ToAddress $objEmail.Subject = $s_Subject $objEmail.Textbody = $s_Body & @CRLF $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = $s_SmtpServer $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = $s_Username $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = $s_Password $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True $objEmail.Configuration.Fields.Update $objEmail.Send If @error Then SetError(2) EndIf EndFunc ;==>_INetSmtpMailCom
  12. soz about that wireless keyboard lol ran out of power
  13. hacker trapper 2.6 now availably now has automatic isp emailing only works with gmail right now but you can still use it like normal without email to use email click set email if you want to test it just change the value of $to in intruder() please tell me what u think new_hacker_trapper_2.6.rar
  14. ty i hope to add more features tonight like automatic isp abuse forwarding any one have a idea of any features i should add
×
×
  • Create New...