Go Back   Wireless and Wifi Forums > News > Newsgroups > alt.computer.security
Register FAQ Forum Rules Members List Calendar Search Today's Posts Advertise Mark Forums Read

 
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-21-2011, 12:52 PM
pahm
Guest
 
Posts: n/a
Default Editor crypt



I found an editor, Notepad + +, which has the ability to encrypt the
content of the file you are working. Can you tell me if you feel
reliable as the encryption system?

http://notepad-plus-plus.org/

http://sourceforge.net/projects/npp-...d.v1.0.bin.zip








Reply With Quote
  #2 (permalink)  
Old 01-21-2011, 01:07 PM
DasFox
Guest
 
Posts: n/a
Default Re: Editor crypt

On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:

> I found an editor, Notepad + +, which has the ability to encrypt the
> content of the file you are working. Can you tell me if you feel
> reliable as the encryption system?
>
> http://notepad-plus-plus.org/
>
> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip


Deduce it using Tech as your guide...

Open source...pear review...C++...Green Mission...

RECOMMENDED...

THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong.
https://groups.google.com/group/alt....6f94c317a526bd
https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.

Reply With Quote
  #3 (permalink)  
Old 01-21-2011, 01:30 PM
Tom St Denis
Guest
 
Posts: n/a
Default Re: Editor crypt

On Jan 21, 9:07*am, DasFox <das...@hushmail.com> wrote:
> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
> > I found an editor, Notepad + +, which has the ability to encrypt the
> > content of the file you are working. Can you tell me if you feel
> > reliable as the encryption system?

>
> >http://notepad-plus-plus.org/

>
> >http://sourceforge.net/projects/npp-...ePad/SecurePad...

>
> Deduce it using Tech as your guide...
>
> Open source...pear review...C++...Green Mission...
>
> RECOMMENDED...


Question: Do you dictate your USENET posts over shortwave?

Tom

Reply With Quote
  #4 (permalink)  
Old 01-21-2011, 01:45 PM
Paulo Marques
Guest
 
Posts: n/a
Default Re: Editor crypt

DasFox wrote:
> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>
>> I found an editor, Notepad + +, which has the ability to encrypt the
>> content of the file you are working. Can you tell me if you feel
>> reliable as the encryption system?
>>
>> http://notepad-plus-plus.org/
>>
>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip

>
> Deduce it using Tech as your guide...
>
> Open source...pear review...C++...Green Mission...
>
> RECOMMENDED...


You didn't really look at the code, did you?

I just went for a quick look to see if the code at least made sure the
memory used to hold the key was erased after encryption, but what I
found was much, much worse.

The "encryption" function consists of:

> // TODO: Make this more advanced/secure
> void strcrypt2(char *str, char *pwd)
> {
> long strl = (long)strlen(str);
> long pwdl = (long)strlen(pwd);
>
> for(long i = 0; i < strl; i++)
> {
> char c = str[i] ^ pwd[i % pwdl];
>
> if(c != 0)
> str[i] = c;
> }
> }


i.e., it is the worst N-time pad I've ever seen.

The password can probably be recovered "by hand" by just looking at the
pattern to figure the password length and then looking at the
"unconverted" characters that are the same as the password at that
position. Breaking this with a computer is not even funny.

--
Paulo Marques - www.grupopie.com

"Every drive dies; not every drive really lives."
-- Braveheart meets 21st century technology. :^)

Reply With Quote
  #5 (permalink)  
Old 01-21-2011, 02:00 PM
Hawat
Guest
 
Posts: n/a
Default Re: Editor crypt


>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...

>
> You didn't really look at the code, did you?
>
> I just went for a quick look to see if the code at least made sure the
> memory used to hold the key was erased after encryption, but what I
> found was much, much worse.
>


Thanks

know an open source editor for Windows that
has the ability to encrypt text and files?

Regards



Reply With Quote
  #6 (permalink)  
Old 01-21-2011, 04:21 PM
DasFox
Guest
 
