NEWSGROUP Cipher

Discussion of challenges you have already solved
Post Reply
avengor
Posts: 3
Joined: Mon Sep 28, 2009 6:20 am

NEWSGROUP Cipher

Post by avengor »

I google the answer,but i don't know why the answer is that.For my english is poor,can anybody expain how the cipher works or give me a clue? thanksl
michuber
Posts: 57
Joined: Sun Oct 26, 2008 3:30 pm

Post by michuber »

avengor
Posts: 3
Joined: Mon Sep 28, 2009 6:20 am

Post by avengor »

avengor
Posts: 3
Joined: Mon Sep 28, 2009 6:20 am

Post by avengor »

I have to admit that i'm stupid...
pedromalta
Posts: 22
Joined: Wed Apr 13, 2011 12:00 am
Location: Vila Velha
Contact:

Post by pedromalta »

Lol, i'm too young to get that fast, took a lot of google to understand usenet, and then rot13...
sudo apt-get a life
yp_mick2007
Posts: 3
Joined: Fri Jul 08, 2011 11:57 am
Location: Philippines
Contact:

I admit that it is really hard.

Post by yp_mick2007 »

i google it and understanding the code. 26/2 = 13; then substitution method..
example. A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z
I want to learn more.
wynk
Posts: 7
Joined: Tue Jan 03, 2012 7:59 pm

Post by wynk »

My solution in ruby by doing some math with the ASCII table:

Code: Select all

input = "Guvf zrffntr vf rapelcgrq va ebg 13. Lbhe nafjre vf svfupnxr."
input.each_byte { |x|
	# lower case letters
	if (65..90) === x 
		print (65 + (x - 52) % 26).chr
	# capital letters
	elsif (97..122) === x
		print (97 + (x - 84) % 26).chr
	# everything else
	else
		print x.chr
	end
}
LocoTom
Posts: 3
Joined: Sat Aug 11, 2012 7:59 pm
Location: Belgium/Poland

Post by LocoTom »

I knew that there would be something with the abc, but i didn't get it would be + or - 13.
daggoneit
Posts: 1
Joined: Mon Nov 12, 2012 7:32 pm

Post by daggoneit »

Can someone explain what this has to do with usenet?
I guessed it was ROT-13 encrypted because of the '13' right there and I have used usenet but I don't get what this has to do with it.
RixNguyen
Posts: 5
Joined: Sun Aug 25, 2019 12:34 pm

Post by RixNguyen »

I solved this challenge thanks to the clues in this forum, but I don't still understand that what relation between rot-13 and usenet. Sorry for my bad English.
Post Reply