Restrict User Connections Using Logon Trigger

Hi all,
Now I am restricting user connections from selected terminals, using following logon trigger.
It allows users with DBA privileged user.
How to restrict DBA Privileged users users ?
Note:- As per my application needs DBA privilege.
CREATE OR REPLACE TRIGGER on_logon
AFTER LOGON
ON DATABASE
DECLARE
VPROGRAM VARCHAR2(30);
Vusername VARCHAR2(30);
VTERMINAL VARCHAR2(30);
CURSOR user_prog IS
SELECT UPPER(program),UPPER(username),NVL(TERMINAL,'X') FROM v$session
WHERE audsid=sys_context('USERENV','SESSIONID');
BEGIN
OPEN user_prog;
FETCH user_prog INTO Vprogram,Vusername,VTERMINAL;
IF VTERMINAL NOT IN ( 'APP1','APP2','APP3')+
and Vusername='ABUL'+
THEN
RAISE_APPLICATION_ERROR(-20001, 'You are not allowed to login');
END IF;
CLOSE user_prog;
END;
Thanks i Advance
Abk

Your application needs the DBA role? That is a terrible design-- it violates every principle of secure coding.
Login triggers don't fire for users with the DBA role, so you won't be able to use a login trigger here. You could ditch the login trigger and configure invited and excluded nodes in the listener's sqlnet.ora file, i.e.
tcp.validnode_checking = yes
tcp.excluded_nodes = (hostname1,hostname2,hostname3)You'll have to restart the listener after making that change.
Justin

