![]() |
AW: Hilfe Virusmeldung bei Delphi XE Trial
Zitat:
Zitat:
Zitat:
Zitat:
Aber ich frage dann nochmal. Als was erkennt denn Norton die angebliche Malware? |
AW: Hilfe Virusmeldung bei Delphi XE Trial
@Assarbad: der "Delphi"-Virus war nur bedingt Versionsspezifisch.
> Man hatte teilweise Pfade hardcodiert und dann ist es so, daß man auf die System.pas und System.dcu standardmäßig keine Schreibrechte besitzt, weswegen man diese nur schwer verändern kann und es somit auf ältere Versionen beschränkt war/ist. |
AW: Hilfe Virusmeldung bei Delphi XE Trial
Delphi-Quellcode:
Hiermit war ich beschäftigt. Ich will keinen Gutenberg machen Orginalquelle: Aus der Tippsammlung SwissDelphi Center Mit D-2005/6 unter Vista lief es prima, für D-XE muss es angepasst werden, und da war ich dran, als Norton zuschlug. Was soll ich machen?
function OpenSaveFileDialog(ParentHandle: THandle; fFlags: Integer; const DefExt, Filter, InitialDir,
Title: string; var FileName: string; out ReadOnly: Boolean; IsOpenDialog: Boolean): Boolean; overload; var ofn: TOpenFileName; // szFile: array[0..MAX_PATH] of Char; szFileN: PAnsiChar; // fi: string; begin // GetMem(szFileN,MAX_PATH); Result := False; FillChar(ofn, SizeOf(TOpenFileName), 0); with ofn do begin lStructSize := SizeOf(TOpenFileName); hwndOwner := ParentHandle; lpstrFile := szFileN; nMaxFile := SizeOf(szFileN); if (Title <> '') then begin lpstrTitle := PAnsiChar(AnsiString(Title)); end; flags := fFlags; if (InitialDir <> '') then lpstrInitialDir := PAnsiChar(AnsiString(InitialDir)); // StrPCopy(lpstrFile, FileName); // lpstrFile // fi := PAnsiChar(FileName); // lpstrFilter :='Alle|*.*'#0#0; lpstrFilter := PAnsiChar(AnsiString(CharReplace(Filter, '|', #0) + #0#0)); if DefExt <> '' then lpstrDefExt := PAnsiChar(DefExt); lpfnHook := nil; end; if IsOpenDialog then begin if GetOpenFileName(ofn) then begin Result := True; ReadOnly := ofn.Flags and OFN_READONLY = OFN_READONLY; FileName := string(AnsiString(szFileN)); end; end else begin if GetSaveFileName(ofn) then begin Result := True; FileName := string(AnsiString(szFileN)); end; end end; Der Virenwächter "Sonar" von Norton meldet "Das Programm xy verhält sich verdächtig und wird geblockt." Genauere Erklärungen keine. Willie. |
AW: Hilfe Virusmeldung bei Delphi XE Trial
szFileN > kein Speicher reserviert
Delphi-Quellcode:
> szFileN ist ein Pointer, also stimmt die Länge nicht, abgrsehn davon daß nMaxFile in Chars und nicht in Bytes angegeben werden muß.
nMaxFile := SizeOf(szFileN);
Warum müssen denn ständig welche Ansi, Unicode und Dynamisch vermischen? PAnsiChar/AnsiString/TOpenFileNameA oder PWideChar/WideString/UnicodeString/TOpenFileNameW oder PChar/String/TOpenFileName
Delphi-Quellcode:
function OpenSaveFileDialog(ParentHandle: THandle; fFlags: Integer; const DefExt, Filter, InitialDir,
Title: string; var FileName: string; out ReadOnly: Boolean; IsOpenDialog: Boolean): Boolean; overload; var ofn: TOpenFileName; szFileN: array[1..MAX_PATH] of Char; begin //Move(szFileN, PChar(FileName)^, (Length(FileName) + 1) * SizeOf(Char)); FillChar(szFileN, SizeOf(szFileN), 0); FillChar(ofn, SizeOf(ofn), 0); with ofn do begin lStructSize := SizeOf(ofn); hwndOwner := ParentHandle; lpstrFile := @szFileN; nMaxFile := Length(szFileN); if Title <> '' then lpstrTitle := PChar(Title); flags := fFlags; if InitialDir <> '' then lpstrInitialDir := PChar(InitialDir); lpstrFilter := PChar(CharReplace(Filter, '|', #0) + #0#0); if DefExt <> '' then lpstrDefExt := PChar(DefExt); lpfnHook := nil; end; //if IsOpenDialog then //begin // if GetOpenFileName(ofn) then // begin // Result := True; // ReadOnly := ofn.Flags and OFN_READONLY = OFN_READONLY; // FileName := szFileN; // end; //end //else //begin // if GetSaveFileName(ofn) then // begin // Result := True; // FileName := szFileN; // end; //end; Result := (IsOpenDialog and GetOpenFileName(ofn)) or (not IsOpenDialog and GetSaveFileName(ofn)); if Result then begin ReadOnly := ofn.Flags and OFN_READONLY = OFN_READONLY; FileName := szFileN; end; end; |
AW: Hilfe Virusmeldung bei Delphi XE Trial
Danke,
aber was verursacht das Verhalten von Norton? Gibt es wirklich einen Virus oder oder verhält sich mein Programm "verdächtig"? W. |
AW: Hilfe Virusmeldung bei Delphi XE Trial
Zitat:
Zitat:
Zitat:
|
AW: Hilfe Virusmeldung bei Delphi XE Trial
now a days all anit-virus vendors went paranoid and bizarre, there are many FALSE positives and any delphi version reports on some machines a virus and on some not. I have been sending out over 30 mails to anti-virus vendors addressing this FALSE positive issue but had no success.
I think this is a planned attack on Delphi OR Embarcadero has somewhere in the exe generation/optimization an algorithm that needs to be fixed. I am advising all my customers who get FALSE positives that it is a FALSE positive and that they should send an email to the Anti-Virus Vendor complaining about it. I have also noticed that sometimes when you change the Application Icon the FALSE positive goes away, have no idea why. |
AW: Hilfe Virusmeldung bei Delphi XE Trial
Zitat:
Are you experiencing it in Delphi 2009 as well? I have that one here in the company, so I could run some tests if needed. Zitat:
Zitat:
|
AW: Hilfe Virusmeldung bei Delphi XE Trial
Hello plusplus,
you are right, if I change the Program Icon, the program runs without protest of the Norton Virus-Guard. I's very mysterious. is't it? Das Problem versaut mir auch den Testzeitraum, da könnte man schon an Absicht denken. Willie. |
AW: Hilfe Virusmeldung bei Delphi XE Trial
Naja Norton hat ja nun nichts mit den Testzeiträumen von Emba zu tun ;) Das ist doch dann ein bisschen zu viel Verschwörungstheorie ;)
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:36 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz