Pop Up Window = Malware? Virus? Help

I have a month old Macbook Pro and about a week I started getting the following pop up at random times.
"Popup blocking software has prevented display of the Trend Micro Security Services dashboard. Open an Internet Explorer window and enter the following URL in the Address box: http://tmss.trendmicro.com/dashboard."
I don't know what Trend Micro is and I'm not using Internet Explorer at the time. (Although I do have Windows installed on my Mac via VMWare Fusion for occasionally work projects that require Windows.) I dismiss the pop up and everything seems to be fine.
But it gets worse today I got that some pop up on my iPhone and now Safari on my iPhone is not working correctly.
Help?

Hi,
Several hits from Google...
http://www.techspot.com/vb/topic102233.html
http://forums.macrumors.com/archive/index.php/t.../t-681079.html
http://www.mac-forums.com/forums/os-x-operating-system/43777-do-i-have-some-malw are.html
There aren't any Mac viruses so you can rule that out.
MIght be a good idea to restore your iPhone just in case, instructions here.
http://support.apple.com/kb/ht1414
TrendMicro sells anti virus software. http://us.trendmicro.com/us/home/
Carolyn.
Message was edited by: Carolyn Samit

Similar Messages

  • How to display check box in the search help restriction pop-up window

    Hi Experts,
    I have created one searc help with dialog value restrictions. Search help contains 4 fields.
    Out of which one field has length one character.
    As oon as user press on F4 on particular field, it will display pop-up window with restrictions and displayed 4 fields.
    I would like to show that field ( one character length field) as check box in search help restrictions pop-up window.
    Pls help me ,... How can we acheive this..
    Thanks
    Raghu

    Ur Exact Requirement,
    Types : begin of itab,
         fields type c,
         Check type c,(For Check Box)
         end of itab.
    data it_tab type standard table of itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_input-low.(If it is in select-options)
      CLEAR  v_input.
      GET CURSOR FIELD s_input VALUE  v_input.
      CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE'
        EXPORTING
          i_input  = v_input
          i_langu  = sy-langu
        IMPORTING
          e_output = v_input.
      CLEAR s_input-low.
      IF v_input NE '' .
        IF v_input NE '?'..
          v_input1-sign = 'I'.
          v_input1-option = 'CP'.
          v_input1-low = v_input.
          APPEND v_input1.
        ENDIF.
      ENDIF.
    SELECT DISTINCT   Field
                      FROM Table
                      INTO TABLE it_tab
                      WHERE field IN v_input.
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
              EXPORTING
                i_title                 = 'Select Colors'
               i_selection             = 'X'
                i_zebra                 = 'X'
                i_screen_start_column   = 5
                i_screen_start_line     = 5
                i_screen_end_column     = 30
                i_screen_end_line       = 12
                i_checkbox_fieldname    = 'CHECK'
                i_tabname               = 'IT_TAB'
                i_scroll_to_sel_line    = 'X'
                it_fieldcat             = it_fieldcat1
                i_callback_program      = sy-repid
                i_callback_user_command = 'USER_COMMAND1'
              IMPORTING
                es_selfield             = selfield
              TABLES
                t_outtab                = it_tab
              EXCEPTIONS
                program_error           = 1.
    Cheers,
    Naveen

  • How to pass values from main window to pop-up window?

    I want to pass a value from the main window (1st form) to pop-up window (2nd form). The first form is of name booking.jsp and 2nd form is of name Fund_booking.jsp. I am using window.showModalDialog to open the window. I think, I have written right code in main window to pass the value but even then I am not able to get it on pop-up window. I am not even able to display an alert on pop-up window saying "hi" by writing a function on save Button in pop-up window. The code is as follows:
    On booking.jsp:
    <script>
    function popup()
    var aForm;
    aForm = D_requisition_id.options[D_requisition_id.selectedIndex].text;
    \\Here I have captured value from a drop down box in my main window form and assigned it to the variable.
    alert(aForm);
    var myObject =new Object();
    myObject.Brandcode = aForm;
    alert(myObject.Brandcode);
    window.showModalDialog("Fund_booking.jsp",myObject,"dialogHeight:400px;dialogWidth:420px;");
    </script>
    <button name="B_FundBooking" tabIndex=4 style='POSITION:absolute;LEFT:393;TOP:292;WIDTH:100;height:24;BACKGROUND-COLOR:buttonface' onClick ="popup()">Fund Booking</button>
    On Fund_booking.jsp:
    <SCRIPT>
    var oMyObject = window.dialogArguments;
    var sBrandcode = oMyObject.Brandcode;
    alert(sBrandcode);
    </SCRIPT>
    Even the following alert is not getting displayed in pop-up window;
    <script>
    function ValidateData()
    alert("Hi");
    </script>
    <button name="B_Save" tabIndex=1 style='POSITION:absolute;LEFT:255;TOP:315;WIDTH:75;height:24;BACKGROUND-COLOR:buttonface' onClick ="ValidateData()">Save</button>
    I am using DIV instead of frames in my both forms. I just want to get that value in my pop-up window to write a query based on which data will get displayed in my table of pop-up window.
    Plz help me to solve this problem.

    Well, this is actually a JavaScript question, not a Java question but I can give some hints.
    When you do pop-up windows you need to put JavaScript in the html of the pop-up itself. Data can be passed by creating new fields in the window object, which the popup can access via the window.openner field.
    So, before invoking the popup add any data to be passed to the window object, then the onLoad function in the popup grabs the data.

  • How to pass value from main window to pop up window?

    I want to pass a value from the main window (1st form) to pop-up window (2nd form). The first form is of name booking.jsp and 2nd form is of name Fund_booking.jsp. I am using window.showModalDialog to open the window. I think, I have written right code in main window to pass the value but even then I am not able to get it on pop-up window. I am not even able to display an alert on pop-up window saying "hi" by writing a function on save Button in pop-up window. The code is as follows:
    On booking.jsp:
    <script>
    function popup()
    var aForm;
    aForm = D_requisition_id.options[D_requisition_id.selectedIndex].text;
    \\Here I have captured value from a drop down box in my main window form and assigned it to the variable.
    alert(aForm);
    var myObject =new Object();
    myObject.Brandcode = aForm;
    alert(myObject.Brandcode);
    window.showModalDialog("Fund_booking.jsp",myObject,"dialogHeight:400px;dialogWidth:420px;");
    </script>
    <button name="B_FundBooking" tabIndex=4 style='POSITION:absolute;LEFT:393;TOP:292;WIDTH:100;height:24;BACKGROUND-COLOR:buttonface' onClick ="popup()">Fund Booking</button>
    On Fund_booking.jsp:
    <SCRIPT>
    var oMyObject = window.dialogArguments;
    var sBrandcode = oMyObject.Brandcode;
    alert(sBrandcode);
    </SCRIPT>
    Even the following alert is not getting displayed in pop-up window;
    <script>
    function ValidateData()
    alert("Hi");
    </script>
    <button name="B_Save" tabIndex=1 style='POSITION:absolute;LEFT:255;TOP:315;WIDTH:75;height:24;BACKGROUND-COLOR:buttonface' onClick ="ValidateData()">Save</button>
    I am using DIV instead of frames in my both forms. I just want to get that value in my pop-up window to write a query based on which data will get displayed in my table of pop-up window.
    Plz help me to solve this problem.

    just attach the value with its url for example
    String names="java";
    <a href="# onclick="window.open('file.jsp?name='+names);"></a>

  • POP UP window or screen to enter badge id ( it should work like Key board)

    Hi ,
    We have requirement that client have touchscreen user interface desktops in plant where production process goes on.
    I am developing a dynpro  program for PP operations. This program will be used in touch screen devices.  Before the operators starts his work , he has to enter his Badge ID (Numbers only). (Note : They don't use Key board for these devices)for that i need to create a pop up window as F4 help. I am looking whether SAP already has any kind of pop-up window which can solve my problem. Please let me know whether any key board screen/window available?..
    Thanks in advance.
    -Siva

    Try :
    *fields-tabname   = 'TRVOR'. " table name
    *fields-fieldname = 'SUMSO'.  "field name which the user might enter..
    *APPEND fields.
    *CALL FUNCTION 'POPUP_GET_VALUES'
    *  EXPORTING
    *   no_value_check        = 'X'
    *    popup_title           = 'Jay'
    **   START_COLUMN          = '5'
    **   START_ROW             = '5'
    * IMPORTING
    *   returncode            = l_returncode
    *  TABLES
    *    fields                = fields
    * EXCEPTIONS
    *   error_in_fields       = 1
    *   OTHERS                = 2 .
    *CALL FUNCTION 'COPO_POPUP_TO_DISPLAY_TEXTLIST'
    *  EXPORTING
    *    task       = 'DECIDE'
    *    titel      = 'TEST POPUP '
    *  IMPORTING
    *    function   = sy-ucomm
    *  TABLES
    *    text_table = it_data.
    [ Check this nice WIKI by Sandra|http://wiki.sdn.sap.com/wiki/x/bIChBg]
    Edited by: J@Y on Oct 5, 2009 9:48 PM

  • POP Up Window Possible?

    Hi Experts ,
    I am working on requirement of poping up a window by scripting ,when ever the Project owner forgets to add a particular collaborator when the project is created. I had implemented the same with throwing a exception , but client has come with requirement of doing same in pop up window like a alert window for html pages.
    So I was trying if at al I can create .. for eg. Like the window u get when u create a project from quick create button. I have gone thru the RG but I dint find any methods for the same.
    Is it possible?.. Any other pointers to achieve the same/similar kind to pop up window ?.
    Help is appreciated!
    Regards,
    Uday.

    Hi Uday,
    Pop-ups are not possible to suit your requirement.
    Please refer Rob's reply in [this|Re: Can we create a POP-UP message by using Script Defination.] thread.
    Thanks
    Devesh

  • JACOB and pop up windows

    I am using JACOB to test a webapp that contains a proprietary activeX control. So far, so good...I can open a browser, navigate around, access the activeX control and call methods on it.
    The problem I have is that one of the webapp links pops up a vbscript window and I cant seem to access it to "click OK" on it. Does anyone know how I can access the dialog window or any other popped up windows? Any help or suggestions is greatly appreciated. I think JACOB is a pretty fantastic library...but really suffers in the documentation aspect and therefore requires a lot of experimenting and tinkering. Cheers.

    I usually create some javascript/php app that calls image
    files from a specific folder. In that folder the Contribute user
    uploads images (menu: File, Publish file from my computer) and the
    thumbnails can be created dynamically. Some lightbox scripting
    would be nice to, instead of using popups.

  • Preventing Inner content of gridview collapse while opening a pop-up window

    Hello, I am trying to print the contents of a gridview using a pop-up window by window.open(). I am using javascript to show the expand and collapse effect for the content of each gridview which is also a gridview. But when I try to print the contents,
    the inner gridviews gets collapsed in the parent window and also in the pop-up window. Any help is appreciated. Thanks in advance.

    Hi,
    Please post in ASP.NET forums, you will receive better help there.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can anyone tell me how to get rid of tlb search? it unfortunately entered into my mac. Whenever I use safari, a pop-up window opens with some ads. Please help me to find a way to remove this malware.

    Can anyone tell me how to get rid of tlb search? It unfortunately entered into my mac. Whenever I use safari, a pop-up window opens with some ads. Please help me to find a way to remove this malware.

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Virus? A pop up window saying the flash player is infected

    Hi there I suddenly got a pop up window when I was browsing Facebook. It says
    WARNING!
    Your video player is infected!
    System has two malicious viruses: Rootkit.Sirefef.Spy und Trojan.FakeAV-Download. Your personal and financial information is not secure.
    Remove viruses, Please promptly update your video player:
    Is this a virus? I am sorry if I asked a stupid question but I am really confused. I am using Mac with google chrome as my browser.
    Thanks a lot for your help.
    link:http://update3.flash-palys.us/Player/Warning-uk.php?installer=Flash_Player_11_for_Other_Br owsers&browser_type=KHTML&dualoffer=false

    Well, you can relax... BOTH of the "infections" it lists ( a "Rootkit" and a "Trojan").... WON'T run on a Mac, so you KNOW it's a fake. There's NO WAY it could have detected WIndows malware on a system running OS X.
    I'd stay away from that Facebook page, and report it to them.

  • Help, Firefox won't let me surf the net on my Windows program. Says I have viruses - Help!!!

    Help me. Right now I'm on my "Ubuntu" program on this computer. IT also has Windows. A few minutes ago, on the Windows program, which I also use Firefox on, I got boxes popping up saying I am infected with viruses - dangerous- blah blah blah. I tried to go to www.avast.com to download their free anti virus protection. Firefox won't even let me search the web to get to avast. It keeps saying I'm in danger and is trying to get me to order a $79.95 version of Win anti virus. help me. Suzanne

    Running a malware program/application may not fix the problem '''''if your infection is the malware listed in the following article'''''. You may need to download and run some other items before the malware program(s) to reverse some of the changes made to your system. Review the following article carefully, and if the screenshots near the top of the article look familiar, follow the instructions given in the order given to rid your system of this pest.
    *http://www.bleepingcomputer.com/virus-removal/remove-win-7-antispyware-2012

  • Firefox 4 crashes after windows recovery virus /malware infection

    Hello My computer was infected by the "windows recovery " virus/malware when running Firefox 4 with administrator right user . I could get rid of the virus/malware using antivirus and antimalware sw ( superantispyware, antimalwarebytes, spybot and avast ) . Currently , no viruses or malwares are reporetd on my system . Still, when starting firefox.exe , the error message " firefox has encountered a problem and needs to close " is triggered and , although firefox starts and runs OK; it will close whenever a send/don't send option is taken on the error message . If I rename the Firefox.ex exe program into another name, Firefox runs OK and the error message is not triggered .
    I have had superantispyware support run an analysis tool on my system and their feedback was that the infection, if any, can only be viral . I had AVAST run in F8 safe mode and no viruses are reported any longer after desinfection of the system where a couple of exes created by the malware were found/deleted . I tried uninstall/reinstall Firefox 4 and 3, but the problem remains . Also, I have looked for a crash report in the documents and settings folder but finds none . Last, I also tried to start firefox.exe in safe mode but it will not start ( it will well start if I rename firefox.exe into another name )
    Thanks beforehand if you can suggest something to solve this .
    Best regards Pierre W

    Does it help if you create a new profile or uninstall and reinstall Firefox?
    If you reinstall Firefox then be sure to remove the Firefox program folder to remove possibly left over files in it.
    You can try to create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If the new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See also:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes

  • I am unable to save plug-in gadgets in Blogger because I get a Javascript:void(0) message on pop-up window. Pop-up blocker is disabled, cache cleared. Help?

    I am trying to add a plug-in gadget to my blogger blog. They use a pop-up window to configure the gadget and then a save button. When I am ready to save the plug-in I see a tiny message in the lower left of the pop-up window which says " Javascript:void(0)". I click "save" but the operation is not fully completed. Here is the strange part. The plug in does appear on my blog but I cannot edit it from the blog. When it was first installed, I could edit the plug-in but the changes would not be saved. Now I cannot edit as no editing buttons appear.
    I have cleared my cache, have exempted the Blogger site from my pop-up blocker. I have rebooted. My Firefox plug-ins are all up to date. I have contacted the support for the company that makes the plug-in, they can't fix it. I tried to contact Google but that help pop-up box also did not work properly as it only allows me to sign in but then nothing more happens.
    I don't want to have to refresh Firefox unless I have to... rebuilding what I have is going to take a lot of time.

    Hi Winnie
    Unfortunately I have been sick and did not read the message before. I apologize.
    I have not received help beyond what is on the page. But when I get I tell you.
    I hope you can get answers. If you receive, I ask that you share with me.
    thank you very much
    best regards
    AC
    Date: Mon, 27 Feb 2012 09:33:10 -0700
    From: [email protected]
    To: [email protected]
    Subject: Pop up Window before saving remembering the need (forcing) to fill required fields in a form
        Re: Pop up Window before saving remembering the need (forcing) to fill required fields in a form
        created by Win_Form in Forms - View the full discussion
    Hi ACI wonder if you can share any responses on to your question above?I too have never used a script but, I have the same problems as you in regards to building a form. And wants to have the same 'protection' and message reminders for the end users. Any information, including a script and/or a contact email of experts you can share with me will help tremendously. Thank you so much in advance. Winnie
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4232307#4232307
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4232307#4232307. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Forms by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Help,how close pop-up window ,and open another view

    Hello,
    How click the pop-up window button ,then close the pop-up window .
    At the same time open another VIEW,and  transfer PO number to the VIEW.
    thanks

    Hi,
    First step is set the SCREEN TYPE as "Modal Dialog Box" in screen property tab.
    Then in PBO of the popup screen take a new GUI status and select DIALOG BOX as status type.
    Then assign some function code in 'X' button say 'CANCEL'.
    the put ur logic like below :
    PBO
    module gui_status.
    PAI.
    module user_command.
    module gui_status.
       set pf-status 'ZPOPUP'.
    endmodule.
    module user_command.
      if ok_popup = 'CANCEL'. " Where ok_popup is the ok_code variable in ur popup screen , also define it in TOP include
        leave to screen 0.
    endif.
    endmodule.
    Hope this will solve your problem and help you to put your logic.
    Thanks

  • Need help big time with pop-up window!

    This is probably an easy answer, I'm not a programmer or a back end guy whatsoever, I'm a graphic designer trying to make his way through a project for a client.
    I'm working up a Flash template, and I need to make a simple pop up window that will view a more detailed version of an image.  The template has a pop up window system where you add your photo to a certain frame of a movie clip.  The problem is, the pop ups have scroll bars built in, and for the life of me I couldn't figure out how to get rid of them, so I duplicated one of the movie clips that looked like it housed the framework of the pop up and deleted the scroll bar (I didn't delete any of the scroll bar code because I had no idea what I was doing).  It actually kind of worked, but the pop up window is a bit too wide and doesn't look right.
    You can view my hack job here...
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    Stay on the "Print" page and click the first "01" button and an ad for Ford will come up.  Click the "Detailed View" button in the description to see the pop up window.
    My question is, there MUST be an easier way to make a pop up window than the workaround I'm using with the template.  What I'm trying to do is have a pop up for each sample of the work (all images would be the same size) for the first four buttons, and then for the "Online Banners" page, have the pop up open up to the dimensions of the particular banner ad and play the swf.  The pop ups shouldn't have scroll bars, only a title and the button to close the window.
    To view the template files, you can download them at:
    http://truetilldeathhq.com/main8_v7/main8_v7.fla
    The "descripton" movie clips have the descriptions and the "Detailed View" links in the frames, and the movie clips I not so gracefully butchered to get the pop up to work were TM_page_content_scroll (where you're supposed to put an image in a certain frame and then put the # of that frame in the Actionscript of the "Detailed View" button), and the TM_main_cont_page2 and TM_pop_up_main3, which were the ones I duplicated.
    If ANYONE can offer even the slightest bit of help, I gratefully appreciate it.  I've been working on this thing for like 15 hours a day and I can't even think straight at this point, thanks!

    I admit to not having read everything you wrote... there's just too much of it. But...
    Hashtable (and HashMap, which you should really be using unless you have some external constraint requiring the use of Hashtable) map each key to a single value object.
    That is, you can map from the key string "4996" to one single other object. And then you can also map from a different key to a different object.
    In you put() method, you add a mapping from "4996" to "good", and then you replace that mapping with one from "4996" to "home". There is only ever one value associated with a given key.
    To map multiple values to a single key, you need the value object to be a collection of some kind (or an array). So, you could map your string "4996" to a List, and that list could contain the strings "good", "home", etc.

Maybe you are looking for

  • 14 days

    Dear All, Our user in sales AR dept want to block credit memo if the invoice that will be credited have posting date + 14 days, which it means if it has reached more than 14 days after posting date, the system requires approval if user want to create

  • Store data in the cloud

    How to store data in the cloud ?

  • SolMan 7.1: SAP_BASIS does not fulfill the prerequisites

    Hello experts, in the phase "configuration of managed systems", step 2 I get the following error: Error SAP_BASIS does not fulfill the prerequisites (installed: 700 SP0000, expected: 700 SP0001) Action Please check SAP Note 1483508 for more informati

  • IDOC status 53 but no document is posted

    All, I am sure this would be answered earlier but not able to find the thread. Can somebody please let me know, when I process the IDOC using WE16, I get status 53 but dont find document as posted. Thanks Sameer

  • General  task (inconsistency SOBJ error)

    Hi Experts, I have the following issue. When I am trying to make the tasks in my workflow as 'Genreal Task'(Edit>Attributes>GeneralTask), I am getting the following message. 'Please check the order's object list (inconsistency SOBJ)'. I  are able to