Unused IP addresses attack 3rd parties

Hello,
We are having a strange situation where (used and) unused (!) public addresses belonging to our network attack 3rd parties.
The specific network is as follows.
WiFi5 -- WiFi6 -- SW11 (CE500-24TT)
|
|
/--- <vlan 2> -- WiFi1 -- WiFi2 -- SW10 (SG300-10) -- WiFi3 -- WiFi4 -- R1 (Router 3640)
|
|
R0 (Router 3825) -- <vlan 1> -- SW0 (C2960-24TT-L) -- SW1 (C2950T-24)
|
|
SW2 (C2950T-24) -- SW3 (C2960CG-8TC-L) -- SW4 (SG300-28)
All the above devices use public admin IP addresses from two fragments of a public Class C subnet which has been split in multiple parts.
Wireless Links WiFi1--WiFi2, WiFi3--WiFi4, WiFi5--WiFi6 are high distance bridges implemented with Motorola equipment.
A part of vlan2 Switches/Wireless Routers remained exposed to the Internet for some days with public admin IPs (i.e. it was accessible from the Internet, whereas we normally prohibit access using ACLs).
I don't know if this was the cause of the security issue we are facing: We are watching (through Netflow monitoring) a high number of outgoing flows, which consist of attacks from IP Addresses of the whole Class C subnet (used or unused!) to addresses abroad (mainly to China), mainly to ports 22, 80, 7000.
The most strange aspect of the attack is that many of these flows originate from IP addresses which are unused! No ARP or MAC entries exist for these addresses.
I thought that hacking to one of the exposed Switches/Wireless Routers might have been the source of the issue, so we blocked access and eventually we shut vlan2 down. Before that, we examined all these devices and we did not find any visible signs of hacking (config changes / password changes / new accounts, etc.).
However, we continued to see the same behavior, until we rebooted SW0 and we are currently see no such traffic, although we are worried that it will start again.
We have the following questions:
Can someone understand/explain what may have really happened?
We are suspecting that, if Switches have not been hacked, some endpoint (node) may have been hacked and be causing this traffic. Is there a way we can monitor the number of outgoing flows per port on switches, to be able to identify a port (and an associated connected device) that causes the traffic?
Is it possible that a Cisco Switch may run malware? Where/how should we look for it?
Can you please suggest any other actions we should take (investigative commands to run, etc)?
Can you suggest related documentation?
Thanks in advance,
Nick

We found what was happening and I post here for everyone's reference.
A workstation (running an old version of fedora) had been hacked and was attacking the Internet using IP spoofing. It was automatically using IP Addresses from all the public Class-C network to which its own IP Address belonged.
So, not any part of the network infrastructure had been hacked, but the source of the attack was difficult to locate.
Regards,
Nick

