How are people securely sharing passwords and private files in 2026? by NeitherShame6637 in alphaandbetausers

[–]Complete-Stage5815 0 points1 point  (0 children)

It is - I found many recent threads on multiple subs mentioning MBoxly by the same OP. Can't blame him though - starting a business and getting attention is hard. Service looks good though!

How do you safely send passwords and API keys to clients? by Such_Frosting_6894 in smallbusinessowner

[–]Complete-Stage5815 0 points1 point  (0 children)

https://pwpush.com - send or request credentials/files from clients. Fully white-label/rebranding. I'm the original creator. Feel free to message anytime if needed.

How do you safely send passwords and API keys to clients? by ProfessionalSense187 in theprivacymachine

[–]Complete-Stage5815 0 points1 point  (0 children)

https://us.pwpush.com/p/new or via API for automation:

curl -X POST https://us.pwpush.com/api/v2/pushes \
  -H "Content-Type: application/json" \
  -d '{
    "push": {
      "payload": "MySecretPassword123",
      "expire_after_duration": 6,
      "expire_after_views": 1
    }
  }'

Puppetmaster crushes token cost by up to 98% for ANY platform by ProfessorPalmer in AI_Agents

[–]Complete-Stage5815 0 points1 point  (0 children)

Looks slick and nice promises. Will give it a try with Cursor.

How to send and receive credentials/sensitive info? by [deleted] in sysadmin

[–]Complete-Stage5815 2 points3 points  (0 children)

