Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Glyph

#1
Introductions / Re: j4vz
March 08, 2010, 11:53:19 PM
Welcome to DarkBlizz.
#2
Interesting Banter / The EMP threat
March 01, 2010, 06:40:13 PM
http://www.thespacereview.com/article/1553/1

QuoteHowever, it is virtually guaranteed that a powerful geomagnetic storm, capable of knocking out a significant section of the US electrical grid, will occur within the next few decades. In fact, this may well happen even within next few years as we approach the next period of elevated solar activity, known as "solar maximum", which is forecast to peak in 2013.

QuoteThe possible extent of a power system collapse from a 4800 nT/min geomagnetic storm (centered at 50° geomagnetic latitude) is shown in Figure 2. Similar levels—10 times those experienced during the March 1989 storm—were reached during the great magnetic storm of May 14–15, 1921. A nuclear weapon would need to be a ~multi-megaton size to cause the equivalent E3 damage [15].
Figure 2:
#3
So I got really bored and decided to check this site out, I was initially very skeptical about having anything to do with this site.
Well, it turns out this site is pretty neat. You can pass a series of staged tests in order to gain points and get to new levels.

One level in particular that I would like to discuss involves very basic cryptography. This is level 6, where you are given an encrypted string, the generator, and an input to enter the decrypted string.

Now, in order to pass this level you have to understand what it's doing in the first place.

Try entering something simple like "1111".
You'll see it displays "1234".

This is a common method when testing types of encryption, you'll be able to spot consistencies and figure them out right away. (assuming they are simple. ROT13 uses a similar method.)

Now, you can probably already tell what it's doing to encrypt strings. Increasing each succeeding character by its index in the string.

Now, in order to decrypt this encryption, you obviously have to do the reverse. Just subtract the ascii character by that of its index in the string.


Below is an AutoIt script I wrote specifically for this level.

Global $string = "string", $x = StringLen($string), $buffer = "", $i=0, $leng=0
do
    $i+=1
    $char = StringMid($string, $i, 1)  ;select each char and parse it
    $asc = Asc($char) ;get the current ascii code
    $new = chr($asc-$leng) ;increase it by the index we are at
    $buffer=$buffer&$new ;apply the new character to the buffer
    $leng+=1
until $leng=$x

ConsoleWrite("Decrypted: " & $buffer & @CRLF)


Enjoy! If you're interested in AutoIt there are a few things that could be done better with this code, Feel free to play around with it.
#4
AI Scripts / Re: Hacked AI Maps
February 27, 2010, 07:22:53 PM
Sweet! Nice to see a sorted list like this.
Thanks!
#5
General Discussion / Re: Starcraft 2 Crack UD.
February 27, 2010, 05:40:51 PM
Anti-virus is unreliable. -.-
#6
AI Scripts / Re: Word is, "d0c" got AI working.
February 27, 2010, 05:37:12 PM
Very cool, i'll have to try it out later!
Thanks for sharing.
#7
Starcraft II Beta / Re: SC2 Maphack
February 25, 2010, 01:34:12 PM
It's a pretty cool early step, nice job.
#8
General / Re: a new logo for our community
February 25, 2010, 12:53:15 PM
Looks pretty good, nice work!
#9
General / Re: Where's everyone from Thread!
February 25, 2010, 12:52:14 PM
USA. :]
#10
Quote from: Squigg on December 11, 2009, 10:17:23 PM
its been a while since i played too. You play on Useast?
Yeah, I am normally in clan null@useast.

My normal game name is glyph13 or glyph89@useast (or if you see x0.Glyph in the channel whisper me!)
#11
Introductions / Re: ghost
February 25, 2010, 12:42:31 PM
Hey, welcome to the forums.
#12
Introductions / Re: nug
February 25, 2010, 12:42:01 PM
Welcome, nug.  Glad you decided to join us!
#13
Introductions / Re: Iskhiaro
February 25, 2010, 12:41:09 PM
Welcome to the forums. :]
#14
Quote from: ReVoke on November 07, 2009, 06:03:24 PM
eh? new patch for what? lol i haven't been keeping up much on battle.net news, been playing CA all the time now, but... what is this patch supposed to do and what games is it on?
For Diablo II. http://forums.battle.net/thread.html?topicId=16474108702&sid=3000
:p
#15
Introductions / Re: Glyph
November 09, 2009, 03:07:22 PM
Quote from: ReVoke on November 07, 2009, 06:05:44 PM
heyyy =) im on WC3/SC during the weekdays sometimes... my acc is HuFF and i'm in clan unit, hit me up ;P

oh and also how is this site unique? i mean like any suggestions to make it better or any other things to add-on to it?

The header and navigation are unique, along with the colors. It has a user friendly feel and look to it. I have no suggestions at the moment.