1. GSManager
    1. Funktionen
    2. Unterstützte Spiele
    3. Neuigkeiten
    4. Statistiken
    5. Serverliste
  2. Lexikon
  3. Filebase
  4. Entwicklung
  5. Forum
    1. Dashboard
    2. Unerledigte Themen
  6. Web-Interface
  7. Artikel
  8. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  • Anmelden
  • Registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. GSManager
  2. Forum
  3. Erweiterungen
  4. Anfragen

admin_valid

  • Master of Little
  • 3. März 2014 um 14:28
Das Projekt GSManager (vormals ManuAdminMod) wurde am 01.01.2020 eingestellt - diese Internetpräsenz bleibt verfügbar, die Software wird aber nicht länger gepflegt. Vielen Dank für eure Unterstützung in den mehr als zehn vergangenen Jahren!
1. offizieller Beitrag
  • Master of Little
    Entwickler
    Reaktionen
    76
    Punkte
    6.261
    Trophäen
    5
    Beiträge
    1.196
    Einträge
    6
    • 3. März 2014 um 14:28
    • #1

    Master of Little hat eine neue Datei hinzugefügt:
    admin_valid
    Admin valid extends authentication for administrators with an password system.

    Zitat

    Admin Valid
    Admin valid extends authentication for administrators with an password system.

    server configuration/installation

    installation:

    • copy all files from admin_valid_server.zip into your adminmod folders
    • edit /configs/<YOUR-VERSION>/plugins/admin_valid.cfg:

    ip = <YOUR_SERVER_IP>
    port = <PORT_FOR_ADMIN_VALID> Not the game-server port!

    • start ManuAdminMod
    • the installation is finished


    configuration:

    • edit /configs/<>OUR-VERSION>/plugins/admin_groups.txt: <GUID>:<GROUP>:<PROTECTION>:<MD5_HASH_OF_PW>

    example: edd4834d6a24333bac6d73c2bf38c3ba:master:1:50fd7e4bdf5a8e54fc02fff616c685ff

    • run !readconfig
    • server configuration is finished
    client konfiguration/installation

    installation:

    • unzip admin_valid_client_1_0.zip to your computer
    • client installation is finished

    configuration:

    • edit autenticate.bat:

    set ip=<SERVER_IP> your server IP
    set port=8009 your port for admin_valid
    set guid=<GUID> your GUID
    set passwort=<PASSWORD>your password

    • client konfiguration is finished
    usage


    usage:

    • start autenticate.bat
    • join your Server
    links

    links:

    • MD5-generator
    Alles anzeigen
  • Dunciboy
    Anfänger
    Reaktionen
    3
    Punkte
    153
    Beiträge
    24
    • 3. März 2014 um 20:14
    • #2

    Can't you use sha? becuase md5 is easy to decode.

  • Belstgut
    Entwickler
    Reaktionen
    53
    Punkte
    4.643
    Trophäen
    4
    Beiträge
    900
    Einträge
    2
    • 4. März 2014 um 01:01
    • #3

    if you want security use sth like this:

    Code
    $password = //ur password
    $salt = dechex(mt_rand(0, 2147483647)) . dechex(mt_rand(0, 2147483647));
    $password = hash('sha256', $password . $salt);
    for($i = 0; $i < 65536; $i++) {
                    $password = hash('sha256', $password . $salt);
            }

    what this does is it creates a salt attaches the salt to the password and hashes the password with sha256 algorithm. it then attaches the salt to the created hash and hashes it again.

    the last 2 steps get repeated 65536 times for extra security.

    Now someone who tries to bruteforce will take 65536 times longer than he would normally do.

  • Dieses Thema enthält 24 weitere Beiträge, die nur für registrierte Benutzer sichtbar sind.
  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™