What is best to do against localhost atack?

With my VMS I detected a localhost atack to several of my hosts in my local network. What is the best reaction I should take against this atack?
Thanks,

Any update on this...got a similar problem. Thanks.

Similar Messages

  • What should be take action against following sql tuning report.

    Hi
    what should be take action against following sql tuning report.
    SQL ID : fn3mt5dvm7fba
    SQL Text : SELECT * FROM (select
         to_number(ow.waybl_no) waybl_no,ow.id wb_id,
         To_Number(ogp.gp_no) gp_no,
         To_Number(ots.trip_sht_no) trip_sht_no,
         otr.nm,
         ots.gty_br_mast_id,
         DECODE(otr.sign_recd,'1','YES','NO') Sign_Recd,
         DECODE(otr.stamped,'1','YES','NO') Stamped,
         otr.dlvry_dt dlvry_dt,
         otr.tel_no,
         --otr.remarks,                                                   
         Decode(otr.comments, NULL,'','Yes') remarks,
         otr.id ID,ops_safex_utl.get_br_nm(to_number(ow.bkg_br_mast_id))
    book_br,
         ow.pick_dt book_date
    from
         ops_ts_reconsile otr,
         ops_pultd_wb_dtls opuwd,
         ops_trip_sht ots,
         ops_waybl ow,
         ops_ultd_wb_dtls ouwd,
         ops_gate_pass ogp
    where
         otr.trip_sht_id=ots.id and
         otr.pultd_wb_dtls_id=opuwd.id and
         opuwd.ultd_wb_dtls_id=ouwd.id and
         ouwd.gate_pass_id=ogp.id and
         opuwd.waybl_id=ow.id and
         otr.status_lid=157 and
         ots.gty_br_mast_id = (:br_Id) and
         (otr.dlvry_dt = :searchDate OR :searchDate IS NULL) and
         otr.note_prpd = 'N' and otr.pod_recd = '1' and
         not exists (select TS_RECONSILE_ID from OPS_POD_FRWD_NOTE_DTLS
    where TS_RECONSILE_ID = otr.id)
    union
    select
         to_number(ow.waybl_no) waybl_no, ow.id wb_id,
         To_Number(ogp.gp_no) gp_no,
         null trip_sht_no,
         ogr.nm,
         ogp.dlvry_br_mast_id,
         DECODE(ogr.sign_recd,'Y','YES','NO') Sign_Recd,
         DECODE(ogr.stamped,'Y','YES','NO') Stamped,
         ogr.dlvry_dt dlvry_dt,
         ogr.tel_no,
         --ogr.remarks,                                                   
         Decode(ogr.comments, NULL,'', 'Yes') remarks,
         ogr.id ID,ops_safex_utl.get_br_nm(to_number(ow.bkg_br_mast_id))
    book_br,
         ow.pick_dt book_date
    from
         ops_gp_reconcile ogr,
         ops_gate_pass ogp,
         ops_waybl ow
    where
         ogr.gp_id=ogp.id and
         ogp.waybl_id=ow.id and
         ogp.dlvry_br_mast_id = (:br_Id) and
         (ogr.dlvry_dt = :searchDate) and
         ogr.note_prpd = 'N' and ogr.pod_recd = 'Y' and
         not exists (select GP_RECONSILE_ID from OPS_POD_FRWD_NOTE_DTLS
    where GP_RECONSILE_ID = ogr.id)) QRSLT ORDER BY trip_sht_no desc
    Bind Variables :
    1 - (VARCHAR2(32)):37069
    2 - (DATE):07/11/2011 00:00:00
    3 - (DATE):07/11/2011 00:00:00
    4 - (VARCHAR2(32)):37069
    5 - (DATE):07/11/2011 00:00:00
    FINDINGS SECTION (3 findings)
    1- SQL Profile Finding (see explain plans section below)
    2 potentially better execution plans were found for this statement. Choose
    one of the following SQL profiles to implement.
    Recommendation (estimated benefit<=10%)
    - Consider accepting the recommended SQL profile.
    execute dbms_sqltune.accept_sql_profile(task_name => 'TASK_58643',
    task_owner => 'SYS', replace => TRUE);
    Recommendation (estimated benefit: 99.15%)
    - Consider accepting the recommended SQL profile to use parallel execution
    for this statement.
    execute dbms_sqltune.accept_sql_profile(task_name => 'TASK_58643',
    task_owner => 'SYS', replace => TRUE, profile_type =>DBMS_SQLTUNE.PX_PROFILE);
    Executing this query parallel with DOP 128 will improve its response time
    99.11% over the SQL profile plan. However, there is some cost in enabling
    parallel execution. It will increase the statement's resource consumption by
    an estimated 14.56% which may result in a reduction of system throughput.
    Also, because these resources are consumed over a much smaller duration, the
    response time of concurrent statements might be negatively impacted if
    sufficient hardware capacity is not available.
    The following data shows some sampled statistics for this SQL from the past
    week and projected weekly values when parallel execution is enabled.
    Past week sampled statistics for this SQL
    Number of executions 17494
    Percent of total activity 7.2
    Percent of samples with #Active Sessions > 2*CPU .63
    Weekly DB time (in sec) 614696.04
    Projected statistics with Parallel Execution
    Weekly DB time (in sec) 704166.9
    2- Restructure SQL finding (see plan 1 in explain plans section)
    An expensive "UNION" operation was found at line ID 4 of the execution plan.
    Recommendation
    - Consider using "UNION ALL" instead of "UNION", if duplicates are allowed
    or uniqueness is guaranteed.
    3- Alternative Plan Finding
    Some alternative execution plans for this statement were found by searching
    the system's real-time and historical performance data.
    The following table lists these plans ranked by their average elapsed time.
    See section "ALTERNATIVE PLANS SECTION" for detailed information on each
    plan.
    id plan hash last seen elapsed (s) origin note
    1 209247904 2011-07-12/10:09:08 7.564 Cursor Cache
    2 4029269565 2011-07-12/10:20:21 15.374 Cursor Cache original plan
    3 4128886984 2011-07-08/11:30:25 42.426 AWR
    4 3695555639 2011-07-12/08:30:30 101.459 AWR
    Recommendation
    - Consider creating a SQL plan baseline for the plan with the best average
    elapsed time.
    execute dbms_sqltune.create_sql_plan_baseline(task_name => 'TASK_58643',
    owner_name => 'SYS', plan_hash_value => 209247904);
    ADDITIONAL INFORMATION SECTION
    - The optimizer could not merge the view at line ID 3 of the execution plan.
    The optimizer cannot merge a view that contains a set operator.
    - SQL Profile "SYS_SQLPROF_01306b26f6aa0000" exists for this statement and
    was ignored during the tuning process.

    afzal wrote:
    Hi
    what should be take action against following sql tuning report.
    <snip>Perhaps no action at all.
    You can ALWAYS produce a report that will show "top 5" issues. The question is NOT "do I have an issue reported by a tuning report". Yes you do. Everyone does. Always. Even if you slowest batch job runs in 1.3 seconds and your slowest OLTP transaction completes in 0.0001 second.
    The question is "do I have a problem that is serious enough to spend time solving?"
    If your average OLTP transaction completes in 3 seconds, how much effort is justified to get a 50% improvement?
    How much effort is justified to get that same 50% improvement on transactions that complete in 1.5 seconds? 0.2 seconds?
    Beware of Compulsive Tuning Disorder.

  • Hi - was looking to buy a macbook air soon but wanted to get it with lion software....anyone know when that is available and second question is what is best software for personal money management that works with lion.....use quicken now   thanks

    Hi - was looking to buy a macbook air soon but wanted to get it with lion software....anyone know when that is available and second question is what is best software for personal money management that works with lion.....use quicken now   thanks

    quicken should work with lion.
    Quicken Essentials will work with Lion.  Most people that have used Quicken for a while (i.e. Quicken 2007) have found that Quicken Essentials isn't much better than a basic spreadsheet.  It is a significant step down from previous versions and does not offer many of the features previously offered.  Right now, it seems like the two most common options are iBank and MoneyDance.
    Frankly... this is a major opportunity for these companies.  The largest commercial distributor of this type of product has been Intuit (Quicken).  That makes it hard for any other company to get any of that market as so many people were already using Quicken and may have had years of data stored in it.  Now, with Quicken effectively out of the picture, it's a great chance for another company.  Just imagine if iPhones were suddenly off the market.  That would give other manufacturers a tremendous opportunity since they wouldn't have to fight an up hill battle against a market giant.

  • In iLife08 what is best setting to convert avi 720 and digital video 1080i

    What is the bottom line for best quality for 720 p TV.
    1.) My import is digital video 1080i to i Movie 08 (full quality)
    What should I use for sharing on AppleTV
    - the preset Large (which is 960x 540)
    - or some custom setting 25 fps at 1220x 720? ( H.264 display dimensions at 24/25 fps is 720p (1280x720) ) - or what should the setting be??
    2.) Have Windows avi older 720 *480 video, what is best setting to convert this for Apple TV? The 640 setting on QuickTime premium is not very good
    Thank you so much. Peter

    Your best option if you are using NTSC footage in imovie is the export to/movie large (960 x 540) at 30 fps, the resolution won't go any higher and still work on the tv. Don't even think about changing the framerate to 24/25 fps, even though you'll be able to export to 720p (1280 x720) changing the framerate will make your video jerky.
    If you are using PAL then yes you could export to 720p (even though the specs say 24 fps, 25 fps does in fact work as well), you could try a few tests yourself but I've already done them and IMHO there is so little difference between 960 x 540 and 1280 x 720 that it isn't worth messing about setting up and trying several manual exports to get the best results when you can click one button and be done.
    So far a AVI conversion is concerned, I'd try mpegstreamclip, but saying that I can't really be sure. AVI is a container not a codec and I would need to know what codec is actually used inside the container to answer your question properly (Quicktime may tell you though). The problem with AVI is that it is simply so old (even microsoft abandoned it over 10 years ago), unfortunately in a small number of cases some of the codecs that were used in AVI are simply no longer able to be converted. Probably not so likely but at least you are warned.

  • HT3819 I have 2 Ipod touch's, one a 64gb and one an 8gb.  Whats the best way to use them both on the same itunes account?

    I have 2 Ipod touch's, one a 64gb and one an 8gb.  Whats the best way to use them both on the same itunes account?

    Click here for options.
    (64410)

  • What is Best Way to Handle Things when you dont know Much about them

    The buzz words S/4 HANA is here .. 10 Unanswered questions Best things to know about HANA and list continues but am I  all really ready for this ? The question that circles around me
    What is best to learn and Explore things when you know much about .. S/4 . can some tell me best ay to handle this ? And does knowledge only help to kill the non experience on this ?
    Awaiting reply

    The first thing to do is understand how innovative companies are using S/4HANA. You can do this by watching free broadcasts from SAPPHIRE NOW and the HANA Effect podcast. If you don't understand how the S/4HANA innovations can help, then I think any other learning is just in a vacuum and not going to be productive.
    Then I would suggest taking some of the many free courses available from SAP, like this one from OpenSAP.

  • After recently installing itunes on my new PC running windows 8, the CD/DVD drives no longer works, gives a code 19 message. Seems itunes is impacting the registry of the DVD drive. What is best solution to keep running itunes

    After recently installing itunes on my new PC running windows 8, the CD/DVD drives no longer works, gives a code 19 message. Seems itunes is impacting the registry of the DVD drive. What is best solution to keep running itunes normally in the future & get the CD/DVD drive working again? if I delete the upper / lower registry keys what other functions are impacted? I see others say itunes asks for a reinstall...then same problem all over again! THX

    Have you revieved this support document?
    TS2308: iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install.
    tt2

  • Whats the best way to backup my iphone?

    Hello. I am brand new to iphones....actually to apple anything. Never owned an apple product.  I dont quite understand the whole itunes/icloud thing at all and I was hoping someone could explain it to me.  All that I wish to accomplish is make sure all of my stuff on my iphone(apps, pics, music, etc) is backed up regularly and in the event that my iphone is lost/stolen, breaks, needs to be replaced for any reason, or if I upgrade to a new iphone I would like to be able to recover everything. 
        OK, so far I have itunes installed on my laptop and I "sync" with that regularly (pretty much whenever I install a new app). But is my understanding correct that by syncing with itunes all of my stuff is stored locally on my laptop? If that is true, then what happens if my laptop crashes? So thats where I thought icloud came in. So I started backing up to icloud (via wifi in Settings>icLoud>storage&backup).  But I notice that when I backup this way it is actually only backing up a small amount of data (in-app data??) rather than the entire app. 
        I thought you would be able to sign into icloud.com and be able to view everything that you have ownership of or what you have backed up but that is not the case. I did download the icloud control panel to my laptop and it shows a little more information.
        So bottom line is I just need someone to explain how this stuff works and what the best course of action is for me to take regularly to make sure everything is safe, Thanks everyone!  I sincerely appreciate any help you can give me!!

    bjs19781978,
    There are 2 ways to back up as you have stated.  iTunes or iCloud.
    You are correct in saying iTunes backs up everything on your computer.  If you do lose your computer though, you will lose that information, but you would most likely still have your phone unless you lose your computer and phone at the same time which would royally suck.
    You can also back up to iCloud like you have said.  iCloud does not back up in the exact same way as iTunes, it only backs up application data, contacts, address books, and a few more things.  The advantage to this is it does it automatically if you are connected to wifi, the phone is locked, and the phone is plugged in.
    Look at this link to see exactly what iCloud does back up.  Hopefully this helps a little.
    Apple - iCloud - backup

  • One headphone does not work or works 50% of the time.  What is best way to resolve?

    one headphone does not work or works 50% of the time.  What is best way to resolve?

    First of all, I'd recomend resetting the iPod. Do this by pressing the 'Menu' and 'Center" buttons for 10 seconds or until the Apple logo appears.
    If this doesn't work, then it sounds like a hardware fault.
    To identify the issue, if you have one, try plugging the iPod into a speaker through the dock. If this works, then the issue is with the headphone jack. If not then the logic board is dead.  If the iPod is less than a year old, then it can be repaired by Apple for free. Just book an appointment for the Genius bar.
    If not then, you could see about sending it to an iPod Repair Company, such as my own. A replacement headphone jack would cost £30.00 in the UK, including next day delivery. Other companies you could try would beUKiPodRepairs, but we guarantee to beat any quote that you get.
    Hope that this helps,
    Mark Sweeney
    Dr Pod Founder

  • I am moving from PC to Mac.  My PC has two internal drives and I have a 3Tb external.  What is best way to move the data from the internal drives to Mac and the best way to make the external drive read write without losing data

    I am moving from PC to Mac.  My PC has two internal drives and I have a 3Tb external.  What is best way to move the data from the internal drives to Mac and the best way to make the external drive read write without losing data

    Paragon even has non-destriuctive conversion utility if you do want to change drive.
    Hard to imagine using 3TB that isn't NTFS. Mac uses GPT for default partition type as well as HFS+
    www.paragon-software.com
    Some general Apple Help www.apple.com/support/
    Also,
    Mac OS X Help
    http://www.apple.com/support/macbasics/
    Isolating Issues in Mac OS
    http://support.apple.com/kb/TS1388
    https://www.apple.com/support/osx/
    https://www.apple.com/support/quickassist/
    http://www.apple.com/support/mac101/help/
    http://www.apple.com/support/mac101/tour/
    Get Help with your Product
    http://docs.info.apple.com/article.html?artnum=304725
    Apple Mac App Store
    https://discussions.apple.com/community/mac_app_store/using_mac_apple_store
    How to Buy Mac OS X Mountain Lion/Lion
    http://www.apple.com/osx/how-to-upgrade/
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    http://www.apple.com/support/timemachine
    Mac OS X Community
    https://discussions.apple.com/community/mac_os

  • Whats the best way to transfer everything from my old macbook pro to a new mac mini, i have a external hard drive which i backup to regularly via time capsule

    whats the best way to transfer everything from my old macbook pro to a new mac mini, i have a external hard drive which i backup to regularly via time capsule

    Check out > OS X Lion: How to use Migration Assistant to transfer files from another Mac

  • Wipe my hard drive clean except for the OS whats the best way?

    I need to wipe my hard drive clean except for the OS whats the best way?

    From Kappy (note: with this method, you will need to update to the present OS version using the appropriate Combo Update from Apple Downloads.)
    Boot from the OS X Installer Disc One that came with the computer. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities (Installer menu if using Panther or Jaguar) menu. After DU loads select the startup volume from the left side list then click on the Erase tab. Set the format type to Mac OS Extended (Journaled) then click on the Options button. Select the one pass Zero Data option and click on the OK button. Then click on the Erase button.
    Note: You can skip the Zero Data option if you are not concerned about removing sensitive personal data from the hard drive. If you choose to skip this part of the process then it is possible for others to recover data from the hard drive. The Zero Data procedure will prevent others from getting access to your personal information.
    This process will take 30 minutes to several hours depending upon the size of the hard drive. After formatting has completed quit DU and return to the installer. Now complete the OS X installation. At the completion of the installation do not restart the computer. Instead just shut it off. The next user will be presented with the Setup Assistant when they turn on the computer just as it would if new out of the box.
    https://discussions.apple.com/message/12364050?messageID=12364050#12364050

  • Hello I want to buy your iphone5 S of the U.S. site, but I want to use it in Saudi Arabia what is best option

    Hello I want to buy your iphone5 S of the U.S. site, but I want to use it in Saudi Arabia what is best option

    Check this link.
    https://www.apple.com/iphone/LTE/

  • What is best blue tooth presenter for macbook pro and air

    What is best Blue Tooth presenter for MacBook Pro and Air?

    You got lots of choices such as:
    WD Studio
    http://www.wdc.com/en/products/products.aspx?id=200
    WD Studio 2
    http://www.wdc.com/en/products/products.aspx?id=210
    WD My Book
    http://www.wdc.com/en/products/products.aspx?id=250
    Lacie:
    http://www.lacie.com/dk/products/range.htm?id=10007
    http://www.lacie.com/dk/products/range.htm?id=10036
    The are tons of external storage for mac out there but these are a few of them...
    I personally like the WD Studio 2 and the LaCie 2big Network 2

  • What is best filter for MacBook Pro

    What is best filter for my son's MacBook Pro to block adult/**** sites while allowing access to most anything else. The parental control I set up has not been the answer.  I constantly have to unlock sites for him.  I would appreciate any suggestion.

    If the options on the computer itself are not sufficient, you might try other options like OpenDNS Home, but it also involves a list that might need to be customized.
    In the end, the best defense is passing down a strong set of values so that when your son does visit the "wrong" site (as he inevitably will, and increasingly so into adulthood) he at least has an innate knowledge that he shouldn't be there.

