Ich habe da keine Ahnung ![]()
Ist aber doch egal oder nicht?
Beiträge von Freaky
-
-
Hier ist das was ich meine:
Die Helfte der zeichen kann ich hier z.b. nicht mehr sehen.
[Blockierte Grafik: http://s2.imgimg.de/uploads/sonderzeichend076eefdPNG.png]
der text oben ist wie hier im bild die erste zeile -
Danke.
Aber jetz zur Datei.
Mir wurde gesagt ich muss es in Binary lesen+schreiben.
Aber wen es in Binary steht dann kann den Text garnicht mehr suchen.
Wie krige ich es anders hin Filewrite mit Sonderzeichen zu bnutzen. -
Ok danke.
Aber was ist wen ich den Text aus einer 5 MB grossen Datei suche?
Wie krige ich dann den anderen string dareingeschrieben bzw. Wie krige ich an der stelle wo "hallo" standt z.b. "12345" hin? -
Hallo
wie krige ich hin aus nem Text z.b. "hallo" rauszusuchen und den zu verändern ?
Jetz kommt bestimmt StringInStr
Ok das geht ja aber was wen ich das zweite oder dritte "hallo" im Text suche.
Was dann? -
Hallo
ich will ein bestimmten text aus einer EXE auslesen aber nach der 8ten Zeile bzw. bei der 8ten Zeile geht das script einfach aus
Kann es daran liegen das in der exe ASCII benutz wird? Wen ja wie krige ich es trotzdem hin das Autoit das trotzdem lesen kann
-
bis jetz schütz doch nur der weg von w0uter aber die anleitung wurde leider gelöscht

-
- Also AutoIt ist nicht OpenSource (das war mal)
-
Wenn du wirklich AutoIt3 komplett neu schreiben willst wünsche ich dir viel Spaß

Echten Schutz vor Dekompilierung gibt es erst mit einem echten Compiler und den wird es nicht geben. Bei AutoIt wird nur das Skript etwas verschlüsselt und zusammen mit dem Interpreter in eine Exe gepackt.ich habe nie gesagt autoit neu schreiben

nur den compiler etwas abändern
achja habe gesehen das autoit beim compilen ein passwort setzet xD
Spoiler anzeigen
Code
Alles anzeigenScript Type 3.2.5+ found. AlternativeSigScan for 'FILE'-signature in au3-body... 00043055 -> SrcFile_FileInst: >>>AUTOIT SCRIPT<<< Seeking back to script start position... AU3_Signature: A3 48 4B BE 98 6C 4A A9 99 4C 53 0A 86 D6 48 7D £HK¾˜lJ©™LS †ÖH} 00043013 -> SubType: 0x41 AU3! ~ Note: The following offset values are were the data ends (and not were it starts) ~ 00043017 -> New AutoIt Script Found. - Type2 = EA06 Script is password protected! 00043027 -> Password/MD5PassphraseHash: BCCE2DC43F3F8D3FF9E5AE45C3753FE2 ¼Î-Ä???ùå®EÃu?â MD5PassphraseHash_ByteSum: 00000000 '+ 2477' => decryption key! -
wen du den neusten decompiler kenst dann hilft dir obfuscator nicht weiter

der macht das auch rückgengig
-
Hallo
Autoit ist ja opensource.
Könnte man nicht einfach ne anleitung posten wie man sein eigenen Compiler schreibt bzw. was man ändern muss damit der Decompiler nicht mehr geht?
Weil nach jeder neuen Version geht der Decompiler ja nicht mehr.
Wär es möglich wen ja könnte jemand hier ne anleitung reinstellen für das umschreiben ? -
danke
ich hatte das schon aber es ging irgent wie nicht
ok thread kann geclosed werden -
das weiß ich auch ich meine das es in der startleiste verschwindet

