3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • danceflashrevo
    scumfan is scared of aa
    • Sep 2007
    • 488

    #106
    Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

    gmferng

    Why are you here?

    Comment

    • gold stinger
      Signature Extraordinare~~
      Event Staff
      Game Manager
      FFR Simfile Author
      FFR Music Producer
      • Jan 2007
      • 6428

      #107
      Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

      Originally posted by reuben_tate
      if anyone can crack this, I will pay you one hundred thousand credits

      payment please




      That is the correct answer to the code.
      Last edited by gold stinger; 12-30-2014, 10:28 PM.
      Originally posted by YoshL
      butts.


      - Tosh 2014






      Comment

      • Charu
        Snivy! Dohoho!
        FFR Simfile Author
        • Mar 2006
        • 6207

        #108
        Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

        NERDS!!!


        Originally posted by JohnRedWolf87
        Charu the red-nosed Snivy
        Had a very shiny nose
        And if you ever saw it
        You could even say it glows

        All of the other Snivies
        Used to laugh and call him names
        They never let poor Charu
        Join in any Snivy games

        (Click the arrow to see the rest)


        Originally posted by Vendetta21
        All in all I would say that Charu not only won this game, his play made me reconsider how I play it.

        Comment

        • gold stinger
          Signature Extraordinare~~
          Event Staff
          Game Manager
          FFR Simfile Author
          FFR Music Producer
          • Jan 2007
          • 6428

          #109
          Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.



          I have sent 200,000 credits to the account of reuben_tate, for completing the code. Feel free to share your winnings as you see fit.

          Currently sending something else for reuben in the form of PM. Will post answer to the code for everyone shortly.
          Originally posted by YoshL
          butts.


          - Tosh 2014






          Comment

          • Charu
            Snivy! Dohoho!
            FFR Simfile Author
            • Mar 2006
            • 6207

            #110
            Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

            Yo, can I just say not all keyboards use QWERTY

            wow wow wow wow wow


            Originally posted by JohnRedWolf87
            Charu the red-nosed Snivy
            Had a very shiny nose
            And if you ever saw it
            You could even say it glows

            All of the other Snivies
            Used to laugh and call him names
            They never let poor Charu
            Join in any Snivy games

            (Click the arrow to see the rest)


            Originally posted by Vendetta21
            All in all I would say that Charu not only won this game, his play made me reconsider how I play it.

            Comment

            • DossarLX ODI
              Batch Manager
              Game Manager
              FFR Simfile Author
              • Mar 2008
              • 15004

              #111
              Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

              reuben you got the answer a few minutes before I did, dammit haha

              For anyone that's interested in what the algorithm was, the shift was +14 except for every third letter. So every third letter was a +13 shift.


              Code:
              # stupid python 3 program for keyboard caesar shift
              
              # Letter to number
              qwerty = {
              "q": 0,
              "w": 1,
              "e": 2,
              "r": 3,
              "t": 4,
              "y": 5,
              "u": 6,
              "i": 7,
              "o": 8,
              "p": 9,
              "a": 10,
              "s": 11,
              "d": 12,
              "f": 13,
              "g": 14,
              "h": 15,
              "j": 16,
              "k": 17,
              "l": 18,
              "z": 19,
              "x": 20,
              "c": 21,
              "v": 22,
              "b": 23,
              "n": 24,
              "m": 25,
              }
              
              # Number to letter
              numqwerty = {
              0:"q",
              1:"w",
              2:"e",
              3:"r",
              4:"t",
              5:"y",
              6:"u",
              7:"i",
              8:"o",
              9:"p",
              10:"a",
              11:"s",
              12:"d",
              13:"f",
              14:"g",
              15:"h",
              16:"j",
              17:"k",
              18:"l",
              19:"z",
              20:"x",
              21:"c",
              22:"v",
              23:"b",
              24:"n",
              25:"m",
              }
              
              stringToTest = input("Insert goldstinger string: ")
              result = ""
              counter = 0
              for letter in stringToTest:
                  if letter == " ":
                      result += " "
                      continue
                  if counter == 2:
                      shift = 13
                      counter = 0
                  else:
                      shift = 14
                      counter += 1
                  index = qwerty[letter]
                  total = index + shift
                  if total > 25:
                      total = total - 26
                  result += numqwerty[total]
                  
              print(result)


              Results in this:
              Code:
              >>> ================================ RESTART ================================
              >>> 
              Insert goldstinger string: zm bakcag ova ohvor jezb x fzyt cbk kcl xsg wzanjgn kwxzb vsn ijgnxjb
              if anyone can crack this i will pay you one hundred thous and credits
              Congratulations reuben!
              Last edited by DossarLX ODI; 12-30-2014, 10:34 PM.
              Originally posted by hi19hi19
              oh boy, it's STIFF, I'll stretch before I sit down at the computer so not I'm not as STIFF next time I step a file

              Comment

              • Velocity
                Doing the wrong thing the right way since 2010.
                FFR Simfile Author
                FFR Administrator
                • Jul 2007
                • 1819

                #112
                Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                Or how I more-or-less brute forced it:
                Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.


                (I looped a 0-25 shift on the entire thing before settling on 14)
                Last edited by Velocity; 12-30-2014, 10:34 PM.

                Comment

                • DossarLX ODI
                  Batch Manager
                  Game Manager
                  FFR Simfile Author
                  • Mar 2008
                  • 15004

                  #113
                  Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                  By the way the "thous and" part was NASTY. That extra space threw everyone in the code cracker chat off, haha.
                  Originally posted by hi19hi19
                  oh boy, it's STIFF, I'll stretch before I sit down at the computer so not I'm not as STIFF next time I step a file

                  Comment

                  • gold stinger
                    Signature Extraordinare~~
                    Event Staff
                    Game Manager
                    FFR Simfile Author
                    FFR Music Producer
                    • Jan 2007
                    • 6428

                    #114
                    Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                    Message has been sent to reuben_tate.

                    Here's the code I scribbled down in notepad that gave me the idea for this.

                    Code:
                    For the duration of this code, . = *
                    
                    3this/code()is12almost5uncrackable.
                    
                    thiscodeisalmostuncrackable
                    
                    (12 x 3) / 5 = 7.2
                    
                    7 - qwerty keyboard shift
                    5 degrees of separation
                    1 shift per degree
                    
                    this1odei1almo1tunc1acka1le
                    3svgl/rhzp()gz12kmuuzs5fyeseeneymi.
                    
                    if anyone can crack this I will pay you one hundred thousand credits.
                    
                    11 + (15 x 4) + 8 - 13 - (5 / 3) = 64.33333continuous
                    
                    -if+anyone-can11crack5this3I8will15pay+you4one()hundred/thous()and13credits.
                    
                    ifanyonecancrackthisIwillpayyouonehundredthousandcredits
                    if_ny_ne_an_ra_kt_is_wi_lp_yy_uo_eh_nd_ed_ho_sa_dc_ed_ts
                    zm_ak_ag_va_hv_rj_zb_fz_tc_kk_lx_gw_an_gn_wx_bv_ni_gn_jb
                    -zm+_ak_ag-_va11_hv_r5j_zb3_8fz_t15c_k+k_l4x_g()w_an_gn/_wx_b()v_n13i_gn_jb.
                    -if+anyone-can11crack5this3I8will15pay+you4one()hundred/thous()and13credits.
                    -zm+bakcag-ova11ohvok5jezb3x8fzyt15cbk+kcl4xsg()wzanjgn/kwxzs()vsn13ijgnxjb.
                    -zm+bakcag-ova11ohvor5jezb3x8fzyt15cbk+kcl4xsg()wzanjgn/kwxzd()vsn13ijgnxjb.
                    -__-:__:__-:__--:__;_-_:__-:-__:_--_:_-_:_-_:_--_:__:__-:__:_--_:_--_:__:__-
                    
                    12 - qwerty keyboard shift (IGNORED 64, ROT13)
                    3 degrees of separation
                    1 shift per degree
                    
                    a=v
                    b=p
                    c=i
                    d=n
                    e=g
                    f=m
                    g=q
                    h=w
                    i=z
                    j=e
                    k=r
                    l=t
                    m=s
                    n=a
                    o=x
                    p=c
                    q=d
                    r=h
                    s=b
                    t=j
                    u=l
                    v=o
                    w=f
                    x=u
                    y=k
                    z=y
                    
                    qwertyuiopasdfghjklzxcvbnm
                    Originally posted by YoshL
                    butts.


                    - Tosh 2014






                    Comment

                    • benguino
                      Kawaii Desu Ne?
                      • Dec 2007
                      • 4190

                      #115
                      Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                      Originally posted by gold stinger


                      I have sent 200,000 credits to the account of reuben_tate, for completing the code. Feel free to share your winnings as you see fit.

                      Currently sending something else for reuben in the form of PM. Will post answer to the code for everyone shortly.
                      Wow, that's more than what the message said <3

                      Anyways, I wanted to thank everyone in the FFR New Year's Codebreakers Skype group (yes, we took this threat very seriously): shoutouts to dossar, velocity, krazykitsune, danceflashrevo, and silvuh. Everyone pitched in a lot of ideas and shared what doesn't work, all of which made us progress closer to the answer.

                      Thanks to gold for putting this together, for the credits, and being good at being evil (see what I did there?)
                      AMA: http://ask.fm/benguino


                      Originally posted by Spenner
                      (^)> peck peck says the heels
                      Originally posted by Xx{Midnight}xX
                      And god made ben, and realized he was doomed to miss. And said it was good.
                      Originally posted by Zakvvv666
                      awww :< crushing my dreams; was looking foward to you attempting to shoot yourself point blank and missing

                      Comment

                      • gold stinger
                        Signature Extraordinare~~
                        Event Staff
                        Game Manager
                        FFR Simfile Author
                        FFR Music Producer
                        • Jan 2007
                        • 6428

                        #116
                        Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                        I'll see you all next year with a harder code.





                        the amount of people kicking themselves in the pants right now for not noticing their keyboard sooner.
                        Last edited by gold stinger; 12-30-2014, 10:49 PM.
                        Originally posted by YoshL
                        butts.


                        - Tosh 2014






                        Comment

                        • gold stinger
                          Signature Extraordinare~~
                          Event Staff
                          Game Manager
                          FFR Simfile Author
                          FFR Music Producer
                          • Jan 2007
                          • 6428

                          #117
                          Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                          A code for you all to break, my humblest regards for those that still hunger for codebreaking.

                          أĕ└Ąḅᴘᴆ‡ᴒ↑→أḈ ́ ꜠←أĕᴘᴒĄ→ ́ ←↑ (גּ-ﭙ)

                          your hint is that it entirely uses a font called arial.

                          And you thought they couldn't get harder
                          Last edited by gold stinger; 12-31-2014, 12:01 AM.
                          Originally posted by YoshL
                          butts.


                          - Tosh 2014






                          Comment

                          • Velocity
                            Doing the wrong thing the right way since 2010.
                            FFR Simfile Author
                            FFR Administrator
                            • Jul 2007
                            • 1819

                            #118
                            Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                            Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.

                            Comment

                            • popsicle_3000
                              Legendary Noob
                              FFR Simfile Author
                              • Sep 2005
                              • 4641

                              #119
                              Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                              Originally posted by reuben_tate
                              if anyone can crack this, I will pay you one hundred thousand credits

                              payment please
                              mfw I thought ben was asking people for help, with 100k reward

                              Originally posted by One Winged Angel
                              39,000 popsicles pro bg blue note arrow slayer whoa damn..
                              Originally posted by Xx{Midnight}xX
                              one way to stream them all
                              Originally posted by Xiz
                              Right after sex, it skillboosted me by +10 levels from like a 35-45 about. (Which then 15 min's later I got really tired and couldn't play anymore)

                              But then my lady friend got pissed off I was playing FFR instead of playing her. Then for the rest of the night she played the 'Only want me for my body' card and I didn't get to sleep with blankets that night.
                              Originally posted by thesunfan
                              replacing ifitypedhisnameaslargeashisnamesuggests,iwouldgetbanned with theelongatedaustrocanadian3000 (pop).
                              Originally posted by reuben_tate
                              Title: Popsicle Three

                              Thousand the farthest
                              He's gone in an official
                              Whoop hip hip hooray!
                              Originally posted by U.N. Owen
                              kjwkjw: "oh my god, Tosh. Post that in the thread."

                              @popsicle_3000:
                              Danger incoming
                              The popsicles are melting
                              Three thousand of them
                              Originally posted by Wayward Vagabond
                              you got to ease the topic into some conversation and let it go from there

                              dynam0: man friend that was an intense sm session right?
                              friend: haha yeah you really nailed those patterns
                              dynam0: yeah man kind of like how gay dudes nail other gay dudes in the ass!
                              friend: hey bro can i tell you something
                              dynam0 yeah man whats up?
                              friend: hypothetically speaking would you care if i was bisexual or maybe even gay?
                              dynam0: bro we shower together after sm sessions all the time and i'll still shower with you even if you are gay or w/e thats your thing just dont try to ram my ass HAHAHA
                              friend: thanks man
                              dynam0: no problem man
                              Originally posted by One Winged Angel
                              pop takin' time out of playing irl Trauma Center to check in on his fiffer buds (mm)
                              Originally posted by Xiz
                              Well, Popsicle won every award this year so it was canceled.

                              Comment

                              • gold stinger
                                Signature Extraordinare~~
                                Event Staff
                                Game Manager
                                FFR Simfile Author
                                FFR Music Producer
                                • Jan 2007
                                • 6428

                                #120
                                Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.

                                Velocity confirmed god



















                                were you secretly behind the solving of the enigma cipher
                                Last edited by gold stinger; 12-31-2014, 02:20 AM.
                                Originally posted by YoshL
                                butts.


                                - Tosh 2014






                                Comment

                                Working...