From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Amirouche Boubekki Newsgroups: gmane.lisp.guile.user Subject: Re: Is there any security risk related to the use of the reader? Date: Sun, 25 Feb 2018 18:35:10 +0100 Message-ID: References: <3798469bc8c299451807dfdc796146d7@hypermove.net> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1519580025 4791 195.159.176.226 (25 Feb 2018 17:33:45 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 25 Feb 2018 17:33:45 +0000 (UTC) User-Agent: Roundcube Webmail/1.1.2 Cc: guile-user To: Guile User Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Feb 25 18:33:41 2018 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eq0BA-0000eJ-RB for guile-user@m.gmane.org; Sun, 25 Feb 2018 18:33:40 +0100 Original-Received: from localhost ([::1]:55325 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eq0DD-0004OD-9a for guile-user@m.gmane.org; Sun, 25 Feb 2018 12:35:47 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eq0Cj-0004LT-Ph for guile-user@gnu.org; Sun, 25 Feb 2018 12:35:18 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eq0Ci-0000zx-Ut for guile-user@gnu.org; Sun, 25 Feb 2018 12:35:17 -0500 Original-Received: from relay2-d.mail.gandi.net ([217.70.183.194]:54600) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eq0Ce-0000xV-E3; Sun, 25 Feb 2018 12:35:12 -0500 Original-Received: from webmail.gandi.net (webmail7-d.mgt.gandi.net [10.58.1.147]) (Authenticated sender: amirouche@hypermove.net) by relay2-d.mail.gandi.net (Postfix) with ESMTPA id B2514C5A51; Sun, 25 Feb 2018 18:35:10 +0100 (CET) In-Reply-To: <3798469bc8c299451807dfdc796146d7@hypermove.net> X-Sender: amirouche@hypermove.net X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.183.194 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:14464 Archived-At: On 2018-02-25 16:35, Amirouche Boubekki wrote: > I have procedures like that in my program: > > (define-public (scm->string scm) > (call-with-output-string > (lambda (port) > (write scm port)))) > > (define-public (string->scm string) > (call-with-input-string string read)) > > Is it safe to pass to this procedures input from third parties? > > TIA! Another question: is 'write' deterministic?