Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #70101
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!proxad.net!feeder1-2.proxad.net!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <joshua.landau.ws@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.015 |
| X-Spam-Evidence | '*H*': 0.97; '*S*': 0.00; 'python,': 0.02; 'pointless': 0.09; 'warn': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'suggest': 0.14; 'mostly': 0.14; 'bytecode': 0.16; 'circumvent': 0.16; 'subject:python': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'basically': 0.19; 'usability': 0.19; 'cc:addr:python.org': 0.22; "aren't": 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'point': 0.28; "doesn't": 0.30; 'message-id:@mail.gmail.com': 0.30; 'program,': 0.31; 'hacker': 0.31; 'probably': 0.32; 'another': 0.32; 'good.': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'really': 0.36; 'largely': 0.36; 'changing': 0.37; 'list': 0.37; 'step': 0.37; 'product.': 0.38; 'does': 0.39; 'major': 0.40; 'most': 0.60; 'making': 0.63; 'such': 0.63; 'to:addr:gmail.com': 0.65; 'overall': 0.69; 'further,': 0.74; 'compiles': 0.84; 'compiling': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=h9MtnrqqasdwXE4YJ3H7noqxycrDw0lwfyJHk7Bq4WE=; b=EoxpsV1JUP875XHNSJocC0EBjHOtNjBlM0aqNQryQU5B8ANrtdnNrpdLlZFaVUReOe mnL6lBimMY70aM4NY5Kq6oOSdJclVUkmGE3v7uNtQaNRekEcda5XAV9b2soKaZnQwtem z6YH1ZIQd3AxFlFx9b8NWw6iZ+JB/J5r8xpMZ0uRBTkzlSqzDTe089DPfzMXGkbjkhk8 W28pDmJZTXrkByxbJ5j2iVA3y7uT/6Pb2urzyT+EPGVS+OSglBBGn1aL/AULYg97rrX5 cFT0nHZgMKaHRqb7bEzhmKXcAhnL8y/wy+0j9PS4XAwFpA7amlf7NYstT0Jf2Mzu80q6 2h9g== |
| X-Received | by 10.153.4.134 with SMTP id ce6mr15165731lad.21.1397196045473; Thu, 10 Apr 2014 23:00:45 -0700 (PDT) |
| MIME-Version | 1.0 |
| Sender | joshua.landau.ws@gmail.com |
| In-Reply-To | <c17a58f4-e22d-4531-beb4-d810ec4b2857@googlegroups.com> |
| References | <c17a58f4-e22d-4531-beb4-d810ec4b2857@googlegroups.com> |
| From | Joshua Landau <joshua@landau.ws> |
| Date | Fri, 11 Apr 2014 07:00:05 +0100 |
| X-Google-Sender-Auth | vvEbffSvDumXbnYsc1eh9o34yF0 |
| Subject | Re: python obfuscate |
| To | Wesley <nispray@gmail.com> |
| Content-Type | text/plain; charset=UTF-8 |
| Cc | python-list <python-list@python.org> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.9174.1397196047.18130.python-list@python.org> (permalink) |
| Lines | 15 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1397196047 news.xs4all.nl 2860 [2001:888:2000:d::a6]:43018 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:70101 |
Show key headers only | View raw
On 11 April 2014 02:29, Wesley <nispray@gmail.com> wrote: > Does python has any good obfuscate? Most other people on the list will point out why such a thing is mostly pointless and you don't really need it. However, if this really is your major blocker to using Python, I suggest compiling with Cython. There are downsides, but untyped Cython basically compiles the bytecode into C without actually changing the program, making compatibility really good. It's very difficult to reverse-engineer, largely because there aren't specialised tools to do it. But I do warn that it's adding another abstracting step that doesn't improve - it probably harms - the overall usability of the product. Further, a determined hacker can circumvent it, much as they can circumvent everything else.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
python obfuscate Wesley <nispray@gmail.com> - 2014-04-10 18:29 -0700
Re: python obfuscate Tobiah <toby@tobiah.org> - 2014-04-10 18:48 -0700
Re: python obfuscate Wesley <nispray@gmail.com> - 2014-04-10 19:14 -0700
Re: python obfuscate Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-10 20:23 -0600
Re: python obfuscate Ben Finney <ben+python@benfinney.id.au> - 2014-04-11 11:41 +1000
Re: python obfuscate Wesley <nispray@gmail.com> - 2014-04-10 19:17 -0700
Re: python obfuscate Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-10 20:28 -0600
Re: python obfuscate Grant Edwards <invalid@invalid.invalid> - 2014-04-11 16:19 +0000
Re: python obfuscate Ben Finney <ben+python@benfinney.id.au> - 2014-04-11 13:12 +1000
Re: python obfuscate Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-04-11 06:53 +0100
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 09:17 +0000
Re: python obfuscate Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-11 04:22 -0600
Re: python obfuscate Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-04-11 11:44 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 12:42 +0000
Re: python obfuscate Joshua Landau <joshua@landau.ws> - 2014-04-11 07:00 +0100
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-11 16:10 +1000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 09:17 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 09:17 +0000
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-11 19:40 +1000
Re: python obfuscate cl@isbd.net - 2014-04-11 13:32 +0100
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-11 22:47 +1000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 13:06 +0000
Re: python obfuscate Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-04-11 14:10 +0100
Re: python obfuscate Grant Edwards <invalid@invalid.invalid> - 2014-04-11 16:22 +0000
Re: python obfuscate alister <alister.nospam.ware@ntlworld.com> - 2014-04-11 13:07 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 14:00 +0000
Re: python obfuscate Grant Edwards <invalid@invalid.invalid> - 2014-04-11 16:27 +0000
Re: python obfuscate Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-04-12 00:49 +0000
Re: python obfuscate Ben Finney <ben+python@benfinney.id.au> - 2014-04-12 14:52 +1000
Re: python obfuscate Mark H Harris <harrismh777@gmail.com> - 2014-04-11 10:09 -0500
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-12 01:22 +1000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 16:13 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 16:13 +0000
Re: python obfuscate CM <cmpython@gmail.com> - 2014-04-11 22:01 -0700
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-12 12:07 +0000
Re: python obfuscate CM <cmpython@gmail.com> - 2014-04-12 20:14 -0700
Re: python obfuscate Michael Torrie <torriem@gmail.com> - 2014-04-11 09:19 -0600
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-12 01:30 +1000
Re: python obfuscate Joshua Landau <joshua@landau.ws> - 2014-04-11 22:48 +0100
Re: python obfuscate Denis McMahon <denismfmcmahon@gmail.com> - 2014-04-12 07:48 +0000
Re: python obfuscate Stefan Behnel <stefan_ml@behnel.de> - 2014-04-13 06:58 +0200
csiph-web