• Joined on 2025-07-20
michael commented on issue usnistgov/macos_security#157 2026-01-19 18:29:27 +00:00
Generate recommendations Python script relies on very out of date Ruby gems

@golbiga commented on GitHub:

The only requirements we set for ruby gems are the following.

cat Gemfile
source 'https://rubygems.org'

gem 'asciidoctor'
gem 'asciidoctor-pdf'
gem…
michael commented on issue dutchcoders/transfer.sh#211 2026-01-19 18:29:27 +00:00
Cannot use behind proxy running on a different port

@paolafrancesca commented on GitHub:

oki

michael commented on issue usnistgov/macos_security#158 2026-01-19 18:29:27 +00:00
Monterey 800-171 .GlobalPreferences settings mobile config not importing into JAMF

@robertgendler commented on GitHub:

Closing this issue. There isn't much that we can do about this. It's more a Jamf Pro thing.

michael commented on issue usnistgov/macos_security#158 2026-01-19 18:29:27 +00:00
Monterey 800-171 .GlobalPreferences settings mobile config not importing into JAMF

@golbiga commented on GitHub:

@AlfredAleman I was just able to import using Jamf Compliance Editor. You are correct that uploading the com.apple.GlobalPreferences.mobileconfig as is will not…

michael commented on issue dutchcoders/transfer.sh#212 2026-01-19 18:29:27 +00:00
Custom Web Interface???

@paolafrancesca commented on GitHub:

@oriolrius happy to help. from grunt you should be able to use theserve command to wach live changes to the code, btw

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@paolafrancesca commented on GitHub:

after the progress bar in the frontend is complete

I was able to reproduce the issue letting transfer.sh listen on http and use the X-Forwarded-Proto

michael commented on issue dutchcoders/transfer.sh#212 2026-01-19 18:29:27 +00:00
Custom Web Interface???

@mckaygerhard commented on GitHub:

maybe you must paste here exact comands to property helps (also make more detailed documentation.. i can make it) @oriolrius

michael commented on issue dutchcoders/transfer.sh#212 2026-01-19 18:29:27 +00:00
Custom Web Interface???

@paolafrancesca commented on GitHub:

@oriolrius did you manage to use a custom frontend?

michael commented on issue dutchcoders/transfer.sh#212 2026-01-19 18:29:27 +00:00
Custom Web Interface???

@paolafrancesca commented on GitHub:

hello @oriolrius , thanks for you appreciation

regarding the custom front-end you are right: I should document how to setup

I will try to help you…

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@srinisubramanian commented on GitHub:

In your case does the auth pop up immediately on the web page or after the upload is complete?

I will post the config shortly.

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@paolafrancesca commented on GitHub:

if the proxy is on http it has a certificate, so you can use the same on transfer.sh (that's what I do) I will investigate a little more on the problem

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@srinisubramanian commented on GitHub:

Yes. My setup runs on http. If you can find a fix let me know. Else maybe I need to run internal on a self signed https certificate.

michael commented on issue dutchcoders/transfer.sh#212 2026-01-19 18:29:27 +00:00
Custom Web Interface???

@oriolrius commented on GitHub:

Thanks @aspacca for helping me, finally I had some hours for trying it. I spend more than 2h trying to understand how grunt and bower works but finally, I had the…

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@paolafrancesca commented on GitHub:

@srinisubramanian I have exactly the same setuo and I couldn't reproduce the issue

can you post your configuration for nginx and the args for transfer.sh? …

michael commented on issue usnistgov/macos_security#159 2026-01-19 18:29:27 +00:00
submit profiles by CIS section vs functionality section

@robertgendler commented on GitHub:

There is no plan to create functionality to export by CIS section.

CIS controls move from section and grouping and numbering too much.

Export of profiles…

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@srinisubramanian commented on GitHub:

No luck @aspacca Not working. Still returns the 502 error

Here is my nginx config.

    location / {
            proxy_set_header X-Real-IP …
michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@paolafrancesca commented on GitHub:

the problem seems to be on how nginx expects response from the server when uploading file. the transfer.sh upstream is sending a 401 before nginx finishes to…

michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@paolafrancesca commented on GitHub:

it should be solved with http upstream and X-Forwarded-Proto and setting the following in the block with the proxy directive:

    keepalive_requests…
michael commented on issue dutchcoders/transfer.sh#213 2026-01-19 18:29:27 +00:00
502 error - Authentication popup never shown in browser

@srinisubramanian commented on GitHub:

Ok. So you are suggesting I just turn on https? Will do and check.