<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>script software — LowEndSpirit</title>
        <link>https://www.lowendspirit.com/</link>
        <pubDate>Tue, 28 Jul 2026 06:27:35 +0000</pubDate>
        <language>en</language>
            <description>script software — LowEndSpirit</description>
    <atom:link href="https://www.lowendspirit.com/discussions/tagged/script-software/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>[RELEASE] DA-Register – Free, Database-Free DirectAdmin Registration Portal</title>
        <link>https://www.lowendspirit.com/discussion/11086/release-da-register-free-database-free-directadmin-registration-portal</link>
        <pubDate>Wed, 22 Jul 2026 06:19:15 +0000</pubDate>
        <category>Free Offers and Stuff</category>
        <dc:creator>AGXL</dc:creator>
        <guid isPermaLink="false">11086@/discussions</guid>
        <description><![CDATA[<p>Hello, LowEndSpirit community! It's me, Lowend-Shortner-Idiot.👋</p>

<p><em>First off: I'm not sure if this is the right place to post this, but I figured there are a lot of web hosts and web enthusiasts here who might be interested.</em></p>

<p>Today I'm releasing an open-source tool that I think quite a few hosting providers and sysadmins around here might find useful: <strong>DA-Register</strong>.</p>

<p>It's a modern, database-free self-service registration portal built specifically for DirectAdmin hosting servers.</p>

<hr />

<h3>🚀 What is DA-Register?</h3>

<p>If you run DirectAdmin and want a sleek, lightweight self-service registration page for new users without needing a heavy billing system or complex database setup, DA-Register handles user creation seamlessly via DirectAdmin's native API.</p>

<p><strong>Key Features:</strong><br />
* <strong>Zero Database Setup:</strong> Runs 100% on local PHP/JSON flat files with thread-safe file locking (<code>flock</code>). Sensitive log files are natively protected with <code>&lt;?php exit; ?&gt;</code> wrappers.<br />
* <strong>DirectAdmin Native API:</strong> Integrates directly via cURL (<code>CMD_API_ACCOUNT_USER</code>). Works great with restricted, scoped Login Keys!<br />
* <strong>Privacy &amp; k-Anonymity HIBP Checks:</strong> Checks password breaches using the <em>Have I Been Pwned</em> API directly in the client's browser via Web Crypto API (k-anonymity). Plaintext passwords never leave the user's browser.<br />
* <strong>Anti-Abuse &amp; Rate Limiting:</strong> Built-in Token Bucket algorithm, fail-open DNS MX record checks, disposable email blocker, and native support for Cloudflare Turnstile, ALTCHA, hCaptcha, reCAPTCHA &amp; MTCaptcha.<br />
* <strong>20+ Supported Languages &amp; Modern UX:</strong> Automatic Dark/Light mode detection, live password complexity checklist, accessibility widget, and a client-side i18n engine.<br />
* <strong>Invite-Only Mode:</strong> Optional access control with single-use or multi-use invite codes.</p>

<hr />

<h3>🔗 Links &amp; Resources</h3>

<ul>
<li>📦 <strong>GitHub Repository:</strong> <a rel="nofollow" href="https://github.com/agxl/DA-Register">https://github.com/agxl/DA-Register</a></li>
<li>🌐 <strong>Product Page:</strong> <a rel="nofollow" href="https://da-register.panellayer.com/">https://da-register.panellayer.com/</a></li>
<li>🧪 <strong>Live Demo:</strong> <a rel="nofollow" href="https://demo.da-register.panellayer.com/">https://demo.da-register.panellayer.com/</a></li>
</ul>

<hr />

<h3>💭 I'd love your feedback!</h3>

<p>I'd really appreciate it if the hosters, providers, and sysadmins here could take a look and let me know what you think! Any feedback, feature requests, or contributions are very welcome.</p>

<hr />

<h3>📜 A quick personal note...</h3>

<p>Fingers crossed that there won't be any lawsuits, cease-and-desist letters, or legal warnings over this one! I've had more than my fair share of legal headaches, warning letters, and legal claims recently, so I made extra sure to thoroughly verify API terms, disclaimers, and GDPR compliance before releasing this. 😅</p>

<p>I actually have <strong>dozens of completed projects sitting on my hard drive</strong> waiting to be published. However, given recent experiences, I need to carefully run legal clearance on each and every single one of them before I can release them into the wild.</p>

<p>Let me know your thoughts or if you give it a spin! Or was it, like all my other projects, just a useless idea of mine?!</p>

<p>Cheers,<br />
Andy</p>

<p>Disclaimer: AI was used in part for the translation and proofreading.</p>
]]>
        </description>
    </item>
    <item>
        <title>a simple ansible script to pull updates from git{hub/lab}</title>
        <link>https://www.lowendspirit.com/discussion/6531/a-simple-ansible-script-to-pull-updates-from-git-hub-lab</link>
        <pubDate>Tue, 26 Sep 2023 08:38:05 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>cloudpap</dc:creator>
        <guid isPermaLink="false">6531@/discussions</guid>
        <description><![CDATA[<p>I needed to pull some updates from a script saved in gitlab and deploy it on 36 servers! Well, ansible came to my rescue and below, is the simple script i created to help me with the task.</p>

<p>The script pulls updates from a private repo in gitlab. It will prompt the user for gitlab credentials once then proceed to deploy.</p>

<p>Hope it helps someone!</p>

<pre><code>---
- hosts: my-servers
  remote_user: ubuntu
  become: yes
  become_method: sudo

  vars_prompt: 
  - name: "githubuser" 
    prompt: "Enter your github username" 
    private: no 
  - name: "githubpassword" 
    prompt: "Enter your github password" 
    private: yes

  tasks:
  - name: Pull updates from gitlab
    git: 
      repo: "https://{{ githubuser | urlencode }}:{{ githubpassword | urlencode }}@gitlab.com/gitlabuser/scripts.git"
      dest: /home/ubuntu/scripts
      update: yes
      version: main 
</code></pre>
]]>
        </description>
    </item>
    <item>
        <title>Script that allows me to run a site that functions like a letter writing wizard</title>
        <link>https://www.lowendspirit.com/discussion/779/script-that-allows-me-to-run-a-site-that-functions-like-a-letter-writing-wizard</link>
        <pubDate>Thu, 12 Mar 2020 19:59:23 +0000</pubDate>
        <category>General</category>
        <dc:creator>lowenduser</dc:creator>
        <guid isPermaLink="false">779@/discussions</guid>
        <description><![CDATA[<p>Does anyone have any suggestions for a script that would allow me to set up a letter writing wizard for the general public to use?<br />
For example:<br />
1) The member of the public receives a speeding ticket.<br />
2) They come to the page and enter information in textboxes about what the ticket says and their personal information<br />
3) They answer some checkbox questions about the circumstances it was issued.<br />
4) The wizard then creates a letter customised with their personal information and some stock arguments based on the checkboxes selected.</p>

<p>I'm not creating a speeding ticket avoiders site, but it's an analogy that everyone would be familiar with!</p>
]]>
        </description>
    </item>
   </channel>
</rss>
