Title: Really Simple CAPTCHA
Author: Rock Lobster Inc.
Published: <strong>10. März 2009</strong>
Last modified: 1. Februar 2025

---

Plugins durchsuchen

![](https://ps.w.org/really-simple-captcha/assets/banner-772x250.png?rev=880406)

![](https://ps.w.org/really-simple-captcha/assets/icon-256x256.png?rev=1047241)

# Really Simple CAPTCHA

 Von [Rock Lobster Inc.](https://profiles.wordpress.org/rocklobsterinc/)

[Herunterladen](https://downloads.wordpress.org/plugin/really-simple-captcha.2.4.zip)

 * [Details](https://de.wordpress.org/plugins/really-simple-captcha/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/really-simple-captcha/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/really-simple-captcha/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/really-simple-captcha/#developers)

 [Support](https://wordpress.org/support/plugin/really-simple-captcha/)

## Beschreibung

Really Simple CAPTCHA funktioniert nicht allein und ist für die Zusammenarbeit mit
anderen Plugins vorgesehen. Es ist ursprünglich für [ Contact Form 7](https://contactform7.com/)
erstellt, Du kannst es jedoch mit deinem eigenen Plugin verwenden.

Anmerkung: Dieses Produkt ist „wirklich einfach“, wie der Name andeutet, d.h. es
bietet keine hohe Sicherheit. Wenn du perfekte Sicherheit benötigen, solltest du
andere Lösungen ausprobieren.

#### Wie funktioniert es?

Really Simple CAPTCHA nutzt, im Gegensatz zu vielen anderen PHP CAPTCHA Lösungen,
keine PHP „Sessions“ um Stati zu speichern, sondern speichert diese als temporäre
Dateien. Das ermöglicht es dir, es in WordPress zu integrieren, ohne dass du dir
Sorgen über Konflikte machen musst.

Wenn du ein CAPTCHA generierst, erzeugt Really Simple CAPTCHA zwei Dateien dafür;
eine ist die Bilddatei von CAPTCHA und die andere ist eine Textdatei, in der die
richtige Antwort auf das CAPTCHA steht.

Die beiden Dateien haben das gleiche (zufällige) Präfix in ihren Dateinamen, zum
Beispiel, „a7hk3ux8p.png“ und „a7hk3ux8p.txt“. In diesem Fall zum Beispiel, wenn
der Befragte „K5GF“ auf das Bild „a7hk3ux8p.png“ antwortet, berechnet Really Simple
CAPTCHA den Hash von „K5GF“ und vergleicht diesen dann mit dem Hash, der in der 
Datei „a7hk3ux8p.txt“ gespeichert ist. Stimmen Beide überein, wird die Antwort als
korrekt bestätigt.

#### Wie du es mit Deinem Plugin nutzt

Hinweis: Nachstehende Hinweise sind für Plugin-Entwickler

Zuerst, erzeuge eine Instanz der ReallySimpleCaptcha Klasse:

    ```
    $captcha_instance = new ReallySimpleCaptcha();
    ```

Du kannst die Instanzvariablen beliebig ändern.

    ```
    // Change the background color of CAPTCHA image to black
    $captcha_instance->bg = array( 0, 0, 0 );
    ```

Sieh dir really-simple-captcha.php an, wenn dich andere Variablen interessieren.

Generiere ein zufälliges Wort für CAPTCHA.

    ```
    $word = $captcha_instance->generate_random_word();
    ```

Erzeuge eine Bilddatei und eine dazugehörige Textdatei im temporären Verzeichnis.

    ```
    $prefix = wp_rand();
    $captcha_instance->generate_image( $prefix, $word );
    ```

Zeige dann das Bild und bekomme eine Antwort vom Befragten.

Überprüfe die Richtigkeit der Antwort.

    ```
    $correct = $captcha_instance->check( $prefix, $the_answer_from_respondent );
    ```

Wenn $correct wahr ist, fahre fort. Andernfalls, blockiere den Befragten – es scheint
kein Mensch zu sein.

Und zuletzt, entferne die temporären Bild- und Textdateien, da sie nicht mehr verwendet
werden.

    ```
    $captcha_instance->remove( $prefix );
    ```

Das ist alles.

Wenn du eine Live-Demo davon sehen möchtest, kannst du [Contact Form 7](https://contactform7.com/captcha/)
besuchen.

## Screenshots

 * [[
 * screenshot-1.png

## Installation

In den meisten Fällen kannst du es automatisch von WordPress.org installieren.

Wenn du es manuell installierst, gehe folgendermaßen vor:

 1. Lade den gesamten Ordner `really-simple-captcha` in das Verzeichnis `/wp-content/
    plugins/`.
 2. Aktiviere das Plugin im Menü „Plugins“ in WordPress.

Zu deiner Information: Es gibt keine Einstellungen für dieses Plugin.

## FAQ

### CAPTCHA funktioniert nicht; das Bild wird nicht angezeigt.

Um Really Simple CAPTCHA nutzen zu können, müssen die GD und die FreeType Bibliothek
auf deinem Server installiert sein. Frag deinen Server Administrator, ob sie installiert
sind.

Mach auch das Verzeichnis für temporäre Dateien beschreibbar. Der Ort des Ordners
für temporäre Dateien wird durch die Instanzvariable `tmp_dir` der Klasse ReallySimpleCaptcha
bestimmt. Beachte, dass die Einstellung in Abhängigkeit vom aufrufenden Plugin variiert.
Beispiel, Contact Form 7 nutzt standardmäßig `wp-contents/uploads/wpcf7_captcha`
als temporäres Verzeichnis, kann aber, abhängig von Deinen Einstellungen, einen 
anderen Ordner verwenden.

Wenn du weitere Fragen hast, stelle sie bitte [im Support-Forum](https://wordpress.org/support/plugin/really-simple-captcha).

## Rezensionen

![](https://secure.gravatar.com/avatar/e627f34d1ed130ebc94bb0ca9314b4bafc8ab7d021047522bd4b25d643f858a8?
s=60&d=retro&r=g)

### 󠀁[Prima, funktioniert auch auf meiner WP 6.9 einwandfrei](https://wordpress.org/support/topic/prima-funktioniert-auch-auf-meiner-wp-6-9-einwandfrei/)󠁿

 [afudo1tlg](https://profiles.wordpress.org/afudo1tlg/) 13. Januar 2026

Super simple! Einfach in Contact Form 7 Version 6.1.4 einzubinden. Danke. Meine 
WordPress Installation: Version 6.9.PHP Version 8.4.15

![](https://secure.gravatar.com/avatar/102d46bc8cc18bdb8bb252de26388aafa9186150f904007befeaf514af4c1f52?
s=60&d=retro&r=g)

### 󠀁[Bad](https://wordpress.org/support/topic/bad-353/)󠁿

 [Diego Soto](https://profiles.wordpress.org/diego-soto/) 15. September 2025 1 Antwort

I’m sorry to have to give this a bad rating. The amount of spam with Contact Form
7 was enormous. I had to remove it.

![](https://secure.gravatar.com/avatar/bed0303e15fbaf6ccf27290abc29160870a170e0eb5265e01a0c8c649c8574c7?
s=60&d=retro&r=g)

### 󠀁[Works great with Gravity Forms in 2024!](https://wordpress.org/support/topic/works-great-with-gravity-forms-in-2024/)󠁿

 [Maxcom](https://profiles.wordpress.org/maxcom/) 19. August 2024

Nothing but positives. We added this to our Gravity Form in order to obtain the 
dynamic math captcha. One can create a simple math captcha in GF but not dynamically
changing for each form load insofar as I can determine. And GF google captcha Ver
3 is a pain with the need for google api keys. So we added this plugin and it was
very easy – add the captcha field to the form, select „math“ in the settings for
the field and done! We find that Gravity Forms Zero Spam plugin was helping to deter
spam entries but it with this captcha is 100% so far for spam prevention. Thank 
you Takayuki Miyoshi!

![](https://secure.gravatar.com/avatar/c910362dbfbd49f8ec8c185f618f4db62e2842297530d6f8bc8cf903d26da6c9?
s=60&d=retro&r=g)

### 󠀁[Good Simple Banner](https://wordpress.org/support/topic/good-simple-banner/)󠁿

 [nicolasvsedeco](https://profiles.wordpress.org/nicolasvsedeco/) 25. Oktober 2023

Helo, very simple banner for cookies but there is a little bug. The banner Cookies
are shown in Widgets page.

![](https://secure.gravatar.com/avatar/a9f956dcdf45addfd12c942879c61a6fa5c9c113e674409a0b825e47c0ae94ac?
s=60&d=retro&r=g)

### 󠀁[Bad and not work to stabilite](https://wordpress.org/support/topic/bad-and-not-work-to-stabilite/)󠁿

 [gurcantet](https://profiles.wordpress.org/gurcantet/) 11. April 2023

spam is continue to come…

![](https://secure.gravatar.com/avatar/ec51b32c53259c5d1abbbf367b2ca7b3f19775f179f869d413ca0f103cdd6515?
s=60&d=retro&r=g)

### 󠀁[test](https://wordpress.org/support/topic/test-132/)󠁿

 [rahzan](https://profiles.wordpress.org/rahzan/) 16. September 2022

we

 [ Alle 129 Rezensionen lesen ](https://wordpress.org/support/plugin/really-simple-captcha/reviews/)

## Mitwirkende und Entwickler

„Really Simple CAPTCHA“ ist Open-Source-Software. Folgende Menschen haben an diesem
Plugin mitgewirkt:

Mitwirkende

 *   [ Rock Lobster Inc. ](https://profiles.wordpress.org/rocklobsterinc/)
 *   [ Takayuki Miyoshi ](https://profiles.wordpress.org/takayukister/)

„Really Simple CAPTCHA“ wurde in 41 Sprachen übersetzt. Danke an [die Übersetzer](https://translate.wordpress.org/projects/wp-plugins/really-simple-captcha/contributors)
für ihre Mitwirkung.

[Übersetze „Really Simple CAPTCHA“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/really-simple-captcha)

### Interessiert an der Entwicklung?

[Durchstöbere den Code](https://plugins.trac.wordpress.org/browser/really-simple-captcha/),
sieh dir das [SVN-Repository](https://plugins.svn.wordpress.org/really-simple-captcha/)
an oder abonniere das [Entwicklungsprotokoll](https://plugins.trac.wordpress.org/log/really-simple-captcha/)
per [RSS](https://plugins.trac.wordpress.org/log/really-simple-captcha/?limit=100&mode=stop_on_copy&format=rss).

## Änderungsprotokoll

#### 2.4

 * Bumps up the minimum required WordPress version to 6.6.
 * Introduces the ReallySimpleCaptcha_Filesystem trait.
 * Uses SHA-256 as the hash algorithm.
 * Uses `wp_rand()` instead of `mt_rand()`.

## Meta

 *  Version **2.4**
 *  Zuletzt aktualisiert **vor 1 Jahr**
 *  Aktive Installationen **300.000+**
 *  WordPress-Version ** 6.6 oder höher **
 *  Getestet bis **6.7.5**
 *  PHP-Version ** 7.4 oder höher **
 *  Sprachen
 * [Albanian](https://sq.wordpress.org/plugins/really-simple-captcha/), [Basque](https://eu.wordpress.org/plugins/really-simple-captcha/),
   [Catalan](https://ca.wordpress.org/plugins/really-simple-captcha/), [Chinese (China)](https://cn.wordpress.org/plugins/really-simple-captcha/),
   [Chinese (Taiwan)](https://tw.wordpress.org/plugins/really-simple-captcha/), 
   [Croatian](https://hr.wordpress.org/plugins/really-simple-captcha/), [Czech](https://cs.wordpress.org/plugins/really-simple-captcha/),
   [Danish](https://da.wordpress.org/plugins/really-simple-captcha/), [Dutch](https://nl.wordpress.org/plugins/really-simple-captcha/),
   [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/really-simple-captcha/),
   [English (Australia)](https://en-au.wordpress.org/plugins/really-simple-captcha/),
   [English (Canada)](https://en-ca.wordpress.org/plugins/really-simple-captcha/),
   [English (New Zealand)](https://en-nz.wordpress.org/plugins/really-simple-captcha/),
   [English (South Africa)](https://en-za.wordpress.org/plugins/really-simple-captcha/),
   [English (UK)](https://en-gb.wordpress.org/plugins/really-simple-captcha/), [English (US)](https://wordpress.org/plugins/really-simple-captcha/),
   [French (Canada)](https://fr-ca.wordpress.org/plugins/really-simple-captcha/),
   [French (France)](https://fr.wordpress.org/plugins/really-simple-captcha/), [Galician](https://gl.wordpress.org/plugins/really-simple-captcha/),
   [German](https://de.wordpress.org/plugins/really-simple-captcha/), [Hungarian](https://hu.wordpress.org/plugins/really-simple-captcha/),
   [Italian](https://it.wordpress.org/plugins/really-simple-captcha/), [Japanese](https://ja.wordpress.org/plugins/really-simple-captcha/),
   [Lithuanian](https://lt.wordpress.org/plugins/really-simple-captcha/), [Marathi](https://mr.wordpress.org/plugins/really-simple-captcha/),
   [Persian](https://fa.wordpress.org/plugins/really-simple-captcha/), [Portuguese (Brazil)](https://br.wordpress.org/plugins/really-simple-captcha/),
   [Romanian](https://ro.wordpress.org/plugins/really-simple-captcha/), [Russian](https://ru.wordpress.org/plugins/really-simple-captcha/),
   [Slovak](https://sk.wordpress.org/plugins/really-simple-captcha/), [Spanish (Argentina)](https://es-ar.wordpress.org/plugins/really-simple-captcha/),
   [Spanish (Chile)](https://cl.wordpress.org/plugins/really-simple-captcha/), [Spanish (Colombia)](https://es-co.wordpress.org/plugins/really-simple-captcha/),
   [Spanish (Ecuador)](https://es-ec.wordpress.org/plugins/really-simple-captcha/),
   [Spanish (Mexico)](https://es-mx.wordpress.org/plugins/really-simple-captcha/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/really-simple-captcha/), [Spanish (Venezuela)](https://ve.wordpress.org/plugins/really-simple-captcha/),
   [Swahili](https://sw.wordpress.org/plugins/really-simple-captcha/), [Swedish](https://sv.wordpress.org/plugins/really-simple-captcha/),
   [Tibetan](https://bo.wordpress.org/plugins/really-simple-captcha/), [Turkish](https://tr.wordpress.org/plugins/really-simple-captcha/)
   und [Ukrainian](https://uk.wordpress.org/plugins/really-simple-captcha/).
 *  [Übersetze in deine Sprache](https://translate.wordpress.org/projects/wp-plugins/really-simple-captcha)
 * Schlagwort
 * [captcha](https://de.wordpress.org/plugins/tags/captcha/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/really-simple-captcha/advanced/)

## Bewertungen

 4.2 von 5 Sternen.

 *  [  90 5-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/really-simple-captcha/reviews/?filter=5)
 *  [  15 4-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/really-simple-captcha/reviews/?filter=4)
 *  [  1 3-Sterne-Rezension     ](https://wordpress.org/support/plugin/really-simple-captcha/reviews/?filter=3)
 *  [  4 2-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/really-simple-captcha/reviews/?filter=2)
 *  [  19 1-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/really-simple-captcha/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/really-simple-captcha/reviews/#new-post)

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/really-simple-captcha/reviews/)

## Mitwirkende

 *   [ Rock Lobster Inc. ](https://profiles.wordpress.org/rocklobsterinc/)
 *   [ Takayuki Miyoshi ](https://profiles.wordpress.org/takayukister/)

## Support

Möchtest du etwas mitteilen? Brauchst du Unterstützung?

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/really-simple-captcha/)

## Spenden

Möchtest du die Weiterentwicklung dieses Plugins unterstützen?

 [ Für dieses Plugin spenden ](https://contactform7.com/donate/)