Similar Messages

  • Is it SOP to share my email address with 3rd parties without my explicit permission?

    I created a gmail account for an addon.
    I created a Firefox add-on and submitted it.
    Within a week I get an email from WordPress, sent to the addon's gmail account.
    WTF!
    So, is it standard operating procedure for Mozilla to give my personally identifying information away to a 3rd party without my EXPLICIT permission? For Facebook, sure; but, not for Mozilla. You guys are supposed to be better than this.

    ''If it wasn't you, maybe it was GitHub?''
    just to avoid any misconception, i'm a normal user like you (and also happen to host an addon on AMO), so i obviously cannot speak for mozilla authoritatively. <br>but judging from my personal experiences (as far as i 'm aware no piece of information that i've provided to mozilla has gone to any place it shouldn't be in) and also from my insight into the kind of conduct of the organisation i feel quite confident to say that your address didn't leak from mozilla - they also would have quite a reputation to lose.
    maybe it's best to drop wordpress a line and to inquire how your email got into their system...

  • When about to log in to my Yahoo it says this info can easily be seen by 3rd parties? what does this mean?

    It said the information you are putting in can easily be viewed by 3rd parties. Is this a firefox issue or something else?

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    Is the credit card registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management
    Each time that you add or change your card details then a temporary store holding charge may be applied to check that the card details are correct and valid (though that is usually $1 or the approximate local equivalent) : http://support.apple.com/kb/HT3702
    Did your daughter owe any amounts to iTunes ? Does anything show on your purchase history : http://support.apple.com/kb/HT2727 ? If they are proper charges which you don't think that you should have then you can contact iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How to extract Slide data in 3rd part application from clipboard

    I need to be able to copy/paste or drag/drop from PowerPoint into another application (C# WPF). In my OnDrop method the DragEventArgs Data has these formats:
            [0]    "Preferred DropEffect"    string
            [1]    "InShellDragLoop"    string
            [2]    "PowerPoint 12.0 Internal Slides"    string
            [3]    "ActiveClipBoard"    string
            [4]    "PowerPoint 14.0 Slides Package"    string
            [5]    "Embedded Object"    string
            [6]    "Link Source"    string
            [7]    "Object Descriptor"    string
            [8]    "Link Source Descriptor"    string
            [9]    "PNG"    string
            [10]    "JFIF"    string
            [11]    "GIF"    string
            [12]    "Bitmap"    string
            [13]    "System.Drawing.Bitmap"    string
            [14]    "System.Windows.Media.Imaging.BitmapSource"    string
            [15]    "EnhancedMetafile"    string
            [16]    "System.Drawing.Imaging.Metafile"    string
            [17]    "MetaFilePict"    string
            [18]    "PowerPoint 12.0 Internal Theme"    string
            [19]    "PowerPoint 12.0 Internal Color Scheme"    string
    The "PowerPoint 14.0 Slides Package" is a byte array... can this be converted into Slides?
    If not how would I go about getting high-resolution images + slide text from a drag/drop?
    [Originally posted here: http://answers.microsoft.com/en-us/office/forum/office_2013_release-powerpoint/how-to-extract-slide-data-in-3rd-part-application/a0b5ed64-eb77-49bb-bf44-e0732e23a5eb]

    What I'd like to do:
    Open PowerPoint
    In PPT open a presentation
    In PPT select a slide
    Drag it to my 3rd party WPF application
    In the 3rd party WPF application drop handler get the slide data (text, background image, etc...).
    When I do this I get the DragEventArgs Data (the clipboard data) and it has the 20 supported formats I listed in the 1st post. From these formats #4 seemed like it could have some useful info.
    WPF
    <Window x:Class="PowerPointDropSlide.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" AllowDrop="True" Drop="UIElement_OnDrop" DragOver="UIElement_OnDragOver">
    <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="LightBlue">
    <TextBlock Text="Drop something here!"/>
    </Grid>
    </Window>
    Handlers:
    public void UIElement_OnDragOver(object sender, DragEventArgs e)
    public void UIElement_OnDrop(object sender, DragEventArgs e)
    string[] supportedFormats = e.Data.GetFormats();
    object pptSlidesPackage = e.Data.GetData("PowerPoint 14.0 Slides Package");

  • Giveing 3rd parties access to message tracking for their messages?

    Hello,
    Before I go looking at documentation to see how I would like to find out if it is possible, with Oracle SOA Suiet 11g R1 PS2/3 B2B, to configure the B2B Web Console in such a way that a 3rd party can be given view access to message tracking and/or KPIs for partnerships that involve their messages only?
    The purpose of this is to selectively provide visibility to 3rd parties and minimise the effort the hosting infrastructure support needs to go to to help troubleshoot messaging issues.

    Hi Michael,
    Now the question on what is the Enterprise Identiry storeAn Enterprise Identiry store is a store which maintains authentication information of all the users of an enterprise and categorizes (or groups) them into particular roles, for e.g. a LDAP system. By default, each weblogic domain has an embedded LDAP server which stores the information of all the users of that domain. The Default Authentication, Authorization, Credential Mapping, and Role Mapping providers of Weblogic use the embedded LDAP server as their data store.
    and where do I look to find out how to created the users, the roles and the assignments So if you are working with default Weblogic LDAP, then you have to just create a user on Weblogic and assign it to appropriate group. Then assign a specific role to this user on B2B console (because B2B uses the Weblogic's security framework for authentication & authorization). I have written a short blog on the same which you may refer (here I have added a user in Host TP so it belongs to Host Admin/Monitor, you may perform same steps to add a user in remote TP user's tab to make it remote admin/monitor) -
    http://anuj-dwivedi.blogspot.com/2010/10/enabling-weblogic-user-to-login-on-b2b.html
    You may also refer section "5.3 Adding Trading Partner Users" in B2B user guide -
    http://download.oracle.com/docs/cd/E17904_01/integration.1111/e10229/b2b_tps.htm#BABHCGFJ
    To understand Weblogic's security framework, you may refer -
    http://download.oracle.com/docs/cd/E17904_01/web.1111/e13707/toc.htm
    http://download.oracle.com/docs/cd/E17904_01/web.1111/e13747/secroles.htm#i1206135
    Regards,
    Anuj

  • Adobe Flash 3rd part permission

    What's the point of choosing whether to allow or deny 3rd parties to store information on your device if the "Deny" button on the Adobe pop up window does not work?  The "allow" button works every time, without fail.  Seems like a huge loophole in your sustem, Adobe!

    It's not Adobe's system. Storage is on your computer locally. If you're going to watch videos, or play Flash games online, you NEED to allow a certain amount of the data from those pages to store on your system, or the result is "choppy" video that stops and restarts constantly, or games that freeze up until the server can store enough data to continue.
    The option to accept or deny data is all yours.  Bottom line is: If you DON'T trust the site asking to store data, DON'T allow it. You can set this permanently in the Global Settings manager (Control Panel>System and Security>Flash Player (32bit)). Just be aware that Flash Content needs to store temporary data to function properly.

  • "Premium Messaging" (aka "Premium Text Messaging) - Blocking 3rd Parties from Generating and Opting Out

    <Duplicate post and will be locked. Please see any replies at How can I block text msgs?.>
    NOTE: THIS MESSAGE IS INTENDED AS INFORMATION SHARING
    Here is what I've recently learned (the hard way) about "Premium Messaging"/”Premium Text Messaging” charges of $9.99 that show up in the "Usage Charges" section of your monthly bill under Data (taken from an email from a Verizon Wireless Customer Service Rep):
    "...Premium Text Messages are services offered by third party content providers. They can offer many different things such as: weather or news alerts, sports score alerts, horoscopes, jokes, and even traffic reports. They can also provide entertainment services such as: games, trivia, chat services, free ring tones, or as a part of social media for services provided through Facebook or other sites. You may also be familiar with television or radio programs that have you vote for your favorite artist by sending a text message to a short five or six digit code. Sending a text to those codes is how you get signed up for these services.
    In order to remove it, you simply send a text message from that specific phone to that short code. (34135) In the body of the text, simply write the word Stop. Finally go ahead and send the message. Within a few minutes, you should receive a text back from that company stating that you have cancelled out of their subscription service.
    ...I recommend sending this text as soon as possible to avoid future charges. Judging by the date you supplied, they appear to charge on the 6th of every month."
    What this boils down to is that Verizon is complicit in allowing 3rd parties to occur extra charges via their monthly billing, despite the fact that you may have not realized the text was an "opt out" type. If you read the texts that come in English, the method of opting out is specified, which in my case was replying to the text with just the word STOP – I was thereby opted out, BUT FOR JUST THAT SPECIFIC 3RD PARTY. You should then (IMMEDIATELY) call Verizon customer service at 1-800-922-0204 and request that “Premium Messaging” be blocked.
    I believe you can also do this yourself at:
    https://wbillpay.verizonwireless.com/vzw/accountholder/uc/UCServiceBlocks.action
    You can also read about this subject at:
    http://support.verizonwireless.com/faqs/Premium_TXT_and_MMS/faq_premium_txt_and_mms.html - pay special attention to item #4.
    For those who say “you should have read your contract more clearly in the 1st place”: my father had died not long before I signed up with Verizon, and I was still in a fog, not really capable of absorbing a lot of information.  I don’t remember reading the first such msg I got; I might have even deleted it before reading it completely because at 1st glance you can tell it's a solicitation. What that very brief, 1st glance doesn't scream out at you is the fact that this is something you must reply to opt out of.
    Message was edited by: Maki
    Message was edited by: Verizon Moderator

    I called customer service from my phone to get this taken care of, and everything went great. 
    If anyone else has the same problems, just know that I got this resolved immediately.  I put the block on premium messaging last night, and this morning I saw a Verizon Support tweet about this same issue that recommended forwarding the spam message to 7726.  I did that and followed some instructions that were replied back to me.  Then I went ahead and called customer service, told them the problem, and they issued a credit right away.  I just checked and it went into effect immediately.
    Like I said, if anyone else has this problem, these steps resolved it perfectly for me.  Good job, Verizon.

  • Apple: MagSafe connectors not for 3rd parties, no external batteries!!!!

    Apple will not release use of their MagSafe connectors to 3rd parties
    Here is an example email reply that I have gotten from many third party battery suppliers:
    Subject: Re: Email Inquiry From LindElectronics.com
    From: "Terry Neville" <[email protected]>
    To: "PVM" <[email protected]>
    Sorry,
    Apple will not release use of their MagSafe connectors to 3rd parties.
    We can't do it.
    Thanks, T. Neville
    On 7/16/06 11:14 PM, "PVM" <[email protected]>
    wrote:
    We have received an inquiry from:
    Name: PVM
    Phone: 818 332 1222 Ext: 2024
    Email: <[email protected]>
    The inquiry is as follows:
    Will there be a 'tip' for the new MacBooks? (MacBook Pro, etc.)
    Thanks in advance,Paul in SoCal
    iMac PowerPC G5, 2 GHz,2GB DDR SDRAM, 1680 x 1050   Mac OS X (10.4.6)   2 GHz, 2GB DDR SDRAM, Hitachi HDS724040KLSA80, MATSHITADVD-R UJ-845

    Apple will not release use of their MagSafe connectors to 3rd parties
    Here is an example email reply that I have gotten from many third party battery suppliers:
    Subject: Re: Email Inquiry From LindElectronics.com
    From: "Terry Neville" <[email protected]>
    To: "PVM" <[email protected]>
    Sorry,
    Apple will not release use of their MagSafe connectors to 3rd parties.
    We can't do it.
    Thanks, T. Neville
    On 7/16/06 11:14 PM, "PVM" <[email protected]>
    wrote:
    We have received an inquiry from:
    Name: PVM
    Phone: 818 332 1222 Ext: 2024
    Email: <[email protected]>
    The inquiry is as follows:
    Will there be a 'tip' for the new MacBooks? (MacBook Pro, etc.)
    Thanks in advance,Paul in SoCal
    iMac PowerPC G5, 2 GHz,2GB DDR SDRAM, 1680 x 1050   Mac OS X (10.4.6)   2 GHz, 2GB DDR SDRAM, Hitachi HDS724040KLSA80, MATSHITADVD-R UJ-845

  • TS3474 Cracked screen: Case has an inscription I want to keep.  Any Apple or 3rd parties that can replace the screen?

    Cracked screen: Case has an inscription I want to keep.  Any Apple or 3rd parties that can replace the screen?

    Cracked screen: Case has an inscription I want to keep.  Any Apple or 3rd parties that can replace the screen?

  • Will AppleWorks file formats now be open to 3rd parties?

    It would be nice if Apple published the file formats for AppleWorks so that 3rd parties could build importers, etc.

    After working with Apple SCM years ago, I doubt they even know where the source code is for AppleWorks.
    I had to send the Emailer source code to them 4 times...
    smiles,
    Jamie
    Ex-Claris/FileMaker employee

  • HT202304 iCloud email will not work with 3rd part email client

    Can anyone help me configure iCloud with thunderbird, or outlook , or airmail, etc?
    I am unable to set up any 3rd Party email client with iCloud email. I have looked at the instructions at Apple with no success. I just spent an hour on the phone with support and they tell me this in not their problem. Yet Outlook, thunderbird all say it is their problem so flustering.

    These are the settings. Note particularly the requirement for SSL.
    IMAP information for the incoming mail server
    Server name: imap.mail.me.com
    SSL Required: Yes
    If you receive errors when using SSL, try using TLS instead.
    Port: 993
    Username: The name part of your iCloud email address (for example, emilyparker, not [email protected])
    Password: Your iCloud password
    SMTP information for the outgoing mail server
    Server name: smtp.mail.me.com
    SSL Required: Yes
    If you receive errors when using SSL, try using TLS or STARTTLS instead.
    Port: 587
    SMTP Authentication Required: Yes
    Username: Your full iCloud email address (for example, [email protected], not emilyparker)
    Password: Your iCloud password

  • Finding a number of unused IP addresses based on subnets

    Hello,
    I am new in PS so I would ask you for understanding in below matter.
    I need to find a number of unused IP in some subnets in my organization for planning purposes.  I would like to use input file where I could  enter a few subnets, then search all subnet range looking for not responding ip addresses. In output csv
    file I would like to have 2 columns: "Subnet" and "Number of free IP".
    Can I use "New-Object System.Net.Networkinformation.ping" class as below to search not responding IP and then count it in some way ?
    $Connect = New-Object System.Net.Networkinformation.ping
    for ($i=1; $i -le 254; $i++)
        $IP = "192.168.0." + $i
        $Status = ($Connect.Send("$IPAddress", 1)).Status
            if ($Status -eq "TimedOut")
            Write-Host "$IP is free"
    Regards,
    Mike

    This one is working but it is not solving my issue. I need to count amount of "TimedOut" results and then
    write it in csv output file.
    e.g. 2 columns
    subnet, 192.168.0.
    NumberOfTimedOut_IP, 67 
    Help Export-Csv
    You could start by learning PowerShell.
    https://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx
    You can also look in the repository as there are numersou sripts there that do this:
    https://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx
    We do not write scritps on demmand but canhelp you learnhow to write your script.
    Post back with a specific scripting question when ready.
    ¯\_(ツ)_/¯

  • How to collect intranet user's MAC address from web part on document library

    I need the best solution for the following problem:
    Let's say for an intranet application just to do customization through a web part on a document library we need to collect MAC address of all user's machine who tries to access the particular document library. 
    main point to achieve is we want to give access only to few users to a particular document library. I think if we get unique mac address then also purpose can be solved. Is there any other way apart from mac?
    In SharePoint 2013 on premise application what is the best way to do this customization? early reply is highly appreciated.
    Thanks,

    Hi,
    Why do you need this?  SharePoint runs on top of ASP.NET so its limited to what ASP.NET can do.  A quick google returns results like:
    http://www.codeproject.com/Questions/303612/How-to-get-Mac-Address-of-Client-Machine-in-asp-ne
    It's highly unlikely you can achieve this, back to my first question - why?  Maybe you can achieve the requirement in a more supportable manner.  I'm assuming you want to track the user.
    Thanks
    Dave
    My SharePoint Blog - http://www.davehunter.co.uk Twitter -
    @davehunter

  • 3rd part subtitling apps for the mac

    Can anyone recommend a good 3rd party subtitling app for the Mac, preferably free? OR if all else fails a free PC app?
    I am looking at Bell Nuit, but from reading their material I can only get graphical files, instead of a single subtitle file.
    This is my first project with DVD Sp and of course it involves subbing 10 minutes of conversation heavy video, so if you have any tips I would greatly appreciate those, and I look forward to being part of this great board!

    You can always subtitle directly in DVD-SP (though it 's not recommended it might be appropriate in this case with a short film).
    STL Edit is probably the cheapest Mac solution. On the PC there is Subtitle Workshop which is free...
    Steve Kirkham

  • Address book deletes parts or sections of individual cards

    My address book has deleted parts of some of my addresses; i.e. deletes home address. When I go back in time machine I find the original card as it used to be beginning of September. If I restore the card it imports the card into my address book exactly as it appears now without the home address information. Has anybody experienced the same problem?

    hpMac wrote:
    I do sync with mobile me. I am using a whole number of devices with my mobile me account (laptop, computer, iPhone, etc.). But I never deleted the address in any of these devices.
    This could also mean that other vCards have lost information and I have just not found out yet, wright?
    right.
    are your contacts missing info on your other devices? or just on this computer?
    check that first.
    next you should reset your mobileme sync data.
    http://support.apple.com/kb/HT1497
    then turn off mobileme syncing completely for the address book and try teh steps in my first post.

Maybe you are looking for

  • Problem with multiple tiles-defs.xmls  in struts

    Hi, I am using struts1.3.I have two struts-config.xml files in my application.I am adding those files in web.xml. <servlet>           <servlet-name>action</servlet-name>           <servlet-class>                org.apache.struts.action.ActionServlet

  • Java Web Start opening code not app

    For the past year I have had no problems opening up *.jnlp files with Java Web Start. Starting last week when clicking on any link to launch a Java app I get the code opening up in TextEdit. For example when I click on 'Welcome to Web Start' on this

  • Javax.servlet.jsp.JspException: Cannot forward a response that is already committed at

              Hello,           Went through the article           http://dev2dev.bea.com/articles/platform7_feature.jsp           I thought if you have a workaround for the following issue.           Any help to solve this issue is much appreciated.     

  • IMovie won't let me export in HD

    I imported an MP4 into iMovie, set the project preference to 16:9 and it still won't let me export the movie in anything but the "tiny and mobile" options.  The "medium, large and HD" options are greyed out. What could be the problem?  thanks

  • Indesign Incopy workflow crash!

    My indesign incopy workflow consistently crashes!!! I don't know what to do! My incopy user updated the incopy file. I open indesign and try to update the story and it crashes. I tried to save as an .IDML without updating the files because that's whe