ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. IT Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • Emad RE

      Best VAPT Service

      Watching Ignoring Scheduled Pinned Locked Moved vapt
      11
      0 Votes
      11 Posts
      805 Views
      scottalanmillerS

      I've not looked for one before, but here are some options...

      https://geekflare.com/php-security-scanner/

    • 1

      Live boot

      Watching Ignoring Scheduled Pinned Locked Moved linux live
      9
      4 Votes
      9 Posts
      580 Views
      DustinB3403D

      @JaredBusch said in Live boot:

      No he wasn't. he was helping someone else.

      Your response is both confirmation and denial to my question.

      I get that it's a definition about what live booting is. I was asking why was he posting it. You stated "No he wasn't" (wasn't what, helping someone?) and then said he was helping someone.

    • stacksofplatesS

      Should SodiumSuite Be Open Source

      Watching Ignoring Scheduled Pinned Locked Moved
      103
      0 Votes
      103 Posts
      9k Views
      stacksofplatesS

      @Dashrender said in Should SodiumSuite Be Open Source:

      @JaredBusch said in Should SodiumSuite Be Open Source:

      @stacksofplates said in Should SodiumSuite Be Open Source:

      . And like truecrypt it could be picked back up again.

      Software, not a service.

      Plus the authors were never trying to profit off truecrypt - Scott clearly wants to make a profit from these efforts.

      That's not the point. Even if it did make money and they decided to cancel it or it died for another reason it could be picked back up again. Making money is not a factor there.

    • scottalanmillerS

      MeshCentral Feature Request: User Groups

      Watching Ignoring Scheduled Pinned Locked Moved meshcentral 2 meshcentral
      15
      2 Votes
      15 Posts
      2k Views
      scottalanmillerS

      @Ylian said in MeshCentral Feature Request: User Groups:

      @scottalanmiller Feedback appreciated, let me know if it works for you. I did post a new blog on this topic today.

      We've started testing it and so far, yes, it is working!

    • scottalanmillerS

      SAMIT: The Myth of Active Directory

      Watching Ignoring Scheduled Pinned Locked Moved samit youtube active directory scott alan miller
      1
      1 Votes
      1 Posts
      431 Views
      No one has replied
    • scottalanmillerS

      SAMIT: The False Risk of Active Directory

      Watching Ignoring Scheduled Pinned Locked Moved samit active directory scott alan miller youtube
      1
      2 Votes
      1 Posts
      415 Views
      No one has replied
    • DashrenderD

      Buttercup Password Manager

      Watching Ignoring Scheduled Pinned Locked Moved buttercup passwords password managers
      25
      1 Votes
      25 Posts
      2k Views
      dafyreD

      @coliver said in Buttercup Password Manager:

      @wrx7m said in Buttercup Password Manager:

      @coliver said in Buttercup Password Manager:

      @wrx7m said in Buttercup Password Manager:

      @coliver Right, bitwarden.

      I am.

      And, how do you like it?

      I like it a lot. It does everything I need it to do.

      Same here. I've been using them for a few years now... Makes switching browsers a breeze.

    • B

      SMB share from RHEL access issues ...

      Watching Ignoring Scheduled Pinned Locked Moved windows 10 samba
      6
      1 Votes
      6 Posts
      607 Views
      DashrenderD

      @BraswellJay said in SMB share from RHEL access issues ...:

      I did enable SMB v1 on the windows 10 clients thinking that would be necessary but that did not have any effect.

      On Windows 10, did you enable SMB v1 server or client? In this case, you would need to enable only client to make this work, assuming this is the problem.

    • openitO

      Looking for free RMM kind, or at least with H/W and S/W inventory software with agent.

      Watching Ignoring Scheduled Pinned Locked Moved
      15
      1 Votes
      15 Posts
      938 Views
      scottalanmillerS

      @manxam said in Looking for free RMM kind, or at least with H/W and S/W inventory software with agent.:

      How is this any different than SC? One can just use backstage to gain either powershell or CMD.
      The only benefit I see to MC is that you can run either as the currently logged in user (though don't have much of a need of that myself).

      Well for one thing, it's not Windows-only. Also it is lighter, no GUI being passed through. Backstage is, I think, a newer thing.

    • wrx7mW

      Resolved: Weird Website Redirect Issues

      Watching Ignoring Scheduled Pinned Locked Moved Solved wordpress cpanel centos cloudflare dns redirect domain name 301 redirect
      4
      0 Votes
      4 Posts
      876 Views
      wrx7mW

      Turns out that there was a wildcard A record in DomainA2.com

    • JaredBuschJ

      Cleanup script help

      Watching Ignoring Scheduled Pinned Locked Moved Solved scripting backup
      7
      1 Votes
      7 Posts
      504 Views
      JaredBuschJ

      ok this is what I came up with.

      #!/bin/bash # Send everything to logs and screen. exec 1> >(logger -s -t $(basename $0)) 2>&1 # Variables and descriptions of their use. # Array of dates found in the filename of the backup files. arrDates=() # Number of full backup sets to keep. keep=4 # How many full backup sets have been found. found=0 # Bas path to the backup files, minus the last folder. base="/home/jbusch/" # Full path to the backup files, populated by the script. path="" # This script requires that the final folder name be passed as a paramter. # This is because it is designed to be ran independently for each subfolder. # ex: ./file_cleanup.sh Hartford # ex: ./file_cleanup.sh Seymour #check for the path to be passed if [ ! -z "$1" ] then # Create the full path to be checked based on the passed parameter. path=$base$1 else exit 127 fi printf "Executing cleanup of backup files located in $path.\n" # Loop through all of the files in the path and parse out an array of the file dates from the file names. # All backups are named `backup-0000001-YYYYMMDD-XXXX*`. cd $path for f in backup-* do # The date is from character 15 for 8 characters. arrDates=("${arrDates[@]}" "${f:15:8}") done cd ~ # Sort in reverse order and only show unique dates. arrDates=($(printf '%s\n' "${arrDates[@]}" | sort -ru)) # Loop through the array of dates and check for there to be 4 files for each date. for checkdate in "${arrDates[@]}" do count=$(find "$path"/backup-0000001-"$checkdate"-* -type f -printf '.' | wc -c) if [ $count -eq 4 ] && [ $found -lt $keep ] then found=$((found+1)) printf "Checking $checkdate, we found $count files. We are keeping this date, currently we have $found dates saved.\n" elif [ $count -gt 0 ] && [ ! $count -eq 4 ] then printf "Incorrect number of files '('$count')' found, removing invalid backup dated $checkdate.\n" rm $path/backup-*-$checkdate-* elif [ $count -gt 0 ] && [ $found -eq $keep ] then printf "We have already found $keep full sets of backup files. Removing backup files dated $checkdate.\n" rm $path/backup-*-$checkdate-* else printf "The date $checkdate returned $count files. This is an unhandled scenario, doing nothing.\n" fi done

      output look like this

      [jbusch@dt-jared FTPTest]$ ./file_cleanup.sh FTPTest <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200107, we found 4 files. We are keeping this date, currently we have 1 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200105, we found 4 files. We are keeping this date, currently we have 2 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200104, we found 4 files. We are keeping this date, currently we have 3 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200103, we found 4 files. We are keeping this date, currently we have 4 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: We have already found 4 full sets of backup files. Removing backup files dated 20200102. <13>Jan 7 16:51:59 file_cleanup.sh: We have already found 4 full sets of backup files. Removing backup files dated 20191230. <13>Jan 7 16:51:59 file_cleanup.sh: We have already found 4 full sets of backup files. Removing backup files dated 20191228.
    • JaredBuschJ

      Chromebook and ScreenConnect

      Watching Ignoring Scheduled Pinned Locked Moved chromebook screenconnect connectwise control
      20
      0 Votes
      20 Posts
      2k Views
      scottalanmillerS

      @JaredBusch said in Chromebook and ScreenConnect:

      @scottalanmiller said in Chromebook and ScreenConnect:

      @JaredBusch said in Chromebook and ScreenConnect:

      Heard more from the user.

      Would prefer 15" screen and a numeric keypad... /sigh..

      Found this one. https://www.amazon.com/Acer-CB715-1W-P4Y6-Chromebook-4417U-Chrome/dp/B07W996BQ5

      Anyone have a comment on it?

      Only 32GB, but it is supposed to be only for browsing and ScreenConnect.

      32GB is PLENTY. I don't even need the 16GB that I have. And 8GB of RAM, that's a monster of a Chromebook. Should be way, way fast enough. Just really expensive is all.

      Mostly it is the form factor, I think, 15” with the numeric keypad

      True, the extra size brings up the price quite quickly.

    • ObsolesceO

      SodiumSuite Questions for 2020 Q1

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      366 Views
      scottalanmillerS

      Forked this out as it was all about SS and not the OP's RMM questions. Although he did also ask about SS status, so I'll just tag him here @openit

    • DustinB3403D

      Wazuh Agent Dashboard

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved wazuh dashboard
      1
      0 Votes
      1 Posts
      485 Views
      No one has replied
    • wirestyle22W

      Can you use fetchmail with a proxy?

      Watching Ignoring Scheduled Pinned Locked Moved fetchmail linux
      4
      0 Votes
      4 Posts
      527 Views
      wirestyle22W

      @scottalanmiller Thanks

    • G I JonesG

      Batch rename to remove additional .EXTENSION

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      515 Views
      G I JonesG

      I figured it out!

      ren *.zip.jpg *.
    • stacksofplatesS

      When Can IT Know a Password for a User

      Watching Ignoring Scheduled Pinned Locked Moved
      36
      0 Votes
      36 Posts
      1k Views
      DashrenderD

      @scottalanmiller said in When Can IT Know a Password for a User:

      When working with doctors, one of the first things we see everywhere is that they commonly require the same password for all staff and have it published everywhere. That our Rocket.Chat logins are the one secure thing in a sea of insecurity makes it the absolute last point of concern in their entire environment.

      ug - so true...

    • stacksofplatesS

      Building A Hugo Site From a Theme

      Watching Ignoring Scheduled Pinned Locked Moved hugo
      12
      3 Votes
      12 Posts
      1k Views
      stacksofplatesS

      @IRJ said in Building A Hugo Site From a Theme:

      Help @stacksofplates

      9ae3eb54-ad8b-448b-b2ee-5dfbf7a7b92c-image.png

      Do you need the source or are you just building a site with Hugo?

    • FATeknollogeeF

      2020 Dell XPS 13 Developer Edition

      Watching Ignoring Scheduled Pinned Locked Moved dell xps 13 2020 developer ubuntu 18.04
      1
      0 Votes
      1 Posts
      359 Views
      No one has replied
    • scottalanmillerS

      MeshCentral - 2019 Review and New Features

      Watching Ignoring Scheduled Pinned Locked Moved meshcentral meshcentral 2
      2
      1 Votes
      2 Posts
      448 Views
      scottalanmillerS

      The new views really make a huge difference. Going to the top bar view, removing the bottom bar, adding dark mode. I have way more screen real estate and feel like I can get to what I need more quickly.

    • 1
    • 2
    • 99
    • 100
    • 101
    • 102
    • 103
    • 698
    • 699
    • 101 / 699