Skip to content

Network Security Monitoring

Learning
  • I am wondering what everyone is using for network security monitoring? I did a good search and there are so many options. I was also wondering if it is worth running a network monitoring software on a local network? Maybe it isn’t even worth running a tool like that on a local network? I don’t think people are trying to break into my local network, but was curious what others do.

    Say I have virtual servers running that have the network card bridged. Is it worth having monitoring software installed and running for them as well?

  • I found this video that monitors all sorts of things over the network. Hardware and such as well. He goes over and how to setup Whats Up Gold. It is free for your personal network and for business it costs money of course.

    Thoughts?

    @phenomlab if you don’t want videos like this on your site let me know and I won’t do that for future posts. You can also remove the video from this post as well if not allowed.

  • @Madchatthew certainly worth monitoring, but for it to work correctly, the bridge card needs to be running in promiscuous mode otherwise packets will be discarded by the NIC itself.

    Are you looking specifically for security monitoring, or general performance monitoring also? I know that @DownPW has a lot of experience with Crowdstrike but that is essentially application layer rather than machine, so in the sense of the OSI model, it’s layer 7.

    I suspect you are looking for layer 1 or 2 which would be physical (1) or data (2). There are numerous security products out there (some really good open source ones also) but I prefer to tap into the network stream at layer 3, so in this example, you’d use a network switch and create a network tap or mirroring port and use another program to read and analyse that traffic.

    Taking this route means it’s agentless, and you don’t have to add machines manually. Really depends on what your requirements are.

  • @Madchatthew absolutely no issue. Including any source material such as videos is actively encouraged as it saves other members having to search themselves.

  • @phenomlab To be honest, I didn’t really know what I am looking for or what level of monitoring I should do or if I even need to do any monitoring. I know with what seems like an increase in hacking lately, that maybe it wouldn’t be such a bad idea.

    I do like the sound of layer 3 monitoring so you don’t have to manually add machines. Do you have some examples of some of the open source software out there that does the layer 1 or 2 monitoring?

    @phenomlab said in Network Security Monitoring:

    @Madchatthew absolutely no issue. Including any source material such as videos is actively encouraged as it saves other members having to search themselves.

    Sounds good, thank you!

  • @Madchatthew You could try this, but the hardware specs are insane.

    https://github.com/telekom-security/tpotce

    I’d couple this with Zabbix, which is an open source monitoring platform, but mostly geared towards operational monitoring rather than security.

    For that, take a look at OSSEC

    https://www.ossec.net/

  • @phenomlab I will check those out. Thanks for sharing. I appreciate it!


Related Topics
  • 5 Votes
    4 Posts
    286 Views

    @DownPW here. Hostrisk is automated and doesn’t accept registrations.

  • 3 Votes
    4 Posts
    496 Views

    @DownPW yeah, I seem to spend a large amount of my time trying to educate people that there’s no silver bullet when it comes to security.

  • IRC Server/Client - Chat App with NodeBB

    Linux
    6
    1 Votes
    6 Posts
    640 Views

    @Hari not sure from the consumer perspective, but Skype has been all but completely consumed by Microsoft Teams when it comes to business usage.

  • Securing javascript -> PHP mysql calls on Website

    Solved Security
    2
    1 Votes
    2 Posts
    345 Views

    @mike-jones Hi Mike,

    There are multiple answers to this, so I’m going to provide some of the most important ones here

    JS is a client side library, so you shouldn’t rely on it solely for validation. Any values collected by JS will need to be passed back to the PHP backend for processing, and will need to be fully sanitised first to ensure that your database is not exposed to SQL injection. In order to pass back those values into PHP, you’ll need to use something like

    <script> var myvalue = $('#id').val(); $(document).ready(function() { $.ajax({ type: "POST", url: "https://myserver/myfile.php?id=" + myvalue, success: function() { $("#targetdiv").load('myfile.php?id=myvalue #targetdiv', function() {}); }, //error: ajaxError }); return false; }); </script>

    Then collect that with PHP via a POST / GET request such as

    <?php $myvalue= $_GET['id']; echo "The value is " . $myvalue; ?>

    Of course, the above is a basic example, but is fully functional. Here, the risk level is low in the sense that you are not attempting to manipulate data, but simply request it. However, this in itself would still be vulnerable to SQL injection attack if the request is not sent as OOP (Object Orientated Programming). Here’s an example of how to get the data safely

    <?php function getid($theid) { global $db; $stmt = $db->prepare("SELECT *FROM data where id = ?"); $stmt->execute([$theid]); while ($result= $stmt->fetch(PDO::FETCH_ASSOC)){ $name = $result['name']; $address = $result['address']; $zip = $result['zip']; } return array( 'name' => $name, 'address' => $address, 'zip' => $zip ); } ?>

    Essentially, using the OOP method, we send placeholders rather than actual values. The job of the function is to check the request and automatically sanitise it to ensure we only return what is being asked for, and nothing else. This prevents typical injections such as “AND 1=1” which of course would land up returning everything which isn’t what you want at all for security reasons.

    When calling the function, you’d simply use

    <?php echo getid($myvalue); ?>

    @mike-jones said in Securing javascript -> PHP mysql calls on Website:

    i am pretty sure the user could just use the path to the php file and just type a web address into the search bar

    This is correct, although with no parameters, no data would be returned. You can actually prevent the PHP script from being called directly using something like

    <?php if(!defined('MyConst')) { die('Direct access not permitted'); } ?>

    then on the pages that you need to include it

    <?php define('MyConst', TRUE); ?>

    Obviously, access requests coming directly are not going via your chosen route, therefore, the connection will die because MyConst does not equal TRUE

    @mike-jones said in Securing javascript -> PHP mysql calls on Website:

    Would it be enough to just check if the number are a number 1-100 and if the drop down is one of the 5 specific words and then just not run the rest of the code if it doesn’t fit one of those perameters?

    In my view, no, as this will expose the PHP file to SQL injection attack without any server side checking.

    Hope this is of some use to start with. Happy to elaborate if you’d like.

  • Securing your webserver against common attacks

    Blog
    1
    1 Votes
    1 Posts
    233 Views
    No one has replied
  • Addressing vulnerability management

    Blog
    1
    0 Votes
    1 Posts
    237 Views
    No one has replied
  • Security, Or Just Obscurity?

    Blog
    1
    +0
    0 Votes
    1 Posts
    322 Views
    No one has replied
  • is my DMARC configured correctly?

    Solved Configure
    3
    3 Votes
    3 Posts
    454 Views

    @phenomlab said in is my DMARC configured correctly?:

    you’ll get one from every domain that receives email from yours.

    Today I have received another mail from outlook DMARC, i was referring to your reply again and found it very helpful/informative. thanks again.

    I wish sudonix 100 more great years ahead!