AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Symantec Antivirus deleted my exe files
Goto page 1, 2  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
colton



Joined: 17 Aug 2008
Posts: 8

PostPosted: Sun Aug 17, 2008 4:41 am    Post subject: Symantec Antivirus deleted my exe files Reply with quote

Symantec Antivirus just deleted all of my autohotkey scripts' executable files, having mistakenly identified them as trojans. It also seems to be preventing me from creating new exe files.

What should I do?
Back to top
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 1186
Location: switzerland

PostPosted: Sun Aug 17, 2008 6:49 am    Post subject: Reply with quote

I don't know a solution for the symantec program
can restore , example in XP start this and make back to a previous system test point
Quote:
C:\WINDOWS\system32\restore\rstrui.exe

to don't lose your programs:
-make an ahk script which automatically saves to a 2.5" USB drive all created/modified files (example when shutdown)
( at the moment I use xxcopy )
Back to top
View user's profile Send private message
colton



Joined: 17 Aug 2008
Posts: 8

PostPosted: Sun Aug 17, 2008 11:05 pm    Post subject: Reply with quote

Thanks for the reply. However, it's not so much *losing* the programs that I'm concerned about, since I have the scripts from which the programs were compiled. It's the fact that I can't *use* any exe files, or create new ones. So, e.g. my basic keyboard shortcuts cannot be automatically loaded when I start up windows.
Back to top
View user's profile Send private message
poo_noo



Joined: 08 Dec 2006
Posts: 137
Location: Sydney Australia

PostPosted: Mon Aug 18, 2008 3:05 am    Post subject: Reply with quote

Hi

I am struggling against this too. In our network (with lotsa PCs), my compiled AutoHotkey EXEs are being nuked by Symantec.

Currently we are excluding the AHK Program folder (c:\Program Files\AutoHotkey\) as an excluded folder within the configuration of Symantec AntiVirus application. then we get the files restored out of quarantine.

It seems that a virus definition update of 17-08-2008 is the culprit http://securityresponse.symantec.com/security_response/writeup.jsp?docid=2004-021914-2822-99.
_________________
Paul O
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Mon Aug 18, 2008 5:03 am    Post subject: Reply with quote

ditto, i've been using dualboxed.com scripts.. they were deleted..
Back to top
jack



Joined: 04 Sep 2004
Posts: 77
Location: UK

PostPosted: Mon Aug 18, 2008 5:51 am    Post subject: Reply with quote

poo_noo wrote:
Hi



It seems that a virus definition update of 17-08-2008 is the culprit http://securityresponse.symantec.com/security_response/writeup.jsp?docid=2004-021914-2822-99.


i don't think it's that one. i have the same problem and my defs file is '16/08/2008 rev. 3'

jack
Back to top
View user's profile Send private message
jack



Joined: 04 Sep 2004
Posts: 77
Location: UK

PostPosted: Mon Aug 18, 2008 5:54 am    Post subject: Reply with quote

colton wrote:
It's the fact that I can't *use* any exe files, or create new ones. So, e.g. my basic keyboard shortcuts cannot be automatically loaded when I start up windows.


if you have autohotkey installed in the machine then you usually don't need the .exe anyway.

i load my key defs by running 'startup.ahk', which is a script that does lots of startup things for me... and in startup.ahk i have:

Code:
; key definitions
run c:\jack\ahk\keys.ahk



jack
Back to top
View user's profile Send private message
poo_noo



Joined: 08 Dec 2006
Posts: 137
Location: Sydney Australia

PostPosted: Mon Aug 18, 2008 6:38 am    Post subject: Reply with quote

Oh I forgot to mention that I recompiled after renaming/removing UPX.exe and these new files escaped the AV scanner.

Its been a busy day.
_________________
Paul O
Back to top
View user's profile Send private message Visit poster's website
AnAHKUser



Joined: 05 Feb 2007
Posts: 15

PostPosted: Mon Aug 18, 2008 8:53 am    Post subject: Reply with quote

Even if UPX is harmless, AV programs thinks it's virus from time to time. After some bad experiences, I always compile my scripts without compression. Problem solved.
Maybe upx should be disabled by default ?
Back to top
View user's profile Send private message
Andrew237
Guest





PostPosted: Mon Aug 18, 2008 11:56 am    Post subject: Reply with quote

Norton AV is a crap.
Back to top
jack



Joined: 04 Sep 2004
Posts: 77
Location: UK

PostPosted: Mon Aug 18, 2008 12:45 pm    Post subject: Reply with quote

AnAHKUser wrote:
Even if UPX is harmless, AV programs thinks it's virus from time to time. After some bad experiences, I always compile my scripts without compression. Problem solved.


yes, that works very nicely.


thanks

jack
Back to top
View user's profile Send private message
colton



Joined: 17 Aug 2008
Posts: 8

PostPosted: Mon Aug 18, 2008 5:59 pm    Post subject: Reply with quote

jack wrote:
colton wrote:
It's the fact that I can't *use* any exe files, or create new ones. So, e.g. my basic keyboard shortcuts cannot be automatically loaded when I start up windows.


if you have autohotkey installed in the machine then you usually don't need the .exe anyway.

i load my key defs by running 'startup.ahk', which is a script that does lots of startup things for me... and in startup.ahk i have:

Code:
; key definitions
run c:\jack\ahk\keys.ahk



jack


Thanks, I didn't know you could do that.

It doesn't fix things completely, though--the antivirus program freaks out when I try to run the script directly.
Back to top
View user's profile Send private message
colton



Joined: 17 Aug 2008
Posts: 8

PostPosted: Mon Aug 18, 2008 5:59 pm    Post subject: Reply with quote

jack wrote:
AnAHKUser wrote:
Even if UPX is harmless, AV programs thinks it's virus from time to time. After some bad experiences, I always compile my scripts without compression. Problem solved.


yes, that works very nicely.


thanks

jack


How do you set things to compile scripts without perimission?
Back to top
View user's profile Send private message
NLI-Conquer
Guest





PostPosted: Mon Aug 18, 2008 6:42 pm    Post subject: Reply with quote

If you mean compression, you need to rename UPX.exe in the compiler's directory to anything else. (Ex. UPX.exe.bak )
Back to top
colton



Joined: 17 Aug 2008
Posts: 8

PostPosted: Mon Aug 18, 2008 10:32 pm    Post subject: Reply with quote

Yes, thanks, I meant compression.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group