Internet tracking

Is there an app that the IT dept can use to track internet activity on an ipad

If you mean what your search and what pages you go on? Then no. Even ISP providers can't see your searches without permission.

Similar Messages

  • ISP Internet Tracking?

    I was looking online for software programs based on internet privacy and protection, such as Firewalls, Intego's Content Barrier, etc and became increasingly alarmed about how easy it seems that someone can get ahold of personal information. Mainly personal information such as internet activity - primarly credit card transactions or Pay Pal over eBay.
    I'm sort of a privacy freak and this worried me. Does a person's ISP keep track or have a log of all internet activity that goes on. Like internet websites, billing information, addresses, credit card numbers, etc? If it does is there some type of contract that makes them withold that information? If it does this seems pretty scary and an invasion of privacy. Any one with simliar ideas or thoughts?
    I know that the ISP doesn't have any use for my internet activity but what if someone somehow got a hold of my information and was able to use my credit card number? Thanks for any replies.

    It's not likely that your ISP is tracking your activity, but it is possible. You should check with them to see what the policy is. The log files required to keep all that info would be huge.
    Overall you are still way more likely to have your information stolen by traditional means, (paper mail theft, stolen or lost wallet, employee theft etc) than online - something like 65 percent tradtional to 11 percent online.
    For on-line security, use good passwords, keep your OS X firewall turned on, use reputable vendors with secure web sites and good security policies, don't send any personal info over unencrypted e-mail, use a VPN connection on public networks and you should be fine.
    Otherwise, keep an eye on your wallet and credit card numbers, hope your credit card and banking employees are reputable, shred your garbage, get a PO Box, and hope for the best...
    Here's a couple of links for more info:
    http://news.com.com/2009-1029_3-5906818.html
    http://www.idtheftcenter.org/index.shtml

  • IP tracking reachablity

    Hi All
    I am trying to set up failover on my core switch
    However when I put in the config I get the following %Entry not configured
    ip route 0.0.0.0 0.0.0.0 10.88.11.151 name BACKUP-INTERNET track 11
    track 11 ip sla 11 reachability
    ip sla 11
    ip sla schedule 11 life forever start-time now
    ip sla enable reaction-alerts
    Please help
    Thanks

    Your best bet would be to follow the doc Reza supplied to get a full understanding but, you might want to try adding:
    "icmp-echo destination-ip source-ip source-ip"
    You have the schedule configured but, your schedule doesn't have a probe(icmp-echo) yet.
    Destination could be 8.8.4.4 or 4.2.2.2 (some reliable Internet address) and source could be a loopback or management ip of the switch

  • Intermittent Indirect REference to login page error

    Hello,
    I am building a small web app in a mixed (java/microsoft) environment. We have no budget for a purchased single sign on solution, so I built one with the following architecture:
    ASP page with integrated windows security, this simply returns to the url passed in as'URL' the clients current logon name.
    This ASP page is called by the IntranetSSOServlet, which then builds and submit the vanilla logon page. This servlet is my logon page, it simply posts it's URL to the ASP page, and if a return is posted from ASP, the logon page is bult and submitted. The IntranetSSOServlet also sets a session variable called user to the current user's windows login.
    I have two secure files, these are .jsp passthrough pages (since accessing the servlet directly did not appear to trip the security requirement and call the logon request from the server, so no users were ever in any roles). These are simple pages with a javascript redirect to the two servlets, and the jsp is only used because the servlets do not seem to trip the security requirement in the App server.
    On my machine this works with no issues, single sign on is a success and all is well, on the machine next to mine it works fine also. However, on several client machines, I keep getting an invalie direct reference to login page.
    My question is this:
    Does anyone see any major issues with the architecture which are causing this?
    It appears that the browser on some clients is attempting to go 'Back'. Is this a standard function of any software packages (spyware, internet tracking software, etc.?)
    I am building with Netbeans 5.0, running Embedded Tomcat 5.5.9 and the pages are all accessed via windows XP/IE 6
    Again, whats weird is that this works fine on several workstations, but throws the invalid direct reference to login on others...
    I am quite confused.
    Code to follow:
    IntranetSSOServlet
    if(request.getParameter("user") != null)
    HttpSession session = request.getSession(true);
    session.setAttribute("user",request.getParameter("user"));
    //If SSO submission has returned a validated user name
    //out.println(request.getParameter("user"));
    //post this name and the default password to the logon
    //This servlet will become the logon page, which will handle the redirects easier
    out.println("<form METHOD=\"POST\" name = \"form\" action=\"../Intranet-WebModule/j_security_check\">");
    //Generate a div to hide all of the input fields
    out.println("<div style=\"display:;\">");
    out.println("<input type=\"text\" name=\"j_username\" value=\""+request.getParameter("user")+"\"/>");
    out.println("<input type=\"password\" name=\"j_password\" value=\"sas\"/></div>");
    out.println("<input type=\"submit\" value=\"Submit\"/></div>");
    request.getSession().setAttribute("user",request.getParameter("user"));
    //out.println("<input type=\"submit\"></form>");
    out.println("</form><script language=\"javascript\">//form.submit();</script>");
    else
    //call the SSO submission page
    out.write("<script language=\"javascript\">location.replace(\"http://HOSTNAME/SSO/SSO.asp?URL="+lookupIntranetGlobalsBean().getJSPSiteRoot()+"IntranetSSOServlet\");</script>");
    out.close();
    This Servlet simply returns from the ASP a string (the user's logon) and then creates the post page, which posts a single dummy password to the app server
    JSP passthrough page (secured resource)
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%--
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    </head>
    <body>
    <script language="javascript">
    location.replace('http://HOSTNAME:8080/Intranet-WebModule/HRTools/newEmployeeAccountServlet');
    </script>
    </body>
    </html>

    Another try besides
         <login-config>
            <auth-method>FORM</auth-method>
            <realm-name>userDatabase</realm-name>
            <form-login-config>
                <form-login-page>/pages_public/login.jsp</form-login-page>
                <form-error-page>/pages_public/loginError.jsp</form-error-page>
            </form-login-config>
        </login-config>is that I try to handle the error code in the web.xml with
    <error-page>
         <error-code>400</error-code>
         <location>/error.jsp</location>
      </error-page>It works when I say location = index.jsp, but it doesn't work when I try to redirect to error.jsp.
    But when I redirect to index.jsp I just reload the login page, but then the user gets no information what has happened, therefore I need the error,jsp.
    I have no idea why. If anybody has a hint or know why it is this way, please let me know!!
    Thanks.

  • Find my iphone not working on mac

    I am testing find my iphone on my mac. However when I try to track it, it says No location avalable although it is connected to the internet.

    Track what? And what is connected to the internet?
    Are you sure "Find my Phone" is turned on in the settings of the iPhone.  I assume you are saying the iPhone has internet turned on.

  • Are there any applications that cleans up your macbook ?

    I bought a macbook a 2 months ago.
    I am wondering if there are any applications that cleans up my macbook. Like the ccleaner for windows.
    Are there any ?

    Novaknlis wrote:
    I bought a macbook a 2 months ago.
    I am wondering if there are any applications that cleans up my macbook. Like the ccleaner for windows.
    Are there any ?
    Ccleaner on Windows has a few functions:
    1: Repairs the Registry
    2: Cleans the caches
    3: Secure Erases free space on the drive / deleted files.
    OnyX for OS X.
    1: OS X doesn't have a Registry to bork, but other things like Preference files, caches etc, can.
    2: OnyX can clean the caches and check for corrupted Preference files, rebuilt ds_store files and other things, basically clean out all the automated stuff designed to make the computer faster so it can rebuild it in case it gets borked or may contain content you rather wish it didn't.
    3: OnyX can Erase whats in the Trash, but not wipe free space on the drive, Apple's provided Disk Utility has a feature to to that.
    So if your looking for something to clean your Internet tracks on OS X, first use the browser cleaning aspects, then OnyX cleaning, then a reboot to clear the OS X DNS cache then a Disk Utility > Wipe Free Space.
    These features are not automated or intertwined with Firefox add-ons like Click2Clean is with CCleaner on Windows. You'll have to perform it manually.
    http://www.titanium.free.fr/
    Another option for totally cleaning one's system faster on OS X would be to use the free VirtualBox to run a free distro ISO of Linux (Ubuntu, Mint, MacBuntu etc) in OS X. Then once the distro is setup in the virtual machine, save a snapshot of this OS state to revert back to after browsing potentially malicious sites in Firefox (in Linux)
    Reverting on takes only a few seconds, instead of the painfully long time OnyX can take, and ensures everything is included for removal, of course a DU free space wipe would be necessary for completeness.

  • Lost iPhone, offline in Find my iPhone

    Lost my iPhone few days ago. Since I was unable to connect the internet at the time, I immedeately
    called the carrier to stop the service to it.
    No ofcourse Find my iPhone shows that it is offline, and all the requested action are pending.
    Would the phone appear to be online, even if someone put another sim-card into it ? And if so,
    would the requested wipe and lock actions take place then ?
    Thanks for answering !!!

    PkJ14 wrote:
    Well, they deffinetly aren´t using the same carrier, because the phone was lost/stolen abroad. Strange, that this tracking system can´t find the phone by it´s IMEI code. To my understanding it is only way to identify the phone !! In other words, Find my iPhone is useless, if the phone is lost and you don´t have internet connection, or the thief is clever enough to turn trackin mode off. And carrier can do nothing about that? Just wondering, why the phones even have the IMEI number.. ?
    Neither find my iPhone nor the IMEI are,  or were ever intended as security features.  The IMEI only exists so carriers can track individual devices to be able to bill them for useage (you have to have some way to uniquely identify each device hitting the network and assign it to an account).  Find my iphone, and ANY internet tracking software, is really only a potentially useful convenience feature (and a limited one at that).
    Your iPhone did have security features on it to protect your information, but you chose to ignore them.  Really, I have little to no sympathy for people who refuse to use a passlock security code on their devices.  Might as well have just pasted any confidential information that was on the phone on a public web page.
    Security does come at the cost of ease and convience of use - always has and always will.  But note that one of the key driving forces in smart phone theft is people looking for identity information, not for the phone itself.  Millions of smart phones, with no security enabled on them, are stolen or lost every year, and every year identity theft grows by billions of dollars - it is not a coincidence.

  • "Secure Empty Trash" of my emails possible?

    Is there a way of trashing my emails within Mail Version 2.1.3 via my laptop's OS 10.4.11 -"Secure Empty Trash"- feature?
    Message was edited by: Tom Swift

    Thank you for the link to mireth.com. Within mireth I found this page which is exactly what I want to do and may do the trick:
    http://www.mireth.com/wt/nxme-erase-email-trash.html
    ===============================================
    ++How to erase email instead of deleting email++
    ++using NetShred X++
    +Mac OS X Internet Track Eraser+
    +When you delete an email or move it to the trash, it's not really gone and can be recovered. You can use NetShred X to ERASE email so it can't be recovered.+
    +* NetShred X can erase email that's in the mail trash bin. If the mail trash bin has been emptied, NetShred X can't erase the email. To erase these emails you've previously deleted, see notes+
    =============================================

  • Changing Apple ID back to old password

    Hello!  In an Apple article http://support.apple.com/kb/ht2526 it explains that if you can see your iPad in iCloud/Find my Ipad, but it's offline that this can happen if your recently changed the Apple ID password online (but not on the pad).  Obviously, if you have it stolen you'd want to change the password (like you should for all you email accounts), but having seen that you will no longer be able to track it, I am unsure it the remote wipe I sent before changing my Apple ID password will still work.  So I followed the instructions of the article and tried to change it back; however, Apple ID won't let you change back to a previously used (recently used) ID.  So what can I do?  Ideally I'd like to see if the iPad goes accesses the internet (track it) and cancel the wipe request (which I figure I can only do by deleting the iPad in iCloud (since it should automatically pop back up if linked to my account (but won't because I changed the password).  What a loop!!!

    You need to ask Apple to get you back into that Apple ID. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (126914)

  • Im importing cds onto my itunes but they are coming up with no track names/artists etc, itunes is saying i have no internet connnection but im on my laptop and im online, can anyone help? ive never had this issues before? they are legit cds from HMV?

    Im trying to import cds i got for xmas onto my itunes and they arecoming up with no artist/album cover or track names, when i click get track info it says i have not internet connection, but im on my windows laptop and can get on the internet, is there something i need to so in itunes tmake it rcognise the album details?

    Hey there lollypops21,
    It sounds like you are connected to the internet otherwise, but iTunes is giving you this error message when trying to get info from the Gracenote database to retrieve your album info. I had a couple of articles I wanted to recommend you try. First this one named:
    iTunes for Windows can't access the Internet if proxy settings are incorrect
    http://support.apple.com/kb/ts1490
    You can always enter in the album information manually with this article if needed:
    iTunes 11 for Windows: Edit song and CD information
    http://support.apple.com/kb/PH12360
    Customize song and CD info
    You can edit information in the Info window to make it easier to find and sort items in your library. For example, you can:
    Group individual movements on a classical CD into one work by indicating the name of the work (for example, “Piano concerto in A Minor, Op. 54”) in the Grouping field.
    Group songs that are part of a compilation together in your library by clicking the Info button and selecting the “Part of a compilation” checkbox.
    Identify the individual artists on a tribute album in the Artist field, and type “various” in the Album Artist field.
    Create your own genre category by clicking Info and typing the category in the Genre field.
    Change the order in which tracks on a CD play by changing the numbers in the Track Number fields.
    Create a Smart Playlist that includes only songs that are just the right speed for your workout by typing the number of beats per minute in the BPM field. For instructions, see Create a Smart Playlist.
    Identify a movie as a music video (click the Options button, and choose Music Video from the Media Kind pop-up menu).
    Identify an item that you imported from a CD as an audiobook, so it appears under Audiobooks instead of Music (click the Options button and choose Audiobook from the Media Kind pop-up menu). If you do this, iTunes also remembers your place in the audiobook.
    Enter custom sorting criteria for an item. Select the item, choose File > Get Info, click Sorting, and enter the custom text.
    iTunes retrieves CD information from the Gracenote media database. For more information, visit the Gracenote website.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • When streaming a movie with the new Apple TV, and using a DSL Internet connection, all audio sound works, e.g., the music track, but the audio track with the actor's voices, does not work. What can I do?

    When streaming a movie with the new Apple TV, and using a DSL Internet connection, all audio sound works, e.g., the music track, but the audio track with the actor's voices, does not work. What can I do?

    Hi Brian,
    Thanks restoring and restarting didn't fix my problem - i have started it fresh and still it doesn't work. Basically I press ONCE on the remote, after the machine has not had any commands for 10 minutes, and the cursor skips from one end of the menu to the other - so I can't choose network or update software etc - I sometimes manage to stop it randomly in the middle of the menu if I press on a command in the middle of the cursor skipping all the menu steps...not sure what the problem is but I have basically not used my brand new apple tv since I bought it for that reason! I should call Apple support I suppose! grrrr hate wasting time with stuff like this!
    Thanks for your help though!
    Pernille

  • Is there a way of "merging" songs in iTunes. Several times, I have downloaded from the Internet, or recorded from CDs, then found the tracks broken up to appear as separate "Albums". I have a 5-movement symphony, which appears as 5 separate songs?

    Is there a way of "merging" songs in iTunes? Several times, I have downloaded recordings from the Internet, or recorded from CDs, then found the tracks broken up to appear as separate "Albums". I have a 5-movement symphony, which appears as 5 separate songs - Irritating!

    Try posting in a more appropriate forum, as this has noting to do with itunes U - the place where University/college/museums post education material.

  • My iphone has been lost in my house and i need to find a way to track it and its offline. it wont connect to the internet so there isnt a way to use find my iphone. i just want to play a sound on it. is there any way i can get a app that connects my ipod

    my iphone has been lost in my house and i need to find a way to track it and its offline. it wont connect to the internet so there isnt a way to use find my iphone. i just want to play a sound on it. is there any way i can get a app that connects my ipod from a laptop or a different way to find it.

    If your phone is offline, the ONLY way to find it is to look for it the old fashioned way.  Your phone CANNOT be located electronically if it's offline.

  • Session tracking and Internet Explorer

    Hi,
    I am currently maintaining a servlet application, on apache/jserv.
    This application implements a session tracking using a shared static hashtable of session data, associated with session id's.
    This application may open more than one client browser windows.
    With netscape, no problem.
    With Internet Explorer, since the version 6, when the client close at least one window, the session is closed.
    Thus, the application reject any new request from this client, sent by still open windows (session cannot be retrieved in the hashtable).
    Has somebody heard about this problem ?
    Thanks for any answer.

    Thanks.
    In fact, I believe that IE keeps the same session for
    child windows.
    The problem is: when you click on a link which open a
    new window, the new open window share the session with
    its parent window.
    When the new window is closed, the session is also
    closed.
    It appears that this mechanism only exists since the
    version 6 of IE.No. Earlier IE version handle session cookies the same way.

  • I lost my phone, I don't have internet on my phone and I need the serial number to track it

    I lost my phone, I don't have internet on my phone and I need the serial number to track it.. I just have my number and the company service.. Is it possible to know it with my apple ID?

    From Reporting a lost or stolen Apple product:
    ...  Although Apple does not have a process to track or flag lost or stolen product, you can use My Support Profile to find a list of serial numbers for items purchased or registered with your Apple ID.
    Try that too.

Maybe you are looking for

  • Running JAXB2 in a 10g Database

    Hi All, We have some java business logic which uses JAXB2. We now would like to be able to call / store this java code inside the database. It's a 10g database, which I understand has the 1.4 JVM, so I've retrotranslated the code (and the JAXB2 depen

  • Slow Performance on QueueReciever.recieve() + MQ

    Hi, I have been wrecking my brains around this pickle for the last week or so and would appreciate any assistance I could get here. Problem Description: Incredibly slow performance when invoking a QueueReciever.recieve() connecting to MQ server versi

  • Consuming Web Service using WS-Security: USERNAME Token

    Hi ABAP Experts, we like to consume a self defined web service between to SAP systems (ECC6 701/006). Without any security settings the connection is successfully.  But we like to setup a message security like USERNAME Token. The wss profiles are alr

  • How to upload company logo in webdynpro application

    Hi,       I  need to upload the company logo in the View of a Webdynpro application. Can someone give me the steps for the same to be done? Thanks, Kundan

  • Mac book pro charger

    My Mac Book pro charger has broken. The Mac is from the u.k but I am living in South Korea now. Can I buy a charger out here and it will work ok ???