Maybe you are looking for

  • Using PI 7.0 to handle moving a PDF document into a SOAP Message & sending

    Here is our situation.  We have the business writing all invoices for a day out of SAP to disk formatted as a PDF document; meaning, if the file is FTP'd from the disk of SAP to an NT server inside our firewall it is recognised as a PDF by Windows an

  • How do I save an avi from images acquired through buffers?

    Hi all, I recently have started using Labview, mainly for IMAQ purposes. I started by learning how to save images, then how to do just avi's. Now the problem comes up is that I want to find a way to average a bunch of images together in real time. So

  • How to permanently display hidden files/folders in open/save dialog?

    I know about Apple-Shift-Period. I just wonder wether i can make this setting permanent. Also, making the Finder show hidden files is not what i'm looking for. Thanks for replying!

  • Premiere Pro 2.0 not loading

    Hi, I'll try and keep this short -- I just bought a new computer. I own an old disk of Premiere Pro 1.5. When I tried to activate the software, I found out I couldn't. I wrote technical support and they said CS2 apps were no longer supported and that

  • Email Photos Workflow

    I find myself emailing photos out of iPhoto fairly regularly. Usually a few at a time (3 - 30). Is there a way to have the photos load into the email other than inline? I would like to get iPhoto to process the photos in to a folder for attachment to