Posts: n/a
Default Re: Editor crypt

On Fri, 21 Jan 2011 06:30:27 -0800 (PST), Tom St Denis wrote:

> On Jan 21, 9:07*am, DasFox <das...@hushmail.com> wrote:
>> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>>> I found an editor, Notepad + +, which has the ability to encrypt the
>>> content of the file you are working. Can you tell me if you feel
>>> reliable as the encryption system?

>>
>>>http://notepad-plus-plus.org/

>>
>>>http://sourceforge.net/projects/npp-...ePad/SecurePad...

>>
>> Deduce it using Tech as your guide...
>>
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...

>
> Question: Do you dictate your USENET posts over shortwave?
>
> Tom


NO...but I am playing with DragonSlayer...

THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong.
https://groups.google.com/group/alt....6f94c317a526bd
https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.

Reply With Quote
  #7 (permalink)  
Old 01-21-2011, 04:28 PM
DasFox
Guest
 
Posts: n/a
Default Re: Editor crypt

On Fri, 21 Jan 2011 14:45:13 +0000, Paulo Marques wrote:

> DasFox wrote:
>> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>>
>>> I found an editor, Notepad + +, which has the ability to encrypt the
>>> content of the file you are working. Can you tell me if you feel
>>> reliable as the encryption system?
>>>
>>> http://notepad-plus-plus.org/
>>>
>>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip

>>
>> Deduce it using Tech as your guide...
>>
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...

>
> You didn't really look at the code, did you?
>
> I just went for a quick look to see if the code at least made sure the
> memory used to hold the key was erased after encryption, but what I
> found was much, much worse.
>
> The "encryption" function consists of:
>
>> // TODO: Make this more advanced/secure
>> void strcrypt2(char *str, char *pwd)
>> {
>> long strl = (long)strlen(str);
>> long pwdl = (long)strlen(pwd);
>>
>> for(long i = 0; i < strl; i++)
>> {
>> char c = str[i] ^ pwd[i % pwdl];
>>
>> if(c != 0)
>> str[i] = c;
>> }
>> }

>
> i.e., it is the worst N-time pad I've ever seen.
>
> The password can probably be recovered "by hand" by just looking at the
> pattern to figure the password length and then looking at the
> "unconverted" characters that are the same as the password at that
> position. Breaking this with a computer is not even funny.


OK...THIS is the reason I RECOMMENDED...read my post again..

Open Source which can be pear reviewed...

You reviewed it...now we know...

THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong.
https://groups.google.com/group/alt....6f94c317a526bd
https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.

Reply With Quote
  #8 (permalink)  
Old 01-21-2011, 04:48 PM
Hito Shirezu
Guest
 
Posts: n/a
Default Re: Editor crypt

Hawat wrote:

> know an open source editor for Windows that has the ability to encrypt
> text and files?


Might be overkill, but it's a fine, time tested editor with strong native
encryption (blowfish), and there's both graphical and console versions
available for various operating systems even though it's more of a geeky
unix editor...

http://www.vim.org

There's also a more "windowish" feeling (non-modal) version of Vim called
Cream. It handles encryption using several methods, including calling
GnuPG to do the dirty work. :)

http://cream.sourceforge.net/

Enjoy!

Reply With Quote
  #9 (permalink)  
Old 01-21-2011, 05:04 PM
Greg Rose
Guest
 
Posts: n/a
Default Re: Editor crypt

In article <ihc3v3$lmk$1@news.mixmin.net>, DasFox <dasfox@hushmail.com> wrote:
>[snip]...pear review...[snip]


I like Bartlett pears myself.

Greg.
--

Reply With Quote
  #10 (permalink)  
Old 01-21-2011, 05:10 PM
DasFox
Guest
 
Posts: n/a
Default Re: Editor crypt

On Fri, 21 Jan 2011 18:04:44 +0000 (UTC), Greg Rose wrote:

> In article <ihc3v3$lmk$1@news.mixmin.net>, DasFox <dasfox@hushmail.com> wrote:
>>[snip]...pear review...[snip]

>
> I like Bartlett pears myself.
>
> Greg.


That's the fruit...NOT equals reviewing equals...

THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong.
https://groups.google.com/group/alt....6f94c317a526bd
https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.

Reply With Quote
  #11 (permalink)  
Old 01-21-2011, 05:18 PM
Jeffrey Goldberg
Guest
 
Posts: n/a
Default Re: Editor crypt

On 11-01-21 12:04 PM, Greg Rose wrote:
> In article<ihc3v3$lmk$1@news.mixmin.net>, DasFox<dasfox@hushmail.com> wrote:
>> [snip]...pear review...[snip]


> I like Bartlett pears myself.


I think we need the pears to review each other to get true pear review.
Maybe they should do it in pairs.

Cheers,

-j


--
Jeffrey Goldberg http://goldmark.org/jeff/
I rarely read HTML or poorly quoting posts
Reply-To address is valid

Reply With Quote
  #12 (permalink)  
Old 01-21-2011, 05:21 PM
RichardM
Guest
 
Posts: n/a
Default Re: Editor crypt

On 01/21/2011 03:45 PM, Paulo Marques wrote:
> DasFox wrote:
>> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>>
>>> I found an editor, Notepad + +, which has the ability to encrypt the
>>> content of the file you are working. Can you tell me if you feel
>>> reliable as the encryption system?
>>>
>>> http://notepad-plus-plus.org/
>>>
>>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip

>>
>> Deduce it using Tech as your guide...
>>
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...

>
> You didn't really look at the code, did you?
>
> I just went for a quick look to see if the code at least made sure the
> memory used to hold the key was erased after encryption, but what I
> found was much, much worse.
>
> The "encryption" function consists of:
>
>> // TODO: Make this more advanced/secure
>> void strcrypt2(char *str, char *pwd)
>> {
>> long strl = (long)strlen(str);
>> long pwdl = (long)strlen(pwd);
>>
>> for(long i = 0; i < strl; i++)
>> {
>> char c = str[i] ^ pwd[i % pwdl];
>>
>> if(c != 0)
>> str[i] = c;
>> }
>> }

>
> i.e., it is the worst N-time pad I've ever seen.
>
> The password can probably be recovered "by hand" by just looking at the
> pattern to figure the password length and then looking at the
> "unconverted" characters that are the same as the password at that
> position. Breaking this with a computer is not even funny.


Hm, Ok.

I didn't review the editor nor the source code.

If I could make something easy using instant GPG encryption/decryption,
would there be any interest? (since there are so many alternatives)

Just someone who's interested.


--
GPG_Decrypt:
Write('Password: '); ReadLn(USERINPUT);
if (USERINPUT=empty) then goto CleanUp;
Tmp := Format('--no-options --no-default-keyring --dry-run
--passphrase "%s" "%s"', [USERINPUT, FullFilePath(5)]);
ShellExecute(MainWnd, 'open', PChar(FullFilePath(4)), PChar(Tmp), nil,
SW_HIDE);
Sleep(1000);
if not FileExists(FullFilePath(6)) then goto GPG_Decrypt;

Reply With Quote
  #13 (permalink)  
Old 01-21-2011, 07:58 PM
David Eather
Guest
 
Posts: n/a
Default Re: Editor crypt

On 22/01/2011 12:07 AM, DasFox wrote:
> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>
>> I found an editor, Notepad + +, which has the ability to encrypt the
>> content of the file you are working. Can you tell me if you feel
>> reliable as the encryption system?
>>
>> http://notepad-plus-plus.org/
>>
>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip

>
> Deduce it using Tech as your guide...
>
> Open source...pear review...C++...Green Mission...
>
> RECOMMENDED...
>
> THANKS


since virtually no one from sci.crypt is interested in these posts can
you drop them (sci.crypt) from your "send to" list

Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 09:32 PM.



Powered by vBulletin® Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 PL2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45