ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. black3dynamite
    3. Best
    • Profile
    • Following 0
    • Followers 3
    • Topics 42
    • Posts 5,987
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Install BookStack on Fedora 27

      @fiyafly said in Install BookStack on Fedora 27:

      However, one of my projects in mind is better locking down Linux (CentOS/Fedora), and providing a use/security case to TPTB to tell them that Linux isn't the devil, when done right.

      Maybe FreeBSD is the 😈 lol.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      @scottalanmiller said in What Are You Watching Now:

      Liesl and I watched Independence Day last night.

      My friend and I seen that movie so many times in theatre back when it only costing $5 and before walking home we stop by Taco Bell. Even though we knew the jump scare scene was about to happen, it still ended up catching us off guard.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Cloudflare and Nginx reverse proxy background.

      @taurex said in Cloudflare and Nginx reverse proxy background.:

      @travisdh1 Are there any benefits of configuring your own reverse-proxy if it's running behind CloudFlare that is essentially the one already? I know they offer their own Origin CA certs that you can install on your web servers to encrypt the traffic between CF and your cloud. As long as you're happy to stick with CloudFlare, there will be no need to run cron jobs with certbot renewals every 3 months.

      I still use a reverse proxy but I'm using self-signed certs. I just have to make sure to select Full SSL instead of Full SSL (strict). To many cool things I can do using reverse proxy like upstream.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Dolemite Is My Name
      Youtube Video

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Testing SkySilk

      That sounds lazy of them to use Proxmox for LXC. Why not two separate servers, one for LXC and the other for KVM?

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: How to remove incorrectly uploaded to imgur

      There's this but that's about all I found.
      https://imgur.com/removalrequest

      7c0b7840-54d9-468a-b869-fcc8df92d609-image.png

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: New workstation - Linux

      I pretty much rely on a Windows VM for all my Windows needs. My VM autostart.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      The Monster Squad

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Desktop photo for all PC's in the domain

      I found this PowerShell script, that does what you are trying to do.
      https://smulpuru.wordpress.com/2015/04/01/change-wallpaper-using-windows-api-systemparametersinfo-from-user32-dll/

      $setwallpapersource = @"
      using System.Runtime.InteropServices;
      public class wallpaper
      {
      public const int SetDesktopWallpaper = 20;
      public const int UpdateIniFile = 0x01;
      public const int SendWinIniChange = 0x02;
      [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
      private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni);
      public static void SetWallpaper ( string path )
      {
      SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );
      }
      }
      "@
      Add-Type -TypeDefinition $setwallpapersource
      [wallpaper]::SetWallpaper("\\SERVER1\wallpaper.jpg")
      

      The only thing I've noticed with this script is how fast these locations get updated with the new background.

      %USERPROFILE%\AppData\Roaming\Microsoft\Windows\Themes\TranscodedWallpaper
      %USERPROFILE%\AppData\Roaming\Microsoft\Windows\Themes\CachedFiles\

      For some reason in the CachedFiles, it will still so the previous background instead of the new one and TranscodedWallpaper file doesn't update.

      Even running this command requires multiple attempts before the wallpaper show up.
      RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Zombie Tidal Wave Official Trailer | SYFY WIRE

      Youtube Video

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Desktop photo for all PC's in the domain

      @ccwtech said in Desktop photo for all PC's in the domain:

      @black3dynamite said in Desktop photo for all PC's in the domain:

      I found this PowerShell script, that does what you are trying to do.
      https://smulpuru.wordpress.com/2015/04/01/change-wallpaper-using-windows-api-systemparametersinfo-from-user32-dll/

      $setwallpapersource = @"
      using System.Runtime.InteropServices;
      public class wallpaper
      {
      public const int SetDesktopWallpaper = 20;
      public const int UpdateIniFile = 0x01;
      public const int SendWinIniChange = 0x02;
      [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
      private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni);
      public static void SetWallpaper ( string path )
      {
      SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );
      }
      }
      "@
      Add-Type -TypeDefinition $setwallpapersource
      [wallpaper]::SetWallpaper("\\SERVER1\wallpaper.jpg")
      

      The only thing I've noticed with this script is how fast these locations get updated with the new background.

      %USERPROFILE%\AppData\Roaming\Microsoft\Windows\Themes\TranscodedWallpaper
      %USERPROFILE%\AppData\Roaming\Microsoft\Windows\Themes\CachedFiles\

      For some reason in the CachedFiles, it will still so the previous background instead of the new one and TranscodedWallpaper file doesn't update.

      Even running this command requires multiple attempts before the wallpaper show up.
      RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True

      So it's not really a reliable script/method then?

      The PowerShell script worked correctly when I ran it locally. I have not tried it when the wallpaper was set to a server.

      I just not sure if the GPO uses SystemParametersInfo or RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      @StuartJordan said in What Are You Doing Right Now:

      Webmin 0 day exploit:
      https://pentest.com.tr/exploits/DEFCON-Webmin-1920-Unauthenticated-Remote-Command-Execution.html

      PNG image.png

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Fedora 28 Guacamole base install.

      @travisdh1 said in Fedora 28 Guacamole base install.:

      @scottalanmiller said in Fedora 28 Guacamole base install.:

      @travisdh1 said in Fedora 28 Guacamole base install.:

      The thing with Guacamole right now is that the documentation is just..... crap. It says different options are available in the user-mappings.xml which always break things.

      That's the base problem with Fedora installs, I think. Not that it isn't stable, but that it's not documented properly.

      I'd be very surprised if it acted any differently on any platform. One of the big reasons I decided to do a guide on it is how it just breaks when using many of the supposed options. Not that I really expect great documentation for anything before v1 is out, but at least take down known broken stuff!

      Besides incomplete or bad documentation, what is specifically unstable about it on Fedora or other distros?

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Finished watching Mindhunter Season 2

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Public IP for Server remote management

      Reverse proxy server is an option.
      Those are just went UI your trying to access?

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Dave Chappelle: Sticks & Stones on Netflix

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: What do you use for AntiVirus?

      Here's the following services that are running with Sophos Intercept X and Endpoint Advanced
      0_1537364098131_150B94CB-7808-4A13-8EE7-66A8E384C86B.png

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      @scottalanmiller said in What Are You Watching Now:

      @black3dynamite said in What Are You Watching Now:

      Dave Chappelle: Sticks & Stones on Netflix

      how is it? Looked like it would probably be good.

      I laughed my ass off.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Frustration with Office 2016 and MS Project Pro 2016

      @travisdh1 said in Frustration with Office 2016 and MS Project Pro 2016:

      @dbeato said in Frustration with Office 2016 and MS Project Pro 2016:

      I also used the ODT as below

      Download
      setup.exe /download configuration.xml

      Install
      setup.exe /configure configuration.xml

      Just to confirm, that did work. Have a cookie on me.

      That's my preferred way of installing office.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      @RojoLoco said in What Are You Watching Now:

      @black3dynamite said in What Are You Watching Now:

      Dave Chappelle: Sticks & Stones on Netflix

      We were probably watching that at the same time. He's still hilarious.

      I like how he poke fun of 2019 events that's been in the news recently. That's why he's my favorite comedian.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • 1
    • 2
    • 65
    • 66
    • 67
    • 68
    • 69
    • 88
    • 89
    • 67 / 89