HAL9000 Posted June 11, 2008 Posted June 11, 2008 nice but upload.dllhttp://www.virustotal.com/it/analisis/7dc6...eaa0362a9411f5e
rasim Posted June 11, 2008 Posted June 11, 2008 HAL9000pollopI don`t think that this file contains a virus. Just some antiviruse`s "thinks" that this a virus, because file contains a network functions.
MrCreatoR Posted June 11, 2008 Author Posted June 11, 2008 UploadFile.dll packed with UPX, that's the only reason why antiviruses (wich are not so good at "real" viruses detection ) alerts about possible virus.P.SI will try to implement all the mentioned features when i got the time Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
Cw2K1 Posted October 24, 2008 Posted October 24, 2008 Upload captured image (to imageshack.us).www.tinypic.com is the best image host, can you replace ImagesHack.us with this one? Enjoy the complexity.Feel the power of simplicity.
Cw2K1 Posted October 29, 2008 Posted October 29, 2008 there is a virus in upload.dll file and i can not run your EXE or AU3 script.checked on two computers and both are telling about a virus/Trojan in your files. Enjoy the complexity.Feel the power of simplicity.
TehWhale Posted October 29, 2008 Posted October 29, 2008 It's not a virus. Just disable your antivirus and run it.
Cw2K1 Posted October 29, 2008 Posted October 29, 2008 It's not a virus. Just disable your antivirus and run it.i know it's not a virus or harmful thing but it should not show any warning and why is it doing it? Enjoy the complexity.Feel the power of simplicity.
Armand Posted November 25, 2008 Posted November 25, 2008 (edited) If you could only add support for www.tinypic.com uploading [+maybe account support...] instead of that imageshack shit host... it would be soooooo great !!!! i love the way it works so simple and fast..... and the GUIs you make and the entire general looks of the apps... just PRO !!! Edited November 25, 2008 by Armand [u]My Au3 Scripts:[/u]____________(E)Lephant, A Share download manager (RS/MU etc)Http1.1 Console, The Ez Way!Internet Reconnection Automation Suite & A Macro Recording Tool.SK's Alarm Clock, Playing '.MP3 & .Wav' Files._________________Is GOD a mistake of the Humanity Or the Humanity is a mistake of GOD ?!
SoftVoile Posted November 25, 2008 Posted November 25, 2008 If you could only add support for www.tinypic.com uploading [+maybe account support...] instead of that imageshack shit host... it would be soooooo great !!!! i love the way it works so simple and fast..... and the GUIs you make and the entire general looks of the apps... just PRO !!!www.tinypic.com is better and www.imageshack.us Sucks... Unresolved topics:1- Please help me in Editing or replacing a page in FireFox and IE.Please have a look at them.
junkew Posted November 25, 2008 Posted November 25, 2008 Thanks to all for the good feedbacks! A while ago i asked about this here, but the solution will involve external application usage . Stitching shouldn't be that hard to add expandcollapse popup#include <WinAPI.au3> #include <ScreenCapture.au3> #include <GDIPlus.au3> #include <GUIConstants.au3> #include <WindowsConstants.au3> #include <misc.au3> stitchbitmap("c:\temp\test.bmp") While GUIGetMsg() <> -3 Sleep(10) WEnd Exit ; Just stitching 2 bitmaps of screen Func StitchBitmap($sFileName = "") Local $hWnd, $hDDC Local $HDDC1, $hCDC1, $hBMP1 Local $iW = 200;Size of bitmap width to capture from screen Local $iH = 200;Size of bitmap height to capture from screen $hWnd = _WinAPI_GetDesktopWindow() $hDDC = _WinAPI_GetDC($hWnd) ; Devicecontext to capture from ; Part 1 to show it on the screen ; Create GUI for stitched bump $GUIHandle = GUICreate("Stitched", $iW, $iH * 2, 300, 300) GUISetState() $hDDC1 = _WinAPI_GetDC($GUIHandle) $hCDC1 = _WinAPI_CreateCompatibleDC($hDDC1) $hBMP1 = _WinAPI_CreateCompatibleBitmap($hDDC1, $iW, $iH * 2) _WinAPI_SelectObject($hCDC1, $hBMP1) ;Show 2 parts of a screencapture on screen, capturing in upper left corner of screen ;BOOL BitBlt( HDC hdcDest, // handle to destination DC ; int nXDest, // x-coord of destination upper-left corner ; int nYDest, // y-coord of destination upper-left corner ; int nWidth, // width of destination rectangle ; int nHeight, // height of destination rectangle ; HDC hdcSrc, // handle to source DC ; int nXSrc, // x-coordinate of source upper-left corner ; int nYSrc, // y-coordinate of source upper-left corner ; DWORD dwRop // raster operation code ;); _WinAPI_BitBlt($hDDC1, 0, 0, $iW, $iH, $hDDC, 0, 0, $SRCCOPY) ; Direct copy first capture _WinAPI_BitBlt($hDDC1, 0, $iH, $iW, $iH, $hDDC, 0, 0, $SRCCOPY) ; Direct copy second capture ; Part 2 the actual stitching _WinAPI_BitBlt($hCDC1, 0, 0, $iW, $iH, $hDDC, 0, 0, $SRCCOPY) ; Direct copy first capture _WinAPI_BitBlt($hCDC1, 0, $iH, $iW, $iH, $hDDC, 0, 0, $SRCCOPY) ; Direct copy second capture _WinAPI_ReleaseDC($hWnd, $hDDC) _WinAPI_ReleaseDC($GUIHandle, $hDCD1) _WinAPI_DeleteDC($hCDC1) If $sFileName = "" Then Return $hBMP1 _ScreenCapture_SaveImage($sFileName, $hBMP1) _WinAPI_DeleteObject($hBMP1) EndFunc ;==>Bitmap Stitching FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
Armand Posted December 20, 2008 Posted December 20, 2008 no TinyPic.com support yetZzZ ?!? too bad! [u]My Au3 Scripts:[/u]____________(E)Lephant, A Share download manager (RS/MU etc)Http1.1 Console, The Ez Way!Internet Reconnection Automation Suite & A Macro Recording Tool.SK's Alarm Clock, Playing '.MP3 & .Wav' Files._________________Is GOD a mistake of the Humanity Or the Humanity is a mistake of GOD ?!
Armand Posted December 23, 2008 Posted December 23, 2008 And the people demands:TinyPic.com support ! TinyPic.com support !! TinyPic.com support !!! TinyPic.com support !!!! TinyPic.com support !!!!!Just to let you know...... [u]My Au3 Scripts:[/u]____________(E)Lephant, A Share download manager (RS/MU etc)Http1.1 Console, The Ez Way!Internet Reconnection Automation Suite & A Macro Recording Tool.SK's Alarm Clock, Playing '.MP3 & .Wav' Files._________________Is GOD a mistake of the Humanity Or the Humanity is a mistake of GOD ?!
Aladdin Posted December 23, 2008 Posted December 23, 2008 i think MrCreatoR stoppped updating this thread and he is not interested in adding new functions into it.@AlmarMi am agreed with you.If you could only add support for www.tinypic.com uploading [+maybe account support...] instead of that imageshack shit host... it would be soooooo great !!!!i love the way it works so simple and fast..... and the GUIs you make and the entire general looks of the apps... just PRO !!! _______________________________
Armand Posted December 29, 2008 Posted December 29, 2008 @werter just nice ?!? it's amazing.... BAH - TINYPIC ! [u]My Au3 Scripts:[/u]____________(E)Lephant, A Share download manager (RS/MU etc)Http1.1 Console, The Ez Way!Internet Reconnection Automation Suite & A Macro Recording Tool.SK's Alarm Clock, Playing '.MP3 & .Wav' Files._________________Is GOD a mistake of the Humanity Or the Humanity is a mistake of GOD ?!
Andreik Posted December 29, 2008 Posted December 29, 2008 It would be interesting and a new feature for recording using AVIWriter.au3 by monoceres.
joseLB Posted December 31, 2008 Posted December 31, 2008 Hi MsCreator, when I try to donwload it, I receved from my antivirus (NOD) a message that your file has a kind of "modified trojan".Jose
Pain Posted December 31, 2008 Posted December 31, 2008 http://www.autoitscript.com/forum/index.php?showtopic=34658
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