Sometimes user can use some scripts, which are executables. To check executables in user home directory, run a command
find . -type f -executable
To disable excutable bit in some directory run
find $HOME/"some directory"/ -type f -exec chmod 600 {} \;
… or whole home directory
find . -type f -exec chmod -R 600 {} \;