Similar Messages

  • Restrict users from using Manual series

    Hi SAP,
    Is there a way to restrict users from using the Manual series?
    Thanks,
    Janice

    Hi Rahul,
    Ok, i have seen already the authorization for document manual numbering and it is available only for 8.8 versions and not on 2007 version of SAP.
    Anyway, when im doing the testing i found out that for banking transactions like incoming, user can still use the manual series even if he has no authorization for manual document numbering.
    Another concern from our client was  the use of manual series only, is it also possible in SAP? I tried to give user authorization in the manual document numbering and no authorization to series group no but user cannot already open the transaction window. Let us know if their inquiry is possible so i could inform them that only manual series can be restricted.
    Thanks for your help.
    Regards,
    Janice

  • Solution: WinXP Restricted users connecting to Oracle

    For a while we've been having the problem that with a default install of the Oracle Client (in our case 9.2 - Not sure if the problem exists with earlier versions), restricted users on WinXP (possibly 2K too, I've not been able to test it) cannot connect to any server because they cannot see the oracle client files. For some reason, the oracle client install sets strange permissions that mean only administrators can access the client files. Worse still, any attempt to reset the permissions on the ORACLE_HOME directory and propagate them down all the sub directories always fails with Permission Denied (even for admins?!?!?!). Even attempting to take ownership fails.
    Anyway, we've found a solution:
    Logged in as an admin, we copied the c:\oracle\Ora92 directory from a fresh install of the oracle client on WinXP to a machine with Fat32 (Win98) - Thereby removing all permissions from the files. We then renamed the old Oracle directory on the WinXP PC, created a new one and copied back the Ora92 directory from the Win98 PC - This resulted in the c:\Oracle directory and all sub directories having default permissions, specifically Read and Execute to all users and Full to admins. We also reset the permission on all sub-directories of c:\program files\oracle to those of c:\program files\oracle ( Using the "Reset permission on all child objects and enable propagation of inheritable permissions" check box in windows advanced security ).
    The end result is that restricted users can now access the necessary oracle client files, but don't have permission to alter them (which prevents them changing any connection parameters).
    The problem still remains that the installer creates strange permissions on files in the Oracle Home directory, but at least there is a workaround until Oracle sorts out the installer.
    Anyone think of a better way to get the same result?

    if you set the restricted users into the power users group you may be asking for other troubles as these users will then have update permissions to most files on the system, including those files in the winnt folder.
    it is not clear to me whether you are unable to set the file permissions to read/write access, or whether you are able to do so but that after you do so the users still get errors launching the client. it sounds like the solution to your problem may have been setting the read/write access in the \program files\oracle folder.
    you should make sure you install oracle when you are logged in as administrator. note that this is different than doing the install while logged in as user "X", where "X" is a member of the administrator group.
    if after doing the install as administrator you still have problems, i would recommend that you turn on auditing, reboot the system, launch the client as a restricted user, and then review the event log to see what file(s) are being denied access.
    to set up auditing, go to start->programs->administrative tools->local security policy. select local policies, then audit policies. set "audit object access" to failure. then go to my computer, right click on C:, select properties, then the security tab. click on the advanced button, then the auditing tab. select the "everyone" group, then click ok. in the next window, check all boxes in the "failed" column. click ok.
    don't forget to reverse the process and turn off auditing once you have found the problem files and set the necessary permissions.

  • Not able to restrict users from using SU01

    Hi ALL,
    We are working on roles related to SECURITY ADMINISTRATOR.
    The role has been given a transaction SU01D and not SU01.
    But the users are able to enter into SU01 through SUIM.
    I will illustrate this situation more:
    SUIM->USERS->BY LOGON DATE AND PASSWORD CHANGE
    Then I entered the user id.Executed.
    From the result, I was able to enter into su01 .i.e was able to use the change button of su01.
    Please tell me how do I restrict this situation.?
    Reagrds,
    Ajit.

    Access to user administration is not only limited to SU01.
    Most likely, the threads of this search term will explain why the users can access the transaction screens of user administration: https://forums.sdn.sap.com/search.jspa?objID=f208&dateRange=all&numResults=15&rankBy=10001&threadID=&q=SU01_NAV
    Whether the user can complete the transaction is a different story... for that you need to use the application authorization objects (S_USER* objects are a good start - see transaction SU21 for more infos on the application security concept for these objects)
    Cheers,
    Julius
    PS: A troublesom object is S_USER_GRP, because it is important. When the user ID does not have a user group assigned, then the effectivness of this authorization object is weak, which can impact your security (depending on the access of the user without an authorization group)...

  • Trace users by after logon trigger

    Hi.
    I have to trace some users application to find the source of problems.
    Oracle8i Enterprise Edition Release 8.1.7.0.0
    connect system/manager@testdb
    create or replace trigger login_trigger
    after logon on database
    begin
    if (USER in ('BLAKE','SCOTT')) then
    execute immediate
    'ALTER SESSION SET EVENTS ''10046 TRACE NAME CONTEXT FOREVER, LEVEL 12''';
    end if;
    end;
    show error;
    SQL> connect scott/tiger@testdb
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01031: insufficient privileges
    ORA-06512: at line 3
    OK, I'll grant a priv.
    SQL> connect system/manager@testdb
    SQL> GRANT administer DATABASE TRIGGER TO "SCOTT";
    SQL> connect scott/tiger@testdb
    Connected.
    Good, only *.trc file is empty after that and there is no trace information for analyse.
    Could you please give me a solution?
    Mikhail

    can't find any *.trc & alert files relevant current time 20080329:20.34
    only this
    29.03.2008 18:20 72 583 nmuALRT.LOG
    25.03.2008 22:22 600 nmuARC0.TRC
    but the last connection I've made
    20080329:20.34
    SQL> connect SCOTT/[email protected]
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01031: insufficient privileges
    ORA-06512: at line 3
    this is the files
    ---nmuALRT.LOG---
    Dump file C:\oracle\admin\nmu\bdump\nmuALRT.LOG
    Sat Mar 22 17:58:46 2008
    ORACLE V8.1.7.0.0 - Production vsnsta=0
    vsnsql=e vsnxtr=3
    Windows 2000 Version 5.1 Service Pack 2, CPU type 586
    Starting up ORACLE RDBMS Version: 8.1.7.0.0.
    System parameters with non-default values:
    processes = 150
    shared_pool_size = 52428800
    large_pool_size = 614400
    java_pool_size = 20971520
    control_files = C:\oracle\oradata\nmu\control01.ctl, C:\oracle\oradata\nmu\control02.ctl, C:\oracle\oradata\nmu\control03.ctl
    db_block_buffers = 19200
    db_block_size = 8192
    compatible = 8.1.0
    log_buffer = 32768
    log_checkpoint_interval = 10000
    log_checkpoint_timeout = 1800
    db_files = 1024
    db_file_multiblock_read_count= 8
    max_enabled_roles = 30
    remote_login_passwordfile= EXCLUSIVE
    global_names = TRUE
    distributed_transactions = 500
    instance_name = nmu
    service_names = nmu
    mts_dispatchers = (PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)
    open_links = 4
    sort_area_size = 65536
    sort_area_retained_size = 65536
    db_name = nmu
    open_cursors = 300
    os_authent_prefix =
    job_queue_processes = 0
    job_queue_interval = 10
    parallel_max_servers = 5
    background_dump_dest = C:\oracle\admin\nmu\bdump
    user_dump_dest = C:\oracle\admin\nmu\udump
    max_dump_file_size = 10240
    oracle_trace_collection_name=
    Sat Mar 29 18:20:39 2008
    Errors in file C:\oracle\admin\nmu\udump\ORA02288.TRC:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01031: insufficient privileges
    ORA-06512: at line 3
    ---nmuARC0.TRC-----------------------------------------
    Dump file C:\oracle\admin\nmu\bdump\nmuARC0.TRC
    Tue Mar 25 22:22:38 2008
    ORACLE V8.1.7.0.0 - Production vsnsta=0
    vsnsql=e vsnxtr=3
    Windows 2000 Version 5.1 Service Pack 2, CPU type 586
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    Windows 2000 Version 5.1 Service Pack 2, CPU type 586
    Instance name: nmu
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 14
    Windows thread id: 2592, image: ORACLE.EXE
    *** SESSION ID:(11.1) 2008-03-25 22:22:38.428
    *** 2008-03-25 22:22:38.428

  • RESTRICT USER FROM USING SAME REQUIREMENT TYPE  WHILE CREATING SALES ORDER

    Hi Friends,
    I Have a requirement to in SD while creating any sales order i want the system sholud throw a error
    message when i am using line items having same requirement type more than one time
    i have tried some customer exits v45a0001 & v45a0003 . but was not successfull .
    kindly somebody help me with elaborated steps  .
    thanks in advance  .
    regards
    digvijay rai

    no reply and i am to close this thread so i am putting it as answered ;(

  • Logon trigger - restrict acces using Toad, SQLPLUS...

    Oracle 10.2.0.4
    I have users who use oracle form - ifweb90.exe.
    I want to restrict them to access database using SQL Developer, TOAD or any other tools. I create logon trigger:
    CREATE OR REPLACE TRIGGER block_users
    AFTER LOGON ON DATABASE
    begin
    FOR REC IN (SELECT USERNAME,PROGRAM
    FROM V$SESSION
    WHERE AUDSID = USERENV('SESSIONID'))
    LOOP
    if rec.username like ('X%')
    and
    rec.program not like ('ifweb90.exe')
    then
    RAISE_APPLICATION_ERROR(-20001,'ERROR MESSAGE');
    end if;
    end loop;
    END;
    This solution don’t work if the program executable is renamed (this can’t be done with SQL Developer).
    1. Is there any way to solve this?
    2. Whether this trigger will use resources, whether this trigger will check all connection? What is the cost to pay in terms of performance?
    Thanks in advance!
    Edited by: user9106065 on Nov 9, 2010 3:17 AM

    This solution don’t work if the program executable is renamed (this can’t be done with SQL Developer).
    1. Is there any way to solve this?Better alternative would be to change your own program, set the client_application_info and check for that using logon trigger. Anything else, can then be thrown off.
    2. Whether this trigger will use resources, whether this trigger will check all connection? What is the cost to pay in terms of performance?There would be negligible usage of resources.
    But this trigger won't stop any connections from any tool which come in as SYSDBA.

  • Logon trigger to alter the session parameter

    Hi,
    I want to execute alter session set '_b_tree_bitmap_plans'=false;
    for a user once he logs in.
    I guess it is possible using logon trigger, pls let me know how to?
    Thanks,
    Kumar.

    Ensure that the usage of the statements or settings in the login files is necessary or correct before using it.
    For all users, use glogin.sql. This is located in $ORACLE_HOME/sqlplus/admin
    For each user, use[b] login.sql. This need to be created by the user from sqlplus using the default editor. e.g type ed login at the SQL prompt. This enables the file to be created at the correct home of the OS user(different between Unix and Windows). Note that it is per OS user and not per Oracle user. For instance, every user who connects to the Server as the OS user oracle will run the same login.sql.
    If you enter statements that require logon (just like yours), you will get "Not Connected" error if you normally do sqlplus /nolog. But you will not get it is you connect directly be specifying the username directly or when prompted.
    The scripts will be run at each logon (either by typing sqlplus from os command prompt or using connect command within sqlplus).

  • RV120W: The user attempted to connect using a dial-in medium that did not match the restricted dial-in media

      I am trying to configure a Cisco RV120W wireless using RADIUS. The IAS server is Windows 2003. The wireless client can’t access the wireless.  The ISA server keeps getting this error: Event Type: Warning Event Source: IAS Event Category: None Event ID: 2 User: N/A Computer: DEVICES1 Description: User ntdomain\blin was denied access. Fully-Qualified-User-Name = chicagotech.org/Users/Bob Lin NAS-IP-Address = 10.0.30.102 NAS-Identifier = Called-Station-Identifier = Calling-Station-Identifier = Client-Friendly-Name = RV102-Domain Client-IP-Address = 10.0.30.102 NAS-Port-Type = NAS-Port = Proxy-Policy-Name = Use Windows authentication for all users Authentication-Provider = Windows Authentication-Server = Policy-Name = CBG-All Authentication-Type = EAP EAP-Type = Reason-Code = 70 Reason = The user attempted to connect using a dial-in medium that did not match the restricted dial-in media. Check the dial-in constraints for the matching remote access policy. The public wireless and WPA2 work fine. Other Cisco 1240 wireless works fine with this event: Event Type: Information Event Source: IAS Event Category: None Event ID: 1 Date: 10/18/2013 Time: 1:33:19 PM User: N/A Computer: DEVICES1 Description: User blin was granted access. Fully-Qualified-User-Name = chicagotech.org/Users/Bob Lin NAS-IP-Address = 10.0.20.103 NAS-Identifier = WLC2504 Client-Friendly-Name = WLC2504 Client-IP-Address = 10.0.20.103 Calling-Station-Identifier = 90-18-7c-e6-95-aa NAS-Port-Type = Wireless - IEEE 802.11 NAS-Port = 1 Proxy-Policy-Name = Use Windows authentication for all users Authentication-Provider = Windows Authentication-Server = Policy-Name = CBG-All Authentication-Type = PEAP EAP-Type = Secured password (EAP-MSCHAP v2) Can you help?                  

    Dear Customer,
    Thank you for reaching the Small Business Support Community.
    The RADIUS configuration settings are intended to authenticate the wireless clients attempting to connect through a SSID and if this is the problem you have, I first suggest you to check on the RADIUS server IP address (Security>RADIUS Server), make sure it is reachable, and the authentication port number used by this server to send traffic and the shared key used to authenticate to the server which must match on both sides.  If all that is good, try using WAP Enterprise as the wireless security method and not WAP2 Enterprise.
    If the problem persits I then first suggest to to make sure you run the latest firmware release version 1.0.5.6;
    http://software.cisco.com/download/release.html?mdfid=282981372&flowid=796&softwareid=282487380&release=1.0.5.6&relind=AVAILABLE&rellifecycle=&reltype=latest
    Then contact support if the problem persists; (the "dial-in medium" part error I just don't understand what it has to do with the RADIUS wireless client authentication);
    https://supportforums.cisco.com/community/netpro/small-business/sbcountrysupport
    Please do not hesitate to reach me back if there is any further assistance I may assist you with in the meantime.
    Kind regards,
    Jeffrey Rodriguez S. .:|:.:|:.
    Cisco Customer Support Engineer
    *Please rate the Post so other will know when an answer has been found.

  • How to display a logon message using login trigger?

    Hello,
    I have created a logon trigger similar to Tom's guide in his thread - http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3236035522926. The guideline in the thread disables a user login, but I need the trigger to prompt a message that the logon schema has been changed to XYZ schema. Trying to use the same code format, I am able to publish the message, but at the end the connection is getting disconnected similar to Tom's example:
    ops$[email protected]>
    ops$[email protected]>
    ops$[email protected]> connect scott/tiger
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20001: You are not allowed to logon from this terminal!!!
    ORA-06512: at line 7
    Warning: You are no longer connected to ORACLE.
    ops$[email protected]> connect /
    Connected.I want the user to establish a session after login and still prompt the message. How can do that?
    The trigger I am trying is -
    CREATE OR REPLACE TRIGGER ABC_DBA.USER_LOGON
    after logon on database
    DISABLE
    declare
    v_user varchar2(30);
    v_base_user varchar2(30);
    begin
    select SYS_CONTEXT ('USERENV', 'SESSION_USER') into v_user from dual;
    dbms_output.enable;
    dbms_output.put_line(v_user);
    execute immediate 'alter session set current_schema=XYZ';
    -- RAISE_APPLICATION_ERROR (-20001, 'Welcome');
    end;Thanks in advance
    aBBy
    PS: Forgot to mention - this is a 11gR2 RAC on Linux env.
    Edited by: AB007 on Oct 12, 2012 11:29 AM

    After user is logged in without an error, the Oracle Client does not expect any message from DB.
    It is up to Client Application to expect such a message.
    For example if the Client Application is SQL*Plus, you can issue
    SET SERVEROUTPUT ON
    After that SQL*Plus will read from DBMS_OUTPUT buffer and print on the screen.
    Others applications have to be programmed to do similar.

  • Newbie question for LogOn trigger and Connection String

    Hi,
    I would like to set certain session variables in the logon trigger. Is there a connection string attribute or some other way to pass a string or some data to the session.
    regards
    Stefan

    Hi,
    my concrete problem is that our application only uses one user. eg. appuser . During the login process of the application the "real" user name, language and other attributes are set in a packag as global variables.
    This works fine, but as soon as a usr logs on the DB without our application login then these are ofcourse not filled. My idea was to maybe to be able to enhance the connection string and to be able to pass some more information to the logon trigger.
    regards
    Stefan

  • Restricting User from creating new records using when-validate-record

    Hi,
    I have a requirement for which I have to restrict he user from creating a record in the Supplier Master form if the suppliier type is 'Affiliate Supplier'.
    I have done the following setups
    Seq 10
    Description Restricting user from creating Affiliate records
    Level Function
    Enabled Yes
    Condition:
    Trigger Event WHEN-VALIDATE-RECORD
    Trigger object VNDR
    Condition "${item.VNDR.VENDOR_TYPE_DISP_MIR.value} is NOT NULL
    and
    ${item.VNDR.VENDOR_TYPE_DISP_MIR.value} LIKE 'Affiliate%'
    Processing Mode BOTH
    Context
    Level User
    Value User Name
    Action Sequence 1
    Type Message
    Action Description Saving Affiliate record
    Language ALL
    Message Type Show
    Message Text You Cannot Create Affiliate records Here
    Action Sequence 2
    Type Builtin
    Action Description Stop Proceesing
    Language ALL
    Action Enabled Yes
    Builtin Type RAISE FORM_TRIGGER_FAILURE;
    This is working good on one instance but when I moved it to another instance
    when I query the form and try to navigate to the bank accounts tab of the form which is based on a differnt block i.e VNDR_USES block, the when-validate-record trigger fires there also and stops the processing.
    Any suggestions on this would be higly appriciated.
    Thanks in Advance.

    Hi Srini,
    Yes, it does work...but in a Form Session if i Create more then one Item, in some cases it fires for the first records and not sleeps for the second.
    Sometimes it doesn't give any response.
    Appreciated if you divert to the link to check the Pacthes for 11.5.10 on Form Personalization.
    Please share any ideas/example if yiou have to achieve the below requirement.
    Requirement:
    Once New record is created , a Custom Procedure should be invoked.
    with out closing Form i am able to create n number of Items, so for every Item it should invoke Custom PLSQL Code on Save.
    Let me know if i can achieve the same in Custom.pll .....as i can use either of Options.(Form Personalization/Custom.pll)
    Thanks & regards,
    Edited by: user632004 on Mar 16, 2010 7:50 PM
    Edited by: user632004 on Mar 16, 2010 8:09 PM

  • Allow connection to RDS applicatoins and restrict RDP connection for domain users

    I have configured RDS setup, with the following Roles: RD Web Access, RD Gate Way, RD Connection Broker, RD Session Host and RD Licensing.
    the problem is that the domain users can't run the published applications unless I add the "Domain Users" group into the remote desktop users on the RDS servers, but now all domain users can connect RDP to the RDS servers.
    so we need domain users to connect to the RDS published applications and restricting them from connecting RDP to the RDS servers, in addition I can see that internal servers are accessible from outside through the RD gateway server.
    any ideas ? 

    Hi,
    Thank you for posting in Windows Server Forum.
    For a test you can create one group, assign the specified user under that group. Add that group under “Remote Desktop User” local group. For getting access to published Remote Application you can simply assign\add the group under collection properties of the
    application and that user can get access.
    For restricting user to server remotely, you can add that group of user under “Deny logon through remote desktop service” under User Rights assignment. Also you can check “Deny
    New User Logons to an RD Session Host Server” settings.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • DUN Bluetooth connection to PocketPC, Vista and restricted user rights

    Hallo,
    I've successfully established a DUN connection to my Pocket WM5-based QTEK 9100 smartphone via Bluetooth and the Toshiba Stack, latest version. My notebook is a X200-21D with Vista Home Premium.
    Everything works well as far as I don't change the Vista user to an user with restricted rights, for the user with Administrator rights the Bluetooth Utility created a new DUN connection and a new modem with a virtual COM port. The user with the restricted rights isn't allowed to setup a new connection but this is necessary to connect to the smartphone with the Bluetooth Utility. On the administrative account the radio button to allow the connection to be dialed from other users is disabled and greyed out, so there is now way to open it for other users.
    How can I setup an Bluetooth DUN connection for a user with restricted rights ?
    Thank you in advance !

    Should the Restricted user use the same DUN configuration like the Admin ?
    If so, then you can use "Bluetooth Settings-> Custom Mode". This allows you to
    select the "33600 Standard Modem" from the list which was configured before by
    the Admin. So every DUN which was configured by the Admin can be used by the
    Restricted user with this method. Restricted users can not install hardware, so
    if the Admin has not installed a modem, then also the Restricted user can not use it.
    The Admin can pre-install a modem with the Bluetooth stack installation.
    This is useful if the restricted user should be able to configure a DUN connections
    with advanced modem settings which are not used by the Admin.
    This should be possible if the "as.ini" file has a line "MODEMINST = 1"

  • Logon Trigger to stop user logging in (Oracle 9i)

    Hi,
    In 9.2.0.8, how can i stop a user logging into my database if it connectes through a user let say "A" using program "EXECL.EXE". I found a trigger code on the net but it uses SYS_CONTEXT to find out the module which user is using to login but in 9i, this functionality is not available. any other method?
    Thanks
    Salman

    An easier way might be to ensure that the ODBC software is not installed on the user's pc, although the TYPICAL end user probably wouldn't think of renaming Excel before running it. On the other hand if they have an application for accessing the database, make sure that all other means such as SQL*Plus are disabled by if nothing else not installing the software and possibly having a trigger that checks that the name of the application which has connected to the database is your application.

Maybe you are looking for

  • ICal calendars not syncing with iPhone 4 running iOS 4.0.2

    I have an iPhone 4 running iOS 4.0.2 I'm using iCal on my MBP running Mac OS 10.6.4 I have a MobileMe account. Never had an issue with calendars syncing with the iPhone previously. I am using MobileMe Calendar Beta. This now displays my calendars in

  • Fax not able to send or receive

    I have the Laserjet Pro 200 Color MFP printer which I use wireless, and it has been working fine unil now. When sending, I get the "no fax detected, no fax received" and when sending a fax i hear the ringing but it never connects, no answer. I have u

  • Internet problems on U350

    Hi,  I have ideapad u350 which cant connect to the internet when cable is plugged in , but i can connect to wifi, but i can not surf the internet, though antivirus programs updates and messengers work.(i have d'link DWL G700AP) My system is windows 7

  • Restore safari for mac os 10.4.8

    Hi, I remove the binary file "application/safari" (for mac os 10.4.8). How it's possible to restore this file ? How it's possible to install only the package safari ? thank's

  • Lost iphone 5 can be tracked if offline?

    Can a lost Iphone 5 be tracked if its offline with no wifi and can they get into the phone even if the phone has been suspended from my phone carrier? And if i erase it from find my phone app will that erase all the photo stream photos i have on ther