ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. IT-ADMIN
    3. Topics
    • Profile
    • Following 0
    • Followers 4
    • Topics 57
    • Posts 1,181
    • Groups 0

    Topics

    • IT-ADMINI

      logrotats vs simple cron job

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion centos 7 logging
      8
      1 Votes
      8 Posts
      995 Views
      stacksofplatesS

      @IT-ADMIN said in logrotats vs simple cron job:

      by the way you like jesse pinkman yo yo

      Ha that's the first time I've heard that.

    • IT-ADMINI

      Policies vs Network Access Control

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      30
      0 Votes
      30 Posts
      2k Views
      DashrenderD

      @scottalanmiller said in Policies vs Network Access Control:

      @Dashrender said in Policies vs Network Access Control:

      @IRJ said in Policies vs Network Access Control:

      This is not a problem that can be fixed with compensating controls. It needs to be nuked from orbit and rebuilt properly with employee buy in.

      At this point - that seems very unlikely if you have users who are willing to nuke their own machines and reinstall. They'll likely demand or at least attempt to demand local admin rights.

      Really just becomes the same as BYOD. Easy enough to manage. Not ideal, but doable.

      Exactly - better model in most cases anyhow.
      Just change how you (the OP) deliver services.

    • IT-ADMINI

      arcSight SIEM

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      3
      0 Votes
      3 Posts
      384 Views
      stacksofplatesS

      I've used Graylog previously. We used limited amounts of the dashboards in Graylog and we mostly created our own in Grafana to display things we needed. The advantage to Graylog over Elastic Stack is RBAC is included out of the box, you don't have to purchase X-Pack or custom build anything to get that functionality.

      But I don't believe it works natively with Wazuh like @IRJ mentioned.

    • IT-ADMINI

      How Can You Prevent Non-Domain Users from Getting an IP Configuration

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion active directory domain active directory network access control security networking
      16
      0 Votes
      16 Posts
      2k Views
      scottalanmillerS

      Discussion on the policy side of this is over here:

      https://mangolassi.it/topic/20894/policies-vs-network-access-control

    • IT-ADMINI

      Anyone tried ELK stack before ???

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion elasticsearch elk logging logstash kibana
      9
      1 Votes
      9 Posts
      1k Views
      scottalanmillerS

      Tags added.

    • IT-ADMINI

      strict syntaxt

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      9
      2 Votes
      9 Posts
      3k Views
      tonyshowoffT

      It sounds like you're talking about typing, not syntax, C++ and Java are strongly typed languages, their syntax is not actually much more "strict" than other high level languages, I have about equal syntax freedom in PHP 7, Java, and C++, but JavaScript has a little bit more "freedom", in the sense it allows you to do asinine things like not have semicolons at the ends of lines. This is something crappy Ruby and Python programmers sometimes love doing since they rail against semicolons, of course making their JavaScript harder to debug and impossible to compress.

      Anyway...

      Weak typing is easier for beginners, but it can make things difficult for larger, more complex projects; this is something we kept bumping up against in PHP, which is why PHP 7's strict typing is great and we've saved a lot of debugging headaches and dealing with other problems by making everything strictly typed.

      Both PHP and JavaScript allow both static and dynamic comparison regardless of type strictness, for example:

      1 == "1" True 1 === "1" False

      The strict comparison is good for several reasons, however even in JavaScript there's a few issues with it, because JavaScript types in-of-themselves are not very good. There's not only a single object type which creates insane and unexpected results but there's also only a single numerical type as float, so:

      0 == 0.00000000001 True

      Languages like C++ and Java always have type strict comparison, so it's as if you're typing === every single time.

      Having said that, when it comes to strict mode, those are different depending on the language. In PHP it's related to typing and how objects are handled (non-static properties cannot be accessed statically, for example), however in JavaScript it's primarily related to variables and object properties, all of the type issues still exist regardless.

      Should you use it? In JavaScript absolutely always, because it helps make up for some of the language's flaws which can get you into trouble debugging later on. When it comes to PHP always have E_ALL | E_WARNING | E_NOTICE | E_STRICT | E_PARSE set in your php.ini (or barring that, set in .htaccess) and if you're using PHP 7 take advantage of the strict typeness, but even if you don't want to use PHP 7's new strict typing, properly log errors.

      Do it right the first time.

      As @JaredBusch said above, when I don't see it enabled, it's just a sign of the horrors to come. Even well written JS code will have errors typically in it when people don't use strict.

      In the amateur programming world, especially PHP (but also JavaScript) there's a desire to simply hide warnings, notices, errors, etc rather than fixing them. This is like taping over your check engine light on your car and assuming it's now completely fine.

      In other words, if you feel as though you should be able to suppress syntax and type errors knowingly, you should not program; get someone else to do it. I sometimes hurt feelings saying this, but if you approach any other job in a similarly lazy manner, you'd be fired or in some cases imprisoned when your building collapsed or killed someone.

      In actuality, programming errors have killed people, maybe yours won't, but that's no excuse to intentionally do a bad job because you're lazy. It's bad for your customers, bad for your environment, bad for your users, and bad for you when things fail and break and you don't know what went wrong because instead of logging properly and completely, you suppressed everything.

      In addition to returning to projects much later, laziness with typing and also syntax causes people to write bad code initially so later on they have a much harder time reading their own code or debugging. Some people say this doesn't happen to them, perhaps with tiny scripts that's true, but beyond that they're just lying, or they're stupid.

      So no, it's not awesome, and I've personally had to fix cases where ignored notices from PHP created failed database queries and data loss, as well as incomplete data states, and there's the recent example of a similar declaration problem leading to a guy deleting all of his customer data, that is also an example of why you don't program in production, another massive problem out there.

      Either turn on all warnings and notices, enable strict everywhere you can or stop programming, no matter what it is you're working on. There's enough bad code out there, fix your approach before you get too old to do it and you're that old programmer everyone hates or that old IT guy who writes bad scripts which break things everyone else has to fix.

      So when starting a project or script, if you want to hide PHP's warnings or notices or keep JavaScript from being strict remember to tell yourself, clients, and anyone else that "I'm starting this new project and I'm going to do a terrible job at it," because you will, it's inevitable.

      So I agree with @scottalanmiller, it depends on what your goals are, either to write something that works and is easier to maintain later on, or to write garbage to create a hell for yourself and other people which may or may not destroy data and lose things with no further information as to what went wrong.

      Now that you know the importance of it, any decision otherwise beyond this point is being intentionally stupid and reckless.

    • IT-ADMINI

      Long line breaks syntax highlighting in atom editor

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      6
      1 Votes
      6 Posts
      1k Views
      IT-ADMINI

      thank you guys, if it is the case i have to break the long line into small lines

    • IT-ADMINI

      what language used in Mangolassi

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      31
      2 Votes
      31 Posts
      4k Views
      tonyshowoffT

      @jaredbusch said in what language used in Mangolassi:

      @scottalanmiller said in what language used in Mangolassi:

      @it-admin said in what language used in Mangolassi:

      @scottalanmiller but PHP still has the lion share in the web market, isn't it??

      PHP is making a big come back now. It never went away, but since the PHP 7 series released it has greatly improved in performance and features and is way more viable today than it was at the time of this thread. Its ecosystem has blossomed again and there are more and more powerful frameworks than before.

      It is still only one of many great options, but way better than it used to be.

      WTF with the necro posting yesterday and today...

      This ain't some phpBB forum with vidya games, son, everything is always worth talking about

      That is supposed to sort of sound like Hank Hill

    • IT-ADMINI

      Additional DC not functioning if the Primary DC is down !!

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion active directory
      61
      0 Votes
      61 Posts
      8k Views
      DashrenderD

      @scottalanmiller said:

      If you have a second DC, the secondary DNS should point there rather than to the gateway.

      If you don't have a second DC, then it should be blank.

    • IT-ADMINI

      Web Application VS Windows Application

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion programming
      450
      1 Votes
      450 Posts
      125k Views
      scottalanmillerS

      @jmoore said in Web Application VS Windows Application:

      @scottalanmiller Certainly could be.

      He has over 1,200 posts, one of our top posters over the years.

    • IT-ADMINI

      Problem with Booting a Dell Optiplex 780 Desktop

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion hardware desktop dell optiplex 780 motherboard
      18
      2 Votes
      18 Posts
      6k Views
      Reid CooperR

      Apparently this got abandoned.

    • IT-ADMINI

      cannot get promiscuous mode to work with xenserver

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion xen xenserver networking xenserver 6.5 promiscuous mode
      13
      2 Votes
      13 Posts
      5k Views
      J

      @it-admin 4 years later, I encountered the same issue that you did.

      The solution for me was do do a PCI passthrough of the physical NIC directly to the VM. This bypasses all virtual switching inside Citrix Hypervisor. I posted the exact steps to implement PCI passthrough on Citrix Hypervisor 8.2 here:

      https://discussions.citrix.com/topic/414458-open-vswitch-not-passing-all-traffic-from-pif-to-vif/

    • IT-ADMINI

      strange letters with received email on outlook 2007

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion ms office ms office 2007 outlook outlook 2007
      28
      1 Votes
      28 Posts
      5k Views
      IT-ADMINI

      because there is no additional setting that i have to do with other computers, only setup MS office and everything is OK except with these 2 computers and maybe the number will increase in the future,

    • IT-ADMINI

      no NIC detected in windows XP guest in xenserver Host

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion
      8
      1 Votes
      8 Posts
      996 Views
      IT-ADMINI

      thank you guys, you are right the citrix PV ethernet Adapter was not installed, one window keep pop up telling that one driver is missing, i followed next next then finally the PV driver was installed 🙂

      thank you

    • IT-ADMINI

      ask for advise before formatting my dell poweredge T310

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      48
      1 Votes
      48 Posts
      8k Views
      scottalanmillerS

      @DustinB3403 said:

      My point is that the key he's been using has likely been blacklisted. Therefor it wouldn't have anything to activate against.

      It would have something to activate against, it would just fail, in that instance. Your answer led him to the opposite conclusion from what you intended.

    • IT-ADMINI

      LAN speed

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      67
      2 Votes
      67 Posts
      11k Views
      DashrenderD

      @scottalanmiller said:

      @IT-ADMIN said:

      but still very less that what it's supposed to be

      Define "what it is supposed to be?" What makes you feel that it should be faster?

      Exactly - Until you test transfering a 4+ GB file so you have at least 1 min of sustained transfer on a single file you won't really know what you're getting.

      As Scott mentioned, small files are the killer of SMB protocol.

    • IT-ADMINI

      pay attention to kaspersky, very very bad tech support

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      7
      1 Votes
      7 Posts
      1k Views
      O

      @Ambarishrh said:

      @IT-ADMIN As mentioned previously, post this on their twitter page, and see if that helps! 🙂
      https://twitter.com/kaspersky you will get a broader audience, and i guess they will listen to you then!

      Also add https://twitter.com/e_kaspersky who is the Chairman and CEO of #Kaspersky Lab. 😉

      An example:
      https://twitter.com/kaspersky/status/630771200944414720

      Not sure if that was solved but at least some one replied! 🙂

      And this one could help too http://qz.com/437219/complaining-on-twitter-can-result-in-good-customer-service-if-you-do-it-right/

      OK, so they don`t care completely:)
      TBH I have no idea why they are ignoring people on their own forum - that thing is public as well.

    • IT-ADMINI

      what are the best practices to do before virtualizing a physical DC ?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion windows server 2008 r2 p2v virtualization active directory best practices
      27
      1 Votes
      27 Posts
      6k Views
      scottalanmillerS

      How goes your project?

    • IT-ADMINI

      Cannot Control My Desktop from Center Kaspersky

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion kaspersky antivirus kaspersky center
      35
      1 Votes
      35 Posts
      9k Views
      scottalanmillerS

      @JaredBusch said:

      @IT-ADMIN said:

      is this feeling is wrong???
      because whenever i'm doing something on the cloud i start have concern on security

      I most certainly do not. The only reason to feel safe locally is because you are practicing security through obscurity, and that is not security.

      Well known reputable providers have security teams dedicated to ensuring their services are secure.

      ^^^ This. Not only do they have teams of people that do this, and they have people with a lot more experience than you are likely to have, and lots of them... but they also have more money and resources, take security much more seriously, don't deal with SMB politics crippling their security efforts, have tons of reputation on the line and the big one... they know their product far better than anyone else and simply have more capability to protect it.

    • IT-ADMINI

      windows server 2008 R2 SP1 license (physical VS virtual)

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      43
      1 Votes
      43 Posts
      6k Views
      scottalanmillerS

      @IT-ADMIN said:

      ok what about upgrading my preexisting 2008 R2 to 2012 R2 without losing my current configuration?? is it possible ??

      Yes, you can do in place upgrades in most cases. Rarely recommended, clean installs are better, especially for servers. But technically it can be done.

    • 1 / 1