Shortcode is displaying the wrong post_title

You need to add setup_postdata($post); inside your loop:

    foreach ( $attachments as $post ) {  
setup_postdata($post);
                the_title();  
        the_content();  
    }