Skip to content

Laurent Chouraki

My feedback

22 results found

  1. 64 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  2. 9 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    open discussion  ·  IgorG responded

    Thank you for your input. We will consider this functionality in upcoming releases if it is popular. Everyone, please continue voting for this feature if you consider it important.

    IG

    An error occurred while saving the comment
    Laurent Chouraki commented  · 
  3. 22 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    open discussion  ·  IgorG responded

    Thank you for your input. We will consider this functionality in upcoming releases if it is popular. Everyone, please continue voting for this feature if you consider it important.

    IG

    Laurent Chouraki supported this idea  · 
  4. 1,320 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  5. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Laurent Chouraki commented  · 

    Great !

    Laurent Chouraki supported this idea  · 
    An error occurred while saving the comment
    Laurent Chouraki commented  · 

    A small script to replace cleartext password with hashs.
    (not a real solution)

    #!/bin/bash

    # Dangerous script for Plesk
    # Search for mail user with plaintext password using mail_auth_view
    # Replace the plaintext password with hashed password

    # Remaining problems :
    # If user change his password, it's again in plaintext
    # The script is slow, if the user change it's password while the script is running the change will be lost
    # Tested only on Debian 12.8 Plesk Obsidian 18.0.65

    # Filter to apply only to a domain or a mail account
    filter=$1
    # Set action to DOIT to replace password
    action=$2

    if [ -z "$filter" ]
    then
    echo "Usage : $0 @domain.tld"
    exit
    fi

    # Get all mails and appy filter
    echo "Search mail account, using filter $filter"
    mails=$(plesk bin mail --list | grep -E "^Mail name" | cut -f2 | grep -E $filter)
    echo Accounts founds : $mails
    echo

    # For each mail
    for mail in $mails ; do
    authview=$(plesk sbin mail_auth_view | grep -E "^\| +$mail \| \| +.+ \|$")
    if [ "$?" != 0 ]
    then
    echo OK:$mail
    else
    echo FOUND cleartext password for $mail
    # cut the left part "| mail@domain.tld | |"
    authview=$(echo "$authview" | sed "s/^\x7c *$mail \x7c \x7c *//")
    # cut the rigth part " |"
    password=$(echo "$authview" | sed "s/ \x7c$//")
    # Calculate hashed password
    password_c=$(openssl passwd -6 "$password")
    # For debuging purpose
    # echo "Account $mail : password \"$password\" hashed \"$password_c\""
    if [ "$action" == "DOIT" ]
    then
    echo "Changing account $mail password with hashed version"
    plesk bin mail --update $mail -passwd_type encrypted -passwd $password_c
    fi
    # Clear password (paranoid :-)
    authview=""
    password=""
    password_c=""
    fi
    done

    Laurent Chouraki shared this idea  · 
  6. 4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  7. 7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  8. 7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  9. 24 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  10. 7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  11. 31 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  12. 9 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  13. 6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  14. 4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    open discussion  ·  IgorG responded

    Thank you for your input. We will consider this functionality in upcoming releases if it is popular. Everyone, please continue voting for this feature if you consider it important.

    IG

    Laurent Chouraki supported this idea  · 
  15. 8 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  16. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  17. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    Thank you for your idea! We will consider this functionality in upcoming releases if it will be popular.

    Everyone, please continue voting for this feature if you consider it important.

    Here I'd like to add, though, that in the real world attackers simply test a website against all known vulnerabilities, regardless what webserver, PHP or other software version they detect. Actually, such version information are of no interest, they simply drive tests against all known flaws. So adding the feature will probably not help against hacking attempts.

    -- PD

    Laurent Chouraki supported this idea  · 
  18. 13 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  19. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
  20. 28 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Laurent Chouraki supported this idea  · 
← Previous 1

Feedback and Knowledge Base