-
danke und was ist mit dem rest ?
-
Hallo
ich suche ein Style für ne Form die mit ws_popup funktioniert und unten in der leiste den namen und ico weg macht und die form die ganze zeit im vordergrund hält wie autoit window info
-
Hallo
ich habe hier ein Script von xeno und da bekomme ich ein WSA error
könnt ihr mir helfen ?Spoiler anzeigen
; MegaChat
#include <File.au3>
#include <GuiIPAddress.au3>
#include <Inet.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>Opt("OnExitFunc", "_endscript")
Opt("MustDeclareVars", 1)Global $title = "MegaChat", $l_port_startValue = 10000, $r_port_startValue = 20000, $left = 100, $logPath = 'MegaChat.log'
If WinExists($title) Then
$title &= ' 2'
$l_port_startValue = 20000
$r_port_startValue = 10000
$left += 500
$logPath = 'MegaChat2.log'
EndIfGlobal $GUI
Global $l_hostname_I, $l_ip_IC, $l_port_I, $listen_B
Global $r_hostname_I, $r_ip_IC, $r_port_I, $connect_B
Global $comm_E, $send_E, $send_B#Region ### START Koda GUI section ### Form=c:\dokumente und einstellungen\xf01145\eigene dateien\chat.kxf
$GUI = GUICreate($title, 445, 508, $left, 111)GUICtrlCreateGroup("Local settings", 10, 10, 420, 105)
GUICtrlCreateLabel("Hostname", 20, 30, 52, 17)
$l_hostname_I = GUICtrlCreateInput(@ComputerName, 105, 25, 131, 21)
GUICtrlCreateLabel("IP-address", 20, 55, 54, 17)
$l_ip_IC = _GUICtrlIpAddress_Create($GUI, 105, 50, 130, 21)
_GUICtrlIpAddress_Set($l_ip_IC, @IPAddress1)
GUICtrlCreateLabel("Listener-Port", 20, 80, 63, 17)
$l_port_I = GUICtrlCreateInput($l_port_startValue, 105, 75, 131, 21)
$listen_B = GUICtrlCreateButton("Listen", 275, 25, 120, 25, $WS_GROUP)
GUICtrlCreateGroup("", -99, -99, 1, 1)GUICtrlCreateGroup("Remote settings", 10, 115, 420, 105)
GUICtrlCreateLabel("Hostname", 20, 135, 52, 17)
$r_hostname_I = GUICtrlCreateInput("not connected ...", 105, 130, 131, 21)
GUICtrlCreateLabel("IP-address", 20, 160, 54, 17)
$r_ip_IC = _GUICtrlIpAddress_Create($GUI, 105, 155, 130, 21)
_GUICtrlIpAddress_Set($r_ip_IC, @IPAddress1)
GUICtrlCreateLabel("Listener-Port", 20, 185, 63, 17)
$r_port_I = GUICtrlCreateInput($r_port_startValue, 105, 180, 131, 21)
$connect_B = GUICtrlCreateButton("Connect", 280, 130, 120, 25, $WS_GROUP)
GUICtrlCreateGroup("", -99, -99, 1, 1)GUICtrlCreateGroup("Communication summary", 10, 220, 420, 155)
$comm_E = GUICtrlCreateEdit("", 15, 235, 410, 134)
GUICtrlCreateGroup("", -99, -99, 1, 1)GUICtrlCreateGroup("Communication send", 10, 375, 420, 95)
$send_E = GUICtrlCreateEdit("", 15, 390, 410, 74)
GUICtrlCreateGroup("", -99, -99, 1, 1)$send_B = GUICtrlCreateButton("Send", 10, 475, 90, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###; Start The TCP Services
;==============================================
TCPStartup()
; Initialize a variable to represent a server-connection
;==============================================
Global $ConnectedSocket = -1
; Initialize a variable to represent a client-connection
;==============================================
Global $ConnectedToSocket = -1
Global $recv_main()
Func _main()
Local $nMsgWhile 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $listen_B
_listen()
Case $connect_B
_connect()
Case $send_B
If $ConnectedToSocket <> -1 Then
_send()
Else
_FileWriteLog($logPath, 'You are not connected!')
MsgBox(16, 'Error', 'You are not connected!', 5)
EndIf
EndSwitch
If $ConnectedSocket <> -1 Then _receive()
WEnd
EndFunc ;==>_mainFunc _send()
Local $txt = GUICtrlRead($send_E)
If $txt <> '' Then TCPSend($ConnectedToSocket, $txt)
; If the send failed with @error then the socket has disconnected
;----------------------------------------------------------------
If @error Then
_FileWriteLog($logPath, 'TCPSend error')
Else
GUICtrlSetData($comm_E, _
@UserName & " : " & $txt & @CRLF & GUICtrlRead($comm_E))
GUICtrlSetData($send_E, '')
EndIf
EndFunc ;==>_sendFunc _connect()
;Attempt to connect to SERVER at its IP and PORT
;=======================================================
$ConnectedToSocket = TCPConnect(_GUICtrlIpAddress_Get($r_ip_IC), GUICtrlRead($r_port_I)); If there is an error... show it
If @error Then
MsgBox(4112, "Error", "TCPConnect failed with WSA error: " & @error & @CRLF & 'Maybe nobody is listening ...')
_FileWriteLog($logPath, 'Connecting error')
EndIf
EndFunc ;==>_connectFunc _receive()
; Try to receive (up to) 2048 bytes
;----------------------------------------------------------------
$recv = TCPRecv($ConnectedSocket, 2048); If the receive failed with @error then the socket has disconnected
;----------------------------------------------------------------
If @error Then
_FileWriteLog($logPath, 'Disconnected')
$ConnectedSocket = -1
EndIf; Update the edit control with what we have received
;----------------------------------------------------------------
If $recv <> "" Then GUICtrlSetData($comm_E, _
GUICtrlRead($r_hostname_I) & " -> " & $recv & @CRLF & GUICtrlRead($comm_E))
EndFunc ;==>_receiveFunc _listen()
; Create a Listening "SOCKET"
;==============================================
Local $MainSocket = TCPListen(@IPAddress1, GUICtrlRead($l_port_I), 100)
If $MainSocket = -1 Then
_FileWriteLog($logPath, 'TCPListen error')
Exit
EndIf;Wait for and Accept a connection
;==============================================
Local $start = TimerInit()
Do
$ConnectedSocket = TCPAccept($MainSocket)
Until $ConnectedSocket <> -1 Or (TimerDiff($start) > 25000); Get IP of client connecting
Local $szIP_Accepted = SocketToIP($ConnectedSocket)
GUICtrlSetData($r_hostname_I, _TCPIpToName($szIP_Accepted))
EndFunc ;==>_listen; Function to return IP Address from a connected socket.
;----------------------------------------------------------------------
Func SocketToIP($SHOCKET)
Local $sockaddr, $aRet$sockaddr = DllStructCreate("short;ushort;uint;char[8]")
$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 ;==>SocketToIPFunc _endscript()
TCPCloseSocket($ConnectedSocket)
TCPShutdown()
Exit (0)
EndFunc ;==>_endscript -
aber irgent wie leuft er nur am anfang nach links
und dann nach rechts und dann für immer nach rechts 
-
ist das normal das der bär am anfang rechts und links leuft danach nur nach rechts?

sonst ganz gut -
jetz aktuelisiert mein desktop tausend mal

davor lief es viel flüssiger
-
habe die datei nicht weil antivier nervt

ich edir gleich mal die datei rein
/EDIT:
ich finde die datei nicht mehr tut mir leid
-
in einem anderen forum was man hier nicht erwähnen darf wurde eine udf erstellt
die udf benutz dllcall mit einer selbst erstellten dll
aber die dll wird als virus angezeigt
aber ich will es ohne virus und ohne dll
ambesten mit dienst oder sowas