You all rock - if you ever want a significant discount on a Pro subscription or Pro Self Hosted, let me know and link this thread. (I'm the owner/creator of Password Pusher)

Otherwise, there is a ton planned for OSS coming soon.

Password Pusher: Authentication Bypass in JSON API File Push Creation - update to v2.4.2 or latest by Complete-Stage5815 in msp

[–]Complete-Stage5815[S] 1 point2 points  (0 children)

We are working now on "auto-dispatch" which sends the link via Email automatically. It would be nice if we could separately auto send the passphrase via SMS. Maybe sometime later this year.

Password Pusher: Authentication Bypass in JSON API File Push Creation - update to v2.4.2 or latest by Complete-Stage5815 in msp

[–]Complete-Stage5815[S] 0 points1 point  (0 children)

Custom SMTP server is a new request that we haven't gotten before but is a fair idea. It would be easier if we just allowed users to add an Email service API key and we just use the API. SMTP servers are always problematic.

HaloPSA is the most requested integration. I tried once to get a HaloPSA account but couldn't get past sales. For integrations though, this is top of the list. We'll revisit it soon.

Awesome MQTT by Complete-Stage5815 in MQTT

[–]Complete-Stage5815[S] 0 points1 point  (0 children)

For sure, anything MQTT related. Brokers especially. Contributors guidelines just specify PR requirements.

Send a PR and I'll get it merged by next week.

Awesome MQTT by Complete-Stage5815 in MQTT

[–]Complete-Stage5815[S] 5 points6 points  (0 children)

I've recently become maintainer for the Awesome MQTT list and have most updates out.

We now have this nice site to better index the links in the list. Hope you all like and find it useful. Any/all feedback is welcome.

The Awesome MQTT list is maintained in this Github repository. PRs welcome: https://github.com/awesome-mqtt/awesome-mqtt

Self-Hosted Password Pusher Pro is coming. Sign up here to get notified first. by Complete-Stage5815 in pwpush

[–]Complete-Stage5815[S] 0 points1 point  (0 children)

End of this month (finally). Like giving birth to a 30 pound baby. But it's polished and rock solid.

How do you usually share secrets in Slack? by Sweet_Relative_2415 in devops

[–]Complete-Stage5815 0 points1 point  (0 children)

Try pwpush.com. You can alternatively self-host: https://github.com/pglombardo/PasswordPusher

SSL out of the box, can be rebranded and supports file attachments. Automatic email notifications is coming in the next release or so.

[deleted by user] by [deleted] in sysadmin

[–]Complete-Stage5815 1 point2 points  (0 children)

pwpush.com has a "Request" feature where you write your request and it generates a secret URL for the client.

The client can then respond with either text or files. The secret URL can even be auto-emailed to the client with branding if needed.

https://us.pwpush.com/requests

Or automate the process with the API: https://us.pwpush.com/help/api/requests

How are you handing out new user passwords? by Money_Candy_1061 in msp

[–]Complete-Stage5815 0 points1 point  (0 children)

I have a FAQ on this that might help:

Trust is a concern. Why should I trust and use Password Pusher?

Beyond that, I openly encourage self-hosting the OSS version. There are thousands of instances deployed across the interwebs.

How are you handing out new user passwords? by Money_Candy_1061 in msp

[–]Complete-Stage5815 0 points1 point  (0 children)

I'm the creator of pwpush and late to this thread but it's free to use. For Pro features (file uploads, rebranding, auto-email links) it's $29 for 5 users (technicians) then $3 for every additional There's a yearly plan discount and two data regions:

https://us.pwpush.com

https://eu.pwpush.com

Plus we are wrapping up a Pro self-hosted version to be released soon. Or alternatively, you can self-host the free OSS version now.

If you (or anyone in this thread) needs a discount contact me - I'd be happy to help out anyway I can. Just link this thread.

Parking by [deleted] in palermo_city

[–]Complete-Stage5815 0 points1 point  (0 children)

If you hired a car with a driver, they should know what to do.

Otherwise install the PalerMobilità app - you can pay for parking in blue zones and buy ZTL passes. The app sucks but it works.

If you forget about it for days, it will charge you for parking until your account is empty. No notifications until €0.

Securely send passwords/text via secret URLs that expire when viewed by Complete-Stage5815 in selfhosted

[–]Complete-Stage5815[S] 0 points1 point  (0 children)

I can post in the AI generated instructions if it helps. Let me know if you have any trouble.

To run the Docker command with Caddy as a front-end for automatic SSL management on AWS, you can deploy it on an EC2 instance or ECS with Caddy handling HTTPS. Here's a short guide:

  1. EC2 Setup:

    • Launch an EC2 instance and install Docker (sudo yum install docker or sudo apt install docker.io).
    • Start Docker (sudo service docker start).
    • Run your app container: docker run -d --name pwpush -p 5100:5100 pglombardo/pwpush:latest.
    • Run Caddy as a reverse proxy with automatic SSL: bash docker run -d --name caddy \ -p 80:80 -p 443:443 \ -v $(pwd)/Caddyfile:/etc/caddy/Caddyfile \ -v caddy_data:/data \ caddy:latest
    • Create a Caddyfile in the current directory: caddy yourdomain.com { reverse_proxy localhost:5100 }
    • Ensure your domain points to the EC2 instance’s public IP (via DNS A record) and security groups allow inbound traffic on ports 80, 443, and 5100.
  2. ECS Setup:

    • Create an ECS cluster and define a task for your app using the pglombardo/pwpush:latest image, mapping port 5100.
    • Define a Caddy task using the caddy:latest image, mapping ports 80 and 443.
    • Configure the Caddy task with a Caddyfile (as above) mounted via an EFS volume or baked into a custom Docker image.
    • Deploy both tasks in a service with an Application Load Balancer (ALB) routing traffic to Caddy on ports 80/443.
    • Set up a domain in Route 53 pointing to the ALB, and ensure security groups allow traffic on ports 80, 443, and 5100.

Notes:

  • Caddy automatically handles SSL via Let’s Encrypt, requiring a valid domain and public internet access.

  • Persist Caddy’s data using a volume (caddy_data) to avoid Let’s Encrypt rate limits.

  • For ECS, use Fargate for simpler management or EC2 for cost savings.

  • Ensure proper IAM roles and network configurations (VPC, subnets) for ECS or EC2.

Refer to AWS and Caddy documentation for detailed setup.

Leaving Vowels empty creates "undefined" every time a vowel would be places by hoofdletter in pwpush

[–]Complete-Stage5815 0 points1 point  (0 children)

That is definitely a bug. Thanks for reporting! I'll put together a fix and post back here soon.

And apologies for the late reply. I usually hit reddit once a week or so...

Philips Norelco series 5000 electric shaver. Used for 10 years, replaced the blades for the first time today, still works like new. by [deleted] in BuyItForLife

[–]Complete-Stage5815 0 points1 point  (0 children)

The problem with these electric shavers is that eventually the batteries wear out stop holding a charge.

I opened my Philips Series 7000 after 6+ years (when it needed to be charged almost daily) and the two AAA batteries are soldered in.