Question about Firefox's phishing site blocker

So I accidentally kicked one of those keyloggers sent to take WoW accounts and when it opened in Firefox 4 it said it blocked the site as it was obviously a phishing. So when it says it blocked the site, it didn't load at all correct? I'd just like to make sure I didn't get anything from the phishing site on my computer.

If you got a blocking page with a red background and you stopped there then you haven't visited that web page.
*http://www.mozilla.com/en-US/firefox/phishing-protection/

Similar Messages

  • Question about firefox permissions for sites

    i have a question about sites permissions
    in google chrom it is easy to set permission for each site like (java, flash plugin, image , ...)
    http://i58.tinypic.com/nl66v9.png
    but i prefer to use firefox
    is there any addon or something else to have this options in firefox ?

    You can inspect and manage the permissions for the domain in the currently selected tab via these steps:
    *Click the "[[Site Identity Button|Site Identity Button]]" (globe/padlock) on the location/address bar
    *Click "More Information" to open "Tools > Page Info" with the Security tab selected
    *Go to the Permissions tab (Tools > Page Info > Permissions) to check the permissions for the domain in the currently selected tab
    You can inspect and manage the permissions for all domains on the <b>about:permissions</b> page.
    *https://support.mozilla.org/kb/how-do-i-manage-website-permissions

  • Few questions about apex + epg and cookie blocked by IE6

    Hi,
    I would like to ask a few questions about apex and epg.
    I have already installed and configured apex 3.2 on oracle 10g (on my localhost - computer name 'chen_rong', ip address -192.168.88.175 ), and enable anonymous access xdb http server.
    now,
    1. I can access 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' without input username / password for realm 'XDB' in IE6;
    2. I can access 'http://localhost/apex/apex_admin' , 'http://192.168.88.175/apex/apex_admin' , and I can be redirected into apex administation page after input admin/<my apex admin password> for realm 'APEX' in IE6;
    3. I can access 'http://chen_rong/apex/apex_admin' in IE6, but after input admin/password , I can not be redirected into administation page, because the cookie was blocked by IE6.
    then, the first question is :
    Q1: What is the difference among 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' ? I have already include site 'chen_rong' into my trusted stes! why the cookie was blocked by IE6. I have already tried firefox and google browser, both of them were ok for 'chen_rong', no cookie blocked from site 'chen_rong'!
    and,
    1. I have tried to use the script in attachment to test http authentication and also want to catch the cookie by utl_http .
    2. please review the script for me.
    3. I did:
    SQL> exec show_url('http://localhost/apex/apex_admin/','ADMIN','Passw0rd');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm XDB for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    MS-Author-Via: DAV
    DAV: 1,2,<http://www.oracle.com/xdb/webdav/props>
    Server: Oracle XML DB/Oracle Database
    WWW-Authenticate: Basic realm="XDB"
    Date: Tue, 04 Aug 2009 02:25:15 GMT
    Content-Type: text/html; charset=GBK
    Content-Length: 147
    ======================================
    PL/SQL procedure successfully completed
    4. I also did :
    SQL> exec show_url('http://localhost/apex/apex_admin/','ANONYMOUS','ANONYMOUS');
    HTTP response status code: 500
    HTTP response reason phrase: Internal Server Error
    Check if the Web site is up.
    PL/SQL procedure successfully completed
    SQL> exec show_url('http://localhost/apex/apex_admin/','SYSTEM','apexsite');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm APEX for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    Content-Type: text/html
    Content-Length: 147
    WWW-Authenticate: Basic realm="APEX"
    ======================================
    PL/SQL procedure successfully completed
    my second questions is :
    Q2: After I entered into realm 'XDB', I still need went into realm'APEX'. how could I change the script show_url to accomplish these two tasks and successfully get the cookie from site.
    the show_url script is as following:
    CREATE OR REPLACE PROCEDURE show_url
    (url IN VARCHAR2,
    username IN VARCHAR2 DEFAULT NULL,
    password IN VARCHAR2 DEFAULT NULL)
    AS
    req UTL_HTTP.REQ;
    resp UTL_HTTP.RESP;
    name VARCHAR2(256);
    value VARCHAR2(1024);
    data VARCHAR2(255);
    my_scheme VARCHAR2(256);
    my_realm VARCHAR2(256);
    my_proxy BOOLEAN;
    cookies UTL_HTTP.COOKIE_TABLE;
    secure VARCHAR2(1);
    BEGIN
    -- When going through a firewall, pass requests through this host.
    -- Specify sites inside the firewall that don't need the proxy host.
    -- UTL_HTTP.SET_PROXY('proxy.example.com', 'corp.example.com');
    -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
    -- rather than just returning the text of the error page.
    UTL_HTTP.SET_RESPONSE_ERROR_CHECK(FALSE);
    -- Begin retrieving this Web page.
    req := UTL_HTTP.BEGIN_REQUEST(url);
    -- Identify yourself.
    -- Some sites serve special pages for particular browsers.
    UTL_HTTP.SET_HEADER(req, 'User-Agent', 'Mozilla/4.0');
    -- Specify user ID and password for pages that require them.
    IF (username IS NOT NULL) THEN
    UTL_HTTP.SET_AUTHENTICATION(req, username, password, 'Basic', false);
    END IF;
    -- Start receiving the HTML text.
    resp := UTL_HTTP.GET_RESPONSE(req);
    -- Show status codes and reason phrase of response.
    DBMS_OUTPUT.PUT_LINE('HTTP response status code: ' || resp.status_code);
    DBMS_OUTPUT.PUT_LINE
    ('HTTP response reason phrase: ' || resp.reason_phrase);
    -- Look for client-side error and report it.
    IF (resp.status_code >= 400) AND (resp.status_code <= 499) THEN
    -- Detect whether page is password protected
    -- and you didn't supply the right authorization.
    IF (resp.status_code = UTL_HTTP.HTTP_UNAUTHORIZED) THEN
    UTL_HTTP.GET_AUTHENTICATION(resp, my_scheme, my_realm, my_proxy);
    IF (my_proxy) THEN
    DBMS_OUTPUT.PUT_LINE('Web proxy server is protected.');
    DBMS_OUTPUT.PUT('Please supply the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the proxy server.');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Please supplied the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the Web page.');
    DBMS_OUTPUT.PUT_LINE('Web page ' || url || ' is protected.');
    END IF;
    ELSE
    DBMS_OUTPUT.PUT_LINE('Check the URL.');
    END IF;
    -- UTL_HTTP.END_RESPONSE(resp);
    -- RETURN;
    -- Look for server-side error and report it.
    ELSIF (resp.status_code >= 500) AND (resp.status_code <= 599) THEN
    DBMS_OUTPUT.PUT_LINE('Check if the Web site is up.');
    UTL_HTTP.END_RESPONSE(resp);
    RETURN;
    END IF;
    -- HTTP header lines contain information about cookies, character sets,
    -- and other data that client and server can use to customize each
    -- session.
    FOR i IN 1..UTL_HTTP.GET_HEADER_COUNT(resp) LOOP
    UTL_HTTP.GET_HEADER(resp, i, name, value);
    DBMS_OUTPUT.PUT_LINE(name || ': ' || value);
    END LOOP;
    -- Read lines until none are left and an exception is raised.
    --LOOP
    -- UTL_HTTP.READ_LINE(resp, value);
    -- DBMS_OUTPUT.PUT_LINE(value);
    --END LOOP;
    UTL_HTTP.GET_COOKIES(cookies);
    dbms_output.put_line('======================================');
    FOR i in 1..cookies.count LOOP
    IF (cookies(i).secure) THEN
    secure := 'Y';
    ELSE
    secure := 'N';
    END IF;
    -- INSERT INTO my_cookies
    -- VALUES (my_session_id, cookies(i).name, cookies(i).value,
    -- cookies(i).domain,
    -- cookies(i).expire, cookies(i).path, secure, cookies(i).version);
    dbms_output.put_line('site:'||url);
    dbms_output.put_line('cookies:');
    dbms_output.put_line('name:'||cookies(i).name);
    dbms_output.put_line('value:'||cookies(i).value);
    dbms_output.put_line('domain:'||cookies(i).domain);
    dbms_output.put_line('expire:'||cookies(i).expire);
    dbms_output.put_line('path:'||cookies(i).path);
    dbms_output.put_line('secure:'||secure);
    dbms_output.put_line('version:'||cookies(i).version);
    END LOOP;
    UTL_HTTP.END_RESPONSE(resp);
    EXCEPTION
    WHEN UTL_HTTP.END_OF_BODY THEN
    UTL_HTTP.END_RESPONSE(resp);
    END;
    /

    I use oracle database enterprise edtion 10.2.0.3. I have already figured out the epg on 10.2.0.3 to support apex 3.2.
    And as I described above, the apex site works fine for ip address , and localhost. but the cookie will be blocked by IE6, if I want to access the site by 'http://computername:port/apex/apex_admin'. This problem does not occured in firefox and google browser. Could someone give me answer?

  • I asked a question about Firefox, now where is it?

    I asked a question on this forum about Firefox. How do I know if anyone answered it? Also, how do I find it again?

    '''My Contributions''' at the top of the main forum pages should show you all your postings here, when you are logged into this forum.
    There has been no answer posted. <br />
    https://support.mozilla.com/en-US/questions/806634?s=&as=s

  • Question about FireFox Hello - window view

    Hi!
    I have a question concerning FireFox Hello.
    When I invite somebody to a conversation, 'small window' view is enabled (I mean video conversation is shown in small window in the left bottom corner of my browser).
    On the other hand, when I was invited, the conversation was displayed in whole tab.
    Is there an option to choose / change proper view?
    Thank you in advance.
    Greetings!

    When you've got the small window, you can expand it out to a separate window and you can then resize it however you wish. See the image below - its the arrow that sits next to the X and points to the top-right.
    You can't currently put the tab into the small window, although we are currently discussing using the same small window UX in future versions of Firefox so you won't have the tab view (but you will be able to pop-out etc).

  • Question about Firefox CSS

    -When I set the background colour of text in firefox,
    it seems to adjust the lineheight slightly, adding
    a coloured line above the text when it is highlighted.
    -I can fix this by settings the line height back.
    -Why does this happen, and how can it be stopped?
    -When will the Firefox live chat, at
    http://support.mozilla.com/en-US/chat
    be active and working again?

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

  • Question about System.in, FileoutputStream and blocking

    Hello everybody,
    I have written a simple java program that read the System.in and append it to file (which is the first argument of the program).
    Here is the context: my client launch several instance of this program at the same time, with the same file passed in argument. In a first time, I did not use the FileChannel.lock() method because I didn't know there will be several instance, but this is not the question.
    The problem is simple: sometime, I can't figure why (and this is why I'm here to ask you), one of the process block, and stay like this until my client kill it.
    So why? It has something to do with the absence of FileChannel.lock()?
    My client is on Solaris, don't know which version, with a JDK 1.5.0_04
    Here is the code:
    InputStream is = System.in;
    InputStreamReader ir = new InputStreamReader(is, encodingMode);
    BufferedReader reader = new BufferedReader(ir);
    FileOutputStream fos = new FileOutputStream(args[0], true);
    String lineSeparator = System.getProperty("line.separator");
    String buf = null;
    while ((buf = reader.readLine()) != null) {
         fos.write(buf.concat(lineSeparator).getBytes(encodingMode));
    }I think the FileChannel.lock on the output file will solve the problem, but I'm just curious about that odd issue.
    Thanks for help, and excuse me for my bad english.

    Ok, I try to launch 20 occurences at the same time on opensolaris 2009.06 and here is what I've got:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    # An unexpected error has been detected by Java Runtime Environment:
    # java.lang.OutOfMemoryError: requested 32756 bytes for ChunkPool::allocate. Out of swap space?
    #  Internal Error (allocation.cpp:120), pid=1603, tid=2
    #  Error: ChunkPool::allocate
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode solaris-x86)
    # An error report file with more information is saved as:
    # /export/home/eric/SocGen/hs_err_pid1603.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    Error occurred during initialization of VM
    java/lang/ClassNotFoundException: error in opening JAR file /usr/jdk/instances/jdk1.6.0/jre/lib/rt.jarI've also got a nice core file and a hs_err_pid1603.log ( here: http://pastebin.com/m513df649
    Funny think is that I can't reproduce it on AIX.
    Hope that can help you helping me.
    Edited by: Eric-Fistons on 13 oct. 2009 13:43
    Edited by: Eric-Fistons on 13 oct. 2009 13:45

  • [semi-solved] Question about firefox css theming

    With my current firefox theme, authenticated urls (top screenshot) show up as dark text on a green background.  However, regular urls (bottom) show up as dark text on a black background, which is almost unreadable unless you highlight the area.
    authenticated url = readable:
    regular url = barely readable:
    Anyone know which specific chrome property will change that bar's color?  Trial and error haven't worked yet, and I can't seem to find any full blown documentation about chrome properties.
    Cheers
    Last edited by tdy (2009-03-09 19:21:14)

    The beta for vimperator 2.0 has a new colorscheme mechanism, so I just upgraded to it and changed the StatusLine colors via vimperator instead of firefox.

  • I have a handful of general questions about Firefox OS as a consumer..

    I couldn't find a better place to post this, so I'm trying on here.
    I'm in the market for a tablet (high-end), and I'm holding off on getting an Android-powered one because of Firefox OS. However, I have some general questions and concerns regarding performance, software and hardware. Here they are.
    1. Is the Firefox OS interface as responsive as a native experience on say an iPad or an Android tablet? (Is there any lag on swipes between screens, button presses, etc?) If not, will it be in the future?
    2. Will I miss the Android marketplace or the Apple app store, being restricted to only HTML5 apps? Do you think this will become an irrelevant question as the HTML5 app ecosystem grows?
    3. Do you think the quality of HTML5 apps will be inferior to those from existing app stores because they are free?
    4. Will the Firefox browser be the only one available in Firefox OS? (i.e. will there be the option to use Chrome, Opera or any other browser if the user so wishes?)
    5. Will Firefox OS include useful utility apps, such as an alarm clock, a calendar, a weather app, etc?
    6. I read a lot, both on the web (news, video game reviews), as well as ebooks. Will Firefox OS on a tablet be a pleasant experience conducive to e-reading? (Will it include a good ebook reader app?)
    7. Will there be a high-end Firefox OS tablet that is comparable in specs to the Nexus 10? (i.e. impressive screen resolution, powerful CPU/GPU, lots of inputs/outputs like USB, HDMI, microSD, etc) When do you think such a device might become available?
    8. Would it be possible to flash Firefox OS onto say a Nexus 10 or other tablet or phone if one wanted to use it as their OS instead?
    Thanks!

    1. Depends on the phone but a avererage power android phone would likely cost the same as a high end firefox os phone.
    2. HTML 5 is really the future of the web, I've heard that Firefox will let you package apps to be playable offline, but not sure if thats true.
    3. I '''think''' Firefox OS may have paid apps that will be restricted to users who buy them.
    4. I think Mozilla will be nice enough to let Google and Opera make browsers. Google let Mozilla do that with FF for android.
    5. See the simulator https://addons.mozilla.org/en-us/firefox/addon/firefox-os-simulator/
    6. too early to say
    7. too early to say, but Foxconn (helps apple) makes some apple products, so yes in the future is see a high end Firefox OS tablet 2-3 years down the road.
    8. not sure
    NOTE: Please note that we are only contributors, we dont develop firefox os.
    You can ask more on the IRC channel as there are likely devs there.
    https://client00.chat.mibbit.com/?server=irc.mozilla.org

  • (hopefully) basic question about buttons in Flash site

    I'm new to Flash & Actionscript and learning as I build a basic site.  My question is:  I have a homepage to the site with navigation buttons, but on all other pages of the site, the buttons need to be in a different position- is there a way to have the buttons move once leaving the homepage? Or would it make more sense to create a new set of buttons for the rest of the site?  If the latter is an option, can I get rid of the original set once the user leaves the homepage so they're not sitting there in the wrong spot?
    I'm using Flash Professional CS4 and a Macbook Pro OSX 10.6.6.
    Also learning through a Lynda.com membership if that's helpful to know.
    Thanks for any advice!!!

    you're welcome.
    p.s.  in the future, mark helpful/correct responses if there are any.

  • How do i find my earlier question about firefox?

    posed a question and can't find it back. The question was: installed ff 4, and everytime after opening the computer I get an update notification regarding ff 4. However - the update fails to connect with the mozilla server. Keeps on trying eternally. Happens every day anew.

    https://support.mozilla.com/en-US/questions?filter=my-contributions
    This is where you end up when you click "My Contributions" on the filter bar that lies at the top of the Question display on this page:
    https://support.mozilla.com/en-US/questions

  • My question about firefox update,marketplace and videos

    My device spice mi fx update error
    marketplace apps not responding some apps in marketplace nothibg appear.
    Some videos not showing.
    Please give me a solution or solve theae issues.

    Hi sajidali,
    I understand you are having issues with your new Firefox OS device.
    Please reply to this message with the following information:
    * What is the OS version and Build ID found in the Device Information page? Please visit [http://mzl.la/Gzz6Kp this link] if you need help finding the Build ID of your phone.
    * Please provide the exact steps to reproduce the issue you are encountering.
    * Who is your current cell phone carrier?
    * How often do you encounter this issue?
    * Does the problem also happen when connected to a Wi-Fi?
    * Do you encounter this problem with all applications in the Marketplace, or only certain applications?
    Please be sure to include as much detail as possible, including any websites that may exhibit this issue, and any error messages that you may be receiving, exactly as they appear. This will ensure that we will have all the information needed to investigate into this. Thank you for your help and we look forward to hearing from you!
    - Ralph

  • Question about Pluarlist website

    A friend of mine asked me this question. He told me that he had seen Pluralist site shown all over on Adobe TV for Dreamweaver, Fireworks and Illustrator about Pluralist site.
    I told him that I have no idea but don't think that Adobe has sample Pluarlist site available for general public to practice with. Am I correct?
    I also encouraged my friend to use Adobe User to User forum where he can get answers from. He said he was not comfortable in doing so. Ok.
    I am certain that there are other Adobe customers who use Dreamweaver/Fireworks/Illustrator probably have the similar question about where is Pluralist site?
    Any comment? Perspective? Why not?
    Have a great day and thanks!

    Murray,
    As you might had seen many Plaralist site demonstrations used on Adobe apps, all over on Adobe TV and all with CS6 apps. A friend asked me about this.
    Since Ken Binney provided an answer. So, I guess that I'll just leave at that. I also had advise a friend to look into Adobe TV for further info. And if he need some further help, chime in Dreamweaver forum. He told me that he doesn't have time for this. I'll just leave at that and move on.
    As always, thanks for your help, Murray.

  • Hi, I have answered no to the question about saving password for one spesific site. I have changed my mind and would like Firefox to save the password. How do I reactivate the password saver for one spesific site?

    Hi, I have answered no to the question about saving password for one spesific site. I have changed my mind and would like Firefox to save the password. How do I reactivate the password saver for one spesific site?

    Check exception list of your Firefox password Manager and check if your site is there or not?
    * http://kb.mozillazine.org/User_name_and_password_not_remembered#Password_Manager_settings

  • My browser window and secure sites state I have an outdated version of Firefox though the 'about firefox' states its version 8....whats going on and how do I fix?

    When I open the browser window (with Google as the homepage) this message is there..."URGENT!
    Your version of Firefox is no longer protected against online attacks.
    Get the upgrade - it’s fast and free! "...I have upgraded several times using the link but the warning continues.
    When I am in sites like Paypal this warning is stated "Update your browser: It looks like you're using an older browser that may have security issues. Help protect your account. "
    When I follow the HELP prompts to assess my current version in 'About Firefox' in the help menu it states that Firefox is up to date and 8.

    Try what edmeister suggested here
    * https://support.mozilla.com/en-US/questions/860579#answer-229218
    let me know

Maybe you are looking for

  • Huge VAR file - Delete OK?

    Using OmniDiskSweeper I found that my MBP was holding: in Private - VAR (7.2GB) - VM (6 GB). Can the VAR or the VM be deleted? Thanks for any help. btw, what are these and why such large files???

  • Addressbook will not search

    My addressBook will not search Do I need to reset the dataBase thingie or somethingie else? Thanks Tom

  • Java and Javaw hang when I open a file

    Hi, I had to clean install my laptop with XP Pro SP2 so I did, I also installed JDK 6 beta, but I tried this with JDK 5 update 7 as well as JDK 1.4.2_08. The problem I am experiencing is that when I have a tool (e.g. NetBeans 5 or Jext 5) or I have m

  • Adobe cs5 master collection on Mac OS X Lion

    I was just wondering if i will have to get adobe cs 5.5 master collection or does cs5 run on lion?

  • Common Services and device removal

    Hello group, Just joined our new Ciscoworks server to our ACS server per the documentation and everything went fine except for the device import from LMS to ACS. Anyway, I have gone through and added a bunch of our devices to ACS manually and now the