Exit Posted June 13, 2022 Share Posted June 13, 2022 @obiwanceleri It is best not to use an EXE file, but a CMD file. This is very easy to do with Au3toCmd. Just look in my signature. obiwanceleri 1 App: Au3toCmd UDF: _SingleScript() Link to comment Share on other sites More sharing options...
Skeletor Posted June 13, 2022 Share Posted June 13, 2022 I had this issue until I came across @argumentum digital signing tool. Digitally Signing Your executable Kind RegardsSkeletor "Coffee: my defense against going postal." Microsoft Office Splash Screen | Basic Notepad Program (Beginner) | Transparent Splash Screen | Full Screen UI Link to comment Share on other sites More sharing options...
gi_jimbo Posted November 16, 2022 Share Posted November 16, 2022 (edited) I'm not a regular contributor here but if the @argumentum digital signing tool works, I think it would be good to add it to the "AutoIt and Malware" page (https://www.autoitscript.com/wiki/AutoIt_and_Malware) as well as the "solution" post on this thread. Edited November 16, 2022 by gi_jimbo clarification Skeletor and test1234567 2 Jimbo Using AutoIt v3.3.14.5 and SciTE version 4.2.0 Link to comment Share on other sites More sharing options...
62mkv Posted January 24, 2023 Share Posted January 24, 2023 See for example here: https://www.joesandbox.com/analysis/722827/0/html and here: https://www.virustotal.com/gui/file/8b7098c44275d0203c23f2ce56c0e913c0d6b6d2264bc537e8a9f0a9f07badc9/community and here: https://cuckoo.cert.ee/analysis/3853341/summary/ Maybe it makes sense to mention on the Downloads page and/or Wiki? So people are not getting too frustrated. Or even reach out (if possible) to at least some of community resources to ask them to whitelist the AutoIt itself, by SHA256 maybe Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted January 24, 2023 Moderators Share Posted January 24, 2023 7 hours ago, 62mkv said: Maybe it makes sense to mention on the Downloads page and/or Wiki? So people are not getting too frustrated. Wouldn't curb things as much as you might think. We have tried things like that in the past; there is even an entire thread dedicated to false positives that people see, why the occur, and what to do about them. Yet people continue to post issues they encounter because the don't stop to read. Skeletor 1 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
kjpolker Posted July 12, 2023 Share Posted July 12, 2023 (edited) Not too sure if this is the kind of feedback this thread is looking for but as of lately I have been getting Windows Defender to flag my executable. This is a exe I have been using for years written entirely by me of course, not even additional UDF's outside of the included functions. Trojan:Win32/Bearfoos.A!ml Edited July 12, 2023 by kjpolker Added keywords Link to comment Share on other sites More sharing options...
CYCho Posted September 28, 2023 Share Posted September 28, 2023 (edited) Hiding an AutoIt GUI with WinSetState Triggers a False Detection I think I found at least one of the reasons for false detection by Windows Defender. A couple of years ago, I submitted my zPlayer.exe to Microsoft Defender ATP team for malware analysis and they removed the detection. I repeated this process several times whenever I made small changes in the code. After about 10 times of this process, the false detection stopped and I thought I was, sort of, given a freedom to make whatever changes I wanted. But it abruptly changed recently and Windows Defender statrted to flag my exe again. So I submitted the file again, and they said they had to maintain the detection. I compared the codes of the last previous version, which was not detected, with the current one and I found a clue. My program has video control GUI on top of the video image created by winmm.dll. The current version has a new function to hide the video image including the video control, and I used WinSetState command for both of them. The video image is not my GUI so GUISetState does not work on it anyway. I thought it would be OK to use WinSetState for the video control as well. And that was the mistake. Just out of curiosity I replaced WinSetState with GUISetState for hiding the video control and the false detection stopped. So the lesson I learned is: do not hide an AutoIt GUI with WinSetState. Edited September 28, 2023 by CYCho zPlayer - A Small Audio and Video Player Time Sync + SystemTimeAdjustment Link to comment Share on other sites More sharing options...
Shark007 Posted September 30, 2023 Share Posted September 30, 2023 To follow up with another possible issue I noticed tha triggers false positive is how arrays are formed. This will trigger false positives, Local $arrName = ['3G1', '3G2', '3G3', '3G4', '3G5', '3G6', '3G7', '3G8', '3G9'] This does not trigger false positives, Local $arrName[9] = ['3G1', '3G2', '3G3', '3G4', '3G5', '3G6', '3G7', '3G8', '3G9'] CYCho 1 Link to comment Share on other sites More sharing options...
HAL9000 Posted December 24, 2023 Share Posted December 24, 2023 (edited) Microsoft Defender detect SQLite3_Setup_3.27.2.0.exe as trojan in https://www.autoitscript.com/autoit3/pkgmgr/sqlite/ and MalwareBytes detect SQLITE3_SETUP_3.22.0.0.EXE as Generic.Malware.AI.DDS Edited December 24, 2023 by Jos Link changed. Link to comment Share on other sites More sharing options...
argumentum Posted December 24, 2023 Share Posted December 24, 2023 Publisher: Unknown publisher I think there's a push for having everything "known", as in who made it. Even corporate PCs will be changed/replaced to those that have TPM. The CPU serial number was rejected by the community but now with all those "data hack/stolen/CallItWhatYouWill", the push, based on fear ( in my view ) to accept a "safe" everything, all it does is to have everything known. Who made it. Who is liable. That is my conclusion, even tho each aspect have has it's own story line that will clearly toss away what I come to understand as superstition. My 2 cents. Bottom line, software wise, is to apply an "Extended Validation (EV) Code Signing" or have a high volume of samples running around to ramp up the credit score fame score. Again, my 2 cents. Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting. Link to comment Share on other sites More sharing options...
Developers Jos Posted December 24, 2023 Developers Share Posted December 24, 2023 26 minutes ago, argumentum said: Bottom line, software wise, is to apply an "Extended Validation (EV) Code Signing" True, but that comes at a cost and I am only willing to provide my time to this and other projects. argumentum 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Skdp Posted August 19 Share Posted August 19 (edited) Hi everyone, I've been using AutoIt for a while now and I'm quite happy with it as it's not overly complex and quite advanced in its functionality. Unfortunately, I've been encountering false positives on compiled scripts with AutoIt, especially when I upload them to VirusTotal. I abandoned AutoHotkey because I didn't like their GPL license, which required me to release the source code of my .ahk scripts. As a developer, I believe it's important to have the freedom to choose the license for my own source code. I noticed that "AutoIt3_x64.exe" received a negative rating of -30 from some users, which seems unjustified given its low detection rate and overall notoriety. In fact, it is one of the executables with the least detections overall. It would be great if antivirus companies could consider whitelisting the base code of executables to help reduce these unnecessary detections. I often find myself reporting incorrect detections, and it's quite unnerving. Edited August 21 by Skdp Link to comment Share on other sites More sharing options...
Skdp Posted August 25 Share Posted August 25 On 8/19/2024 at 12:24 PM, Skdp said: I often find myself reporting incorrect detections, and it's quite unnerving. After almost two weeks of my false positive reports via email my executables are still being detected, many companies have not even responded to me.😡 Few detections findings have been removed and few responses received. I don't want to use Au3toCmd because it creates cmd files and not exe. I will be forced to compile the scripts in 64 bit, but they will not work on very old PCs.😢 Furthermore, in the AutoIt license agreement it's written thereis written that only scripts or compiled stand-alone scripts can be sold and that if AutoIt.exe is incorporated into own software product (just to interpret scripts) it can only be distributed, correct? Quote Commercial Use. You may use the SOFTWARE PRODUCT for commercial purposes. You may sell for profit and freely distribute scripts and/or compiled scripts that were created with the SOFTWARE PRODUCT. Link to comment Share on other sites More sharing options...
argumentum Posted August 25 Share Posted August 25 7 hours ago, Skdp said: ... if AutoIt.exe is incorporated into own software product (just to interpret scripts) it can only be distributed, correct? You can legally distribute the script as EXE or AU3 or A3X as that is your product. AutoIt is not your product hence you are not free to distribute it or bundle it, UNLESS it carries AutoIt's own EULA and the user agrees to that too. ( otherwise you are installing another product the user may not agree to ) ... legally speaking, according to my interpretation of the link you provided. Never read the thing until now. Am not a lawyer in your country, nor in mine. These are my interpretations and this is not to be understood as legal counsel. As a side note, it be sensible to add something like: in case something goes wrong with your script. ( I put that one together so I may be bias in the example ) Skdp 1 Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now