LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > LinuxQuestions.org > LinuxQuestions.org Member Intro
User Name
Password
LinuxQuestions.org Member Intro New to LinuxQuestions.org? Been a long time member but never made a post? Introduce yourself here.

Notices


Reply
  Search this Thread
Old 04-19-2018, 12:25 PM   #1
bodqhrohro
Member
 
Registered: Apr 2018
Location: Ukraine
Distribution: Debian GNU/Linux 12
Posts: 62

Rep: Reputation: Disabled
h4siaizP2foaa/PiVeJmyVhKaGdO0v1+caaaaa==


I think a simple greeting would be too boring and banal, so I made an encrypted one The cyphering may look obvious, but don't jump to conclusions so fast.
 
Old 04-21-2018, 04:10 AM   #2
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,711

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Smile

Greetings bodqhrohro. What does your username and "h4siaizP2foaa/PiVeJmyVhKaGdO0v1+caaaaa==" mean?
 
Old 04-21-2018, 06:53 AM   #3
bodqhrohro
Member
 
Registered: Apr 2018
Location: Ukraine
Distribution: Debian GNU/Linux 12
Posts: 62

Original Poster
Rep: Reputation: Disabled
My nickname is described here. In short, this is a diminutive form of my name followed with the onomatopoeia of pig grunt in Ukrainian, both written in Cyrillic and encoded in KOI-7.

Determining what does the title means is a challenge If it would turn up too hard, I will offer some hints.
 
Old 04-25-2018, 02:19 PM   #4
bodqhrohro
Member
 
Registered: Apr 2018
Location: Ukraine
Distribution: Debian GNU/Linux 12
Posts: 62

Original Poster
Rep: Reputation: Disabled
Okay, still no any guesses, so here's my first hint. To decode this, the short pipeline of usual UNIX utilities is enough. Guess what Good luck!
 
Old 04-28-2018, 08:02 AM   #5
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,711

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Sorry bodqhrohro, I'm too busy to work out the meaning.
 
Old 02-11-2019, 12:45 PM   #6
bodqhrohro
Member
 
Registered: Apr 2018
Location: Ukraine
Distribution: Debian GNU/Linux 12
Posts: 62

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linustalman View Post
Sorry bodqhrohro, I'm too busy to work out the meaning.
Okay, if still no one have guessed it, I'm uncovering the answer:

echo 'h4siaizP2foaa/PiVeJmyVhKaGdO0v1+caaaaa=='|tr A-Ma-m a-mA-M|base64 -d|gunzip

Luckily, it wasn't hard to recall it after almost a year
 
Old 02-11-2019, 02:01 PM   #7
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,711

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Thumbs up

Quote:
Originally Posted by bodqhrohro View Post
Okay, if still no one have guessed it, I'm uncovering the answer:

echo 'h4siaizP2foaa/PiVeJmyVhKaGdO0v1+caaaaa=='|tr A-Ma-m a-mA-M|base64 -d|gunzip

Luckily, it wasn't hard to recall it after almost a year
That's a lot of work to just get 'Hi all!'.
 
Old 02-11-2019, 03:13 PM   #8
bodqhrohro
Member
 
Registered: Apr 2018
Location: Ukraine
Distribution: Debian GNU/Linux 12
Posts: 62

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linustalman View Post
That's a lot of work to just get 'Hi all!'.
Congratulations, you've got the point of HTTPS coercion
 
Old 02-11-2019, 03:42 PM   #9
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
The double == is a dead giveaway that is is base64 encoded. FYI, base64 is not encryption but encoding Encryption requires a key to decrypt, encoding does not.

Welcome by the way!

I just guessed: "tr A-Ma-m a-mA-M" is your key

So although I suppose technically that is encryption, I wouldn't use it to protect my financial info. Clever though!

Last edited by sevendogsbsd; 02-11-2019 at 03:54 PM.
 
Old 02-11-2019, 03:57 PM   #10
bodqhrohro
Member
 
Registered: Apr 2018
Location: Ukraine
Distribution: Debian GNU/Linux 12
Posts: 62

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by sevendogsbsd View Post
The double == is a dead giveaway that is is base64 encoded
That's why I told it may look obvious. But it's not that simple.
Quote:
Originally Posted by sevendogsbsd View Post
Encryption requires a key to decrypt, encoding does not.
There is a kind of key.
Quote:
Originally Posted by sevendogsbsd View Post
Welcome by the way!
Thanks!
 
Old 02-12-2019, 06:15 AM   #11
l0f4r0
Member
 
Registered: Jul 2018
Location: Paris
Distribution: Debian
Posts: 900

Rep: Reputation: 290Reputation: 290Reputation: 290
Quote:
Originally Posted by bodqhrohro View Post
echo 'h4siaizP2foaa/PiVeJmyVhKaGdO0v1+caaaaa=='|tr A-Ma-m a-mA-M|base64 -d|gunzip
Whaouh not very simple...
I'm wondering how one could tell about the "tr A-Ma-m a-mA-M" part... Was there any hint about it?
https://en.wikipedia.org/wiki/List_of_file_signatures can help regarding the gunzip part
 
Old 02-12-2019, 08:05 AM   #12
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by l0f4r0 View Post
I'm wondering how one could tell about the "tr A-Ma-m a-mA-M" part... Was there any hint about it?
it was the secret sauce.
 
  


Reply

Tags
cryptography, hello world



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 On
[IMG] code is Off
HTML code is Off



LinuxQuestions.org > Forums > LinuxQuestions.org > LinuxQuestions.org Member Intro

All times are GMT -5. The time now is 03:26 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration