Excellent practice IgnorantAL technique to prevent spam robot

Estimated reading time: 286 words, 1-2 minute Font: 1,470 Views
Excellent practice IgnorantAL technique to prevent spam robot

How do spambots or robots operate?

A spam bot is a computer program designed to assist in sending spam. Spam bots often create accounts and use them to send spam.
Spam bots can create fake accounts on forums, social media platforms, messaging apps, or email hosting providers. Sometimes they try to disguise their activity as coming from real users. Since creating a user account usually involves filling out only a few fields (name, email address, etc.), attackers program spam bots to automatically fill out these forms—a relatively simple task for skilled programmers. Task. Some platforms offer captchas or similar challenges to prevent bots from creating accounts, but these defenses are not foolproof.


Spambot need input name attribute(name, email) to fill up the form.

eg. name=user-value, email=user-value etc.

<form> <input type="text" name="name" value=""> <input type="text" name="email" value=""> </form>

With IgnorantAL Technique, the input name attribute will be changed to:

xvs_bd=user-value, s12da8tvC_=user-value

<form> <input type="text" name="xvs_bd" value=""> <input type="text" name="s12da8tvC_" value=""> </form>

IgnorantAL input name attribute

IgnorantAL Input name attribute will be generated differently each time the page loads and only once. No limit length and no fixed length. The server will reject any post attribute by used "name" and "email" instead of "xvs_bd" and "s12da8tvC_"

  1. No limit character.
  2. Different length of name attribute EACH request.
  3. Character included A-Z0-9.

The IgnorantAL technique is a method used to prevent spam robots from submitting form data on a website. This technique generates a random name for the input element’s name attribute each time the page loads. The length of the name attribute can be of any length and there is no fixed length limit. This makes it difficult for spammers to create automated scripts to fill in the form data.

In addition to the random name attribute, the server is set up to reject any post attribute that uses specific field names like "name" and "email" Instead, the server requires the use of different field names such as "xvs_bd" and "s12da8tvC_" to prevent spammers from bypassing the form validation by using well-known field names.

By using this approach, websites can prevent spam robots from submitting malicious content, which can be beneficial for both the website’s owner and the site’s legitimate users. The basic security measure of using a CSRF token is weaker than the alternative of using unique name attributes for all form inputs. In other words, an attacker can potentially crack a CSRF token more easily than they can crack all of the name attributes in a form. This weakness is particularly concerning for the banking system.

Benefit IgnorantAL Technique

The IgnorantAL technique is a method of preventing spam bots from submitting forms on websites without using a captcha or JavaScript.

  1. No need for Cross-Site Request Forgery (CSRF) IgnorantAL technique eliminates the need for CSRF, which is a common method used to prevent spam robot attacks, as the form submission is prevented outright instead of just being protected from untrusted sources.
  2. No need for Captcha and JavaScript IgnorantAL technique works without requiring Captcha or JavaScript, which can improve the user experience by making interactions more seamless and hinder accessibility.
  3. No need for a framework IgnorantAL technique does not require the use of any specific framework or library. This can make it easier to implement and maintain. The technique is more user-friendly than captchas, as users don’t need to solve puzzles or click on “traffic light” images to prove their humanity.
  4. More human-friendly IgnorantAL technique makes it easier for humans to submit data because they are not required to solve Captcha or perform any other security-related tasks.
  5. Protected user input IgnorantAL technique ensures that the user input is protected from spam robots, making the application more secure. The user inputs are protected from spam submissions, ensuring only valid form submissions are processed.
  6. Save network bandwidth usage Since IgnorantAL technique doesn’t rely on Captcha or JavaScript, it can reduce the amount of network bandwidth required for each request.

IgnorantAL technique is a powerful tool that can help you prevent spam and other types of malicious activity on your website, while also improving the user experience and reducing network bandwidth usage. By implementing this technique, you can help ensure that your website remains safe and secure, while also providing a pleasant experience for your users. The IgnorantAL technique can be an excellent alternative to Captcha and JavaScript for preventing spam robot attacks. By eliminating the need for these technologies, it can simplify the user experience and reduce the burden on servers that handle large volumes of traffic.

Found this article helpful? Why not share it on social media and help someone else too?
Twitter (Open in new window) FaceBook (Open in new window)
Posted in categories of IgnorantAL This page was last modified on
Return to all IgnorantAL articles

Don't be shy - leave a comment and let us know your thoughts.

By creating an account, you agree to our Terms of Service and Private Policy.

